TriportRPC

getClusterNodes

Last updated:

`getClusterNodes` returns an array describing every node the queried validator is currently aware of in the gossip network. Each entry exposes the node's identity public key and the network addresses it advertises for gossip, RPC, and transaction-processing (TPU) traffic, along with its software version and feature/shred versions.

Use this method to discover the topology of the cluster — for example, to find RPC endpoints, to map validator identities to their advertised addresses, or to audit which software versions are active across the network.

Contact-info fields are populated from what each node chooses to advertise over gossip. A node that has not shared a particular endpoint (or whose RPC is not publicly exposed) will report `null` for that field, so consumers must treat every address field as optional.

Parameters

This method takes no parameters.

Returns

getClusterNodes return value
FieldType
resultarray

Examples

curl https://<your-endpoint>/ \
  -X POST -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"getClusterNodes","params":[]}'
const res = await fetch("https://<your-endpoint>/", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
  "id": 1,
  "method": "getClusterNodes",
  "params": [],
  "jsonrpc": "2.0"
}),
});
const data = await res.json();
import requests
resp = requests.post("https://<your-endpoint>/", json={"id":1,"method":"getClusterNodes","params":[],"jsonrpc":"2.0"})
print(resp.json())
{
  "id": 1,
  "result": [
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.79:8002",
      "gossip": "64.130.59.79:8001",
      "pubkey": "5H93nJNwzUYK48mF5DDdDrXGKGXbE3WYGLNquVzTLj7q",
      "pubsub": null,
      "tpuQuic": "64.130.59.79:8003",
      "tpuVote": "64.130.59.79:8005",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.59.79:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.79:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.251.3.65:8002",
      "gossip": "72.251.3.65:8001",
      "pubkey": "2dxz129YxB1xtf7Mx6HUT5JspexArNNtQt84FYueWZV7",
      "pubsub": null,
      "tpuQuic": "72.251.3.65:8003",
      "tpuVote": "72.251.3.65:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "72.251.3.65:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.251.3.65:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "151.123.172.126:8001",
      "gossip": "151.123.172.126:8000",
      "pubkey": "3psxMyr7rQzywVp1MXKd1XFmFz33NjydzCoJx9t2sMQW",
      "pubsub": null,
      "tpuQuic": "198.73.57.238:9007",
      "tpuVote": "151.123.172.126:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "151.123.172.126:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.73.57.238:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "148.51.214.1:20000",
      "gossip": "148.51.214.1:8001",
      "pubkey": "svsD6T44XJnuXQWB15sy1pBxxruzrFy8rR7gXy8Jsj3",
      "pubsub": null,
      "tpuQuic": "148.51.214.1:9007",
      "tpuVote": "148.51.214.1:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "148.51.214.1:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "148.51.214.1:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.189.47.160:8003",
      "gossip": "185.189.47.160:8001",
      "pubkey": "74Xkp2iLXm315h69sFRiCFjmKnaWkMV8W2LgJwPRSgN5",
      "pubsub": null,
      "tpuQuic": "185.189.47.160:9007",
      "tpuVote": "185.189.47.160:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "185.189.47.160:8028",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.189.47.160:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.166.162.131:12001",
      "gossip": "46.166.162.131:12000",
      "pubkey": "CwyVpfmfSiMeCexi3JgUNvaiDfYN14cLDjzT99zcBuD2",
      "pubsub": null,
      "tpuQuic": "88.216.192.50:5010",
      "tpuVote": "46.166.162.131:12004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "46.166.162.131:12009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.192.50:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "193.243.164.198:8100",
      "gossip": "193.243.164.198:8099",
      "pubkey": "revtecFsGSRCdF29atQvchSXrjwBesA9vSisD4fyH5K",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "193.243.164.198:8103",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "193.243.164.198:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.238.220.71:8000",
      "gossip": "104.238.220.71:8021",
      "pubkey": "2Eq6YD8P8QXTeoz9h6JHjgZ55t8RSxNdx4waMDCoPmQU",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "104.238.220.71:8003",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "104.238.220.71:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "151.123.172.66:8099",
      "gossip": "151.123.172.66:8001",
      "pubkey": "juigBT2qetpYpf1iwgjaiWTjryKkY3uUTVAnRFKkqY6",
      "pubsub": null,
      "tpuQuic": "151.123.172.66:11228",
      "tpuVote": "151.123.172.66:8102",
      "version": "4.0.2",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "151.123.172.66:8107",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "151.123.172.66:11229"
    },
    {
      "rpc": "206.223.224.53:18899",
      "tpu": null,
      "tvu": "206.223.224.53:8001",
      "gossip": "206.223.224.53:8000",
      "pubkey": "hy1oMaD3ViyJ8i6w1xjP79zAWBBaRd1zWdTW8zYXnwu",
      "pubsub": "206.223.224.53:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "206.223.224.53:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "206.223.224.53:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.87:8001",
      "gossip": "64.130.42.87:8000",
      "pubkey": "2dfgsiSaZ51QYPsECMYMG247PXxyKdwkV9wTHoQb8YEC",
      "pubsub": null,
      "tpuQuic": "64.130.42.87:8002",
      "tpuVote": "64.130.42.87:8004",
      "version": "4.0.2",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.87:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.87:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.219.168.181:8001",
      "gossip": "103.219.168.181:8000",
      "pubkey": "DrifTrN923QaouP89UxkQzFGbumKPCnfkNYQRwmZxatz",
      "pubsub": null,
      "tpuQuic": "64.130.46.155:5010",
      "tpuVote": "103.219.168.181:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "103.219.168.181:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.155:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.235.225.141:8001",
      "gossip": "15.235.225.141:8000",
      "pubkey": "64pP1sgqwJc1SHxBBUbSAMzUmkRgb84Ak7KjDakXpKPw",
      "pubsub": null,
      "tpuQuic": "15.235.225.141:8002",
      "tpuVote": "15.235.225.141:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "15.235.225.141:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.235.225.141:8003"
    },
    {
      "rpc": "162.43.190.141:8899",
      "tpu": null,
      "tvu": "162.43.190.141:8001",
      "gossip": "162.43.190.141:8000",
      "pubkey": "ABREU5YkQcfpDZymoQ97iGUgQcfgjctWUUxEMfumiPdV",
      "pubsub": "162.43.190.141:8900",
      "tpuQuic": "162.43.190.141:8002",
      "tpuVote": "162.43.190.141:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "162.43.190.141:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.43.190.141:8003"
    },
    {
      "rpc": "185.238.166.14:7211",
      "tpu": null,
      "tvu": "185.238.166.14:8001",
      "gossip": "185.238.166.14:8000",
      "pubkey": "KTMkUG8WCw9FdH44jLMBpc1teGafnYL6SgP4fHHbsNM",
      "pubsub": "185.238.166.14:7212",
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "185.238.166.14:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "185.238.166.14:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.158:8001",
      "gossip": "64.130.52.158:8000",
      "pubkey": "7CR3Jq4ny2tsr3DX3DvyjoU8TYs776MGkU6nLMWjAqCT",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "64.130.52.158:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.158:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.47:8001",
      "gossip": "64.130.41.47:8000",
      "pubkey": "EXckihF3qmguH5znjhfzLvHsbk2E3nEW2DqNh4MMnDMm",
      "pubsub": null,
      "tpuQuic": "198.13.140.53:9007",
      "tpuVote": "64.130.41.47:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.47:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.53:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.32.75.114:8001",
      "gossip": "45.32.75.114:8002",
      "pubkey": "2P9ZYA4vBoBBr56hrEFTmrd5ctuz3r7wtvRYmbgk6jRL",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "45.32.75.114:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.32.75.114:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.248.1.76:8001",
      "gossip": "149.248.1.76:8000",
      "pubkey": "BNtHBLo1L2vAG7PBQ6mJvWz7GqVPxBnioXsY2Gjtubrg",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "149.248.1.76:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "149.248.1.76:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "154.47.145.125:8002",
      "gossip": "154.47.145.125:8001",
      "pubkey": "HVXXmNKkmDZbZwj74iL2Y9Wu4SyrchBoxAfFYVAktLrG",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "154.47.145.125:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "154.47.145.125:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.87.157:8001",
      "gossip": "64.34.87.157:8000",
      "pubkey": "FLwV8tm3pL8pZj6d927VASzPrgW51Gf4nRJuTewrfega",
      "pubsub": null,
      "tpuQuic": "64.34.87.157:8002",
      "tpuVote": "64.34.87.157:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.34.87.157:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.87.157:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "212.83.42.99:8000",
      "gossip": "212.83.42.99:8001",
      "pubkey": "7nzTzRZzezmugqE5ZjHRMxarhXunpwZ2PUdjV7uYzt7A",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "212.83.42.99:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "212.83.42.99:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": "206.223.226.215:18899",
      "tpu": null,
      "tvu": "206.223.226.215:8001",
      "gossip": "206.223.226.215:8000",
      "pubkey": "chdvWr6T14nqGRFD37KY36dsvhkCtDaufW5rpu3AfHe",
      "pubsub": "206.223.226.215:18899",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "206.223.226.215:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "206.223.226.215:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.53.20:8002",
      "gossip": "64.130.41.61:8001",
      "pubkey": "G3a3iYZKNLbivothF3twqcaTCEvoPb9uJ2bFc9DNKkBQ",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "64.130.41.61:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.61:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": "191.44.100.8:18899",
      "tpu": null,
      "tvu": "191.44.100.8:8001",
      "gossip": "191.44.100.8:8000",
      "pubkey": "stacheBmGG5zMKuetUevAbc4m4dLbve1VPcpSur3voH",
      "pubsub": "191.44.100.8:18899",
      "tpuQuic": "191.44.100.8:8002",
      "tpuVote": "191.44.100.8:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "191.44.100.8:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "191.44.100.8:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.165.35:8001",
      "gossip": "5.199.165.35:8000",
      "pubkey": "5ghoFEVrsXeAPB6SUmBpZ2xq3KvHEjNMeSaBnxEBXkHV",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "5.199.165.35:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "5.199.165.35:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.141.142:8000",
      "gossip": "104.204.141.142:8001",
      "pubkey": "7VZM7YHcX73TpGoXDeBu61g4QKC86GwAEnew8dA7Y2xn",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "104.204.141.142:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "104.204.141.142:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.254.184.251:8002",
      "gossip": "47.254.184.251:8001",
      "pubkey": "78sEMVmeecStjxWU7XMJMH8bMRBW9vSiEAhAjtZbt3fW",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "47.254.184.251:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "47.254.184.251:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.200:8001",
      "gossip": "45.154.33.200:8000",
      "pubkey": "4SgoyAwN26iu9Gpf12Bk1rnzp4G4yDUM3XVv4w7VQcAf",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "45.154.33.200:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.154.33.200:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": "191.44.100.3:18899",
      "tpu": null,
      "tvu": "191.44.100.3:8001",
      "gossip": "191.44.100.3:8000",
      "pubkey": "odcvDWH5wHVKz9XtmGGxTj5ZsmawTjCCty3nyBKDGzS",
      "pubsub": "191.44.100.3:18899",
      "tpuQuic": "191.44.100.3:8002",
      "tpuVote": "191.44.100.3:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "191.44.100.3:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "191.44.100.3:8003"
    },
    {
      "rpc": "139.180.221.63:18899",
      "tpu": null,
      "tvu": "139.180.221.63:8001",
      "gossip": "139.180.221.63:8000",
      "pubkey": "bookoVmqw4QjVj5BbkFacouadx9M7816wyRkfM7A5Lo",
      "pubsub": "139.180.221.63:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "139.180.221.63:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "139.180.221.63:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.70.0.28:8100",
      "gossip": "103.70.0.28:8001",
      "pubkey": "8Nvaxzif1NrdvxNkRetjT8xJvd33EHkKVrfL8EDkgaNy",
      "pubsub": null,
      "tpuQuic": "198.13.130.228:9007",
      "tpuVote": "103.70.0.28:8103",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "103.70.0.28:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.228:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.215.105:8000",
      "gossip": "2.57.215.105:8001",
      "pubkey": "RLMS1pv3YKi7CSUCKTNcFN5fFkXJc2SmCwPhbQpqZJo",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "2.57.215.105:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "2.57.215.105:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": "162.43.190.173:18899",
      "tpu": null,
      "tvu": "162.43.190.173:8001",
      "gossip": "162.43.190.173:8000",
      "pubkey": "MFLKSo4XDfrBf4FByx76zYM2dXSWcigag7ec2bCHTR4",
      "pubsub": "162.43.190.173:18899",
      "tpuQuic": "162.43.190.173:8002",
      "tpuVote": "162.43.190.173:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "162.43.190.173:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.43.190.173:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.42.231.135:8001",
      "gossip": "89.42.231.135:8000",
      "pubkey": "DiveRaPKviyDnQyiiMFdV4rujsCBJzMNvPjKfvGNLGvL",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "89.42.231.135:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "89.42.231.135:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.239.35.203:8001",
      "gossip": "64.239.35.203:8000",
      "pubkey": "mrgn4sJJu5GBa5wbKyjuASzhyCifvcedGoLtpKjB3Wf",
      "pubsub": null,
      "tpuQuic": "64.130.41.137:9007",
      "tpuVote": "64.239.35.203:8003",
      "version": "0.911.40002",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.239.35.203:8018",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.137:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "137.220.32.80:8001",
      "gossip": "137.220.32.80:8000",
      "pubkey": "43Am3PKFeo9cACpqYL5Sk95rpVdxLw3Mc22PqRqZXEW2",
      "pubsub": null,
      "tpuQuic": "64.130.53.11:5010",
      "tpuVote": "137.220.32.80:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "137.220.32.80:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.11:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.215:8001",
      "gossip": "64.130.43.215:8000",
      "pubkey": "DTSUkYHd2e9P2HLyZfbLarsbDdPhQUhZnWjRYuJZQRC8",
      "pubsub": null,
      "tpuQuic": "64.130.42.138:9007",
      "tpuVote": "64.130.43.215:8004",
      "version": "4.1.0-rc.1",
      "clientId": "HarmonicAgave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.43.215:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.138:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "37.187.82.58:8002",
      "gossip": "37.187.82.58:8001",
      "pubkey": "GGX3BEoZDqjxcw4AbCdu62ZTMrkpSgmPt81oP2mVuZNS",
      "pubsub": null,
      "tpuQuic": "37.187.82.58:8003",
      "tpuVote": "37.187.82.58:8005",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "37.187.82.58:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "37.187.82.58:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "151.123.174.46:8003",
      "gossip": "151.123.174.46:8002",
      "pubkey": "2X7WoaXX9KPqNrNfvguhnwo3rjFPNsfw2t75fGjWRthz",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "151.123.174.46:8006",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "151.123.174.46:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": "64.130.33.190:8899",
      "tpu": null,
      "tvu": "64.130.33.190:8002",
      "gossip": "64.130.33.190:8001",
      "pubkey": "mds2fZEpJP688PqJHvfLxGyf2VFrcNkvjuUxNYCwjrq",
      "pubsub": "64.130.33.190:8900",
      "tpuQuic": "64.130.33.190:8003",
      "tpuVote": "64.130.33.190:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "64.130.33.190:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.190:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "108.171.214.242:8000",
      "gossip": "108.171.214.242:8001",
      "pubkey": "SLNDCSGTEsA6KHpgR32MBt9UAurZnVSJGUtW2tRpdU2",
      "pubsub": null,
      "tpuQuic": "64.130.53.11:5010",
      "tpuVote": "108.171.214.242:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "108.171.214.242:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.11:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.142:8001",
      "gossip": "70.40.185.142:8000",
      "pubkey": "LFGGGJtnBLvq78DyMz1gTeedM6f8owck76qHThDABBC",
      "pubsub": null,
      "tpuQuic": "70.40.185.142:8009",
      "tpuVote": "70.40.185.142:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.142:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.142:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "134.65.192.69:8002",
      "gossip": "134.65.192.69:8001",
      "pubkey": "2Wf9V9rPeVRUTfmWdPedCJuWVr6MFfyLuigEq42DuMDc",
      "pubsub": null,
      "tpuQuic": "169.155.44.20:11228",
      "tpuVote": "134.65.192.69:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "134.65.192.69:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "169.155.44.20:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.53.20:8002",
      "gossip": "64.130.43.210:8001",
      "pubkey": "DDnAqxJVFo2GVTujibHt5cjevHMSE9bo8HJaydHoshdp",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "64.130.43.210:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.210:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.18:8001",
      "gossip": "64.130.63.18:8000",
      "pubkey": "Bi9kKNxfW2XqgCmLcuhHt6A3x55GuAGmrVZxRHLyVoQ4",
      "pubsub": null,
      "tpuQuic": "64.130.63.16:9007",
      "tpuVote": "64.130.63.18:8003",
      "version": "0.911.40002",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.18:8018",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.16:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.53:8001",
      "gossip": "64.130.41.53:8000",
      "pubkey": "84gC25fbFKYueR9WEfreUysk1n3ZFxLFDDjbyqeqGpoW",
      "pubsub": null,
      "tpuQuic": "198.13.140.53:9007",
      "tpuVote": "64.130.41.53:8003",
      "version": "0.911.40002",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.53:8018",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.53:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.176.186.185:8001",
      "gossip": "64.176.186.185:8000",
      "pubkey": "5FbKKGdEaFcxGxxaLKVvBes2JxiKbreh8w2ZpMcSQ2a5",
      "pubsub": null,
      "tpuQuic": "64.176.186.185:8002",
      "tpuVote": "64.176.186.185:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.176.186.185:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.176.186.185:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.109.165.37:8100",
      "gossip": "109.109.165.37:8001",
      "pubkey": "DnQBmTJyLbBMgJYQLJDqJz25AJModNkyexL5LdVRGnG4",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "109.109.165.37:8103",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "109.109.165.37:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": "64.34.94.9:18899",
      "tpu": null,
      "tvu": "64.34.94.9:8001",
      "gossip": "64.34.94.9:8000",
      "pubkey": "D8xKNftHzFcCekENuTEcFC1eoL9y8wNHEg4Q5z57KK4e",
      "pubsub": "64.34.94.9:18899",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "64.34.94.9:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.34.94.9:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.32.155.121:8001",
      "gossip": "45.32.155.121:8000",
      "pubkey": "DupN8puwoPdFo9EYm8AXemEn9cMsore1QmZzfPaxyUG4",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "45.32.155.121:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "45.32.155.121:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.174:8000",
      "gossip": "70.40.185.174:8001",
      "pubkey": "Stakex4B2tpDHPWGvV1dninfiaYCGdakgTknpzPitLh",
      "pubsub": null,
      "tpuQuic": "70.40.185.174:8002",
      "tpuVote": "70.40.185.174:8004",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.174:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.174:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "209.195.8.188:8001",
      "gossip": "209.195.8.188:8000",
      "pubkey": "B94PGWcxE9iEDov8sZobTkqEY96Yb5gfcsYWSWpQxh6S",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "209.195.8.188:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "209.195.8.188:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.21.152.138:9001",
      "gossip": "46.21.152.138:9000",
      "pubkey": "9U4WqNGVywKt3gG9HSt9tGVXBDXJvgid6BVweRysaJmg",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "46.21.152.138:9004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "46.21.152.138:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "192.69.194.194:8001",
      "gossip": "192.69.194.194:8000",
      "pubkey": "9bkyxgYxRrysC1ijd6iByp9idn112CnYTw243fdH2Uvr",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "192.69.194.194:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "192.69.194.194:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "178.211.139.140:8900",
      "gossip": "178.211.139.140:8001",
      "pubkey": "49j9bnkdgVNxLwsZ9h88sPR5MYEmsUyKrrJ6ZW8ijBrb",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "178.211.139.140:8903",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "178.211.139.140:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "138.226.224.66:8001",
      "gossip": "138.226.224.66:8000",
      "pubkey": "RBFiUqjYuy4mupzZaU96ctXJBy23sRBRsL3KivDAsFM",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "138.226.224.66:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "138.226.224.66:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": "64.130.42.137:8899",
      "tpu": null,
      "tvu": "64.130.42.137:8001",
      "gossip": "64.130.42.137:8000",
      "pubkey": "FNKgX9dYUhYQFRTM9bkeKoRpsyEtZGNMxbdQLDzfqB8a",
      "pubsub": "64.130.42.137:8900",
      "tpuQuic": "64.130.42.138:9007",
      "tpuVote": "64.130.42.137:8004",
      "version": "4.1.0-rc.1",
      "clientId": "HarmonicAgave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.42.137:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.138:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "213.21.201.79:8000",
      "gossip": "213.21.201.79:8001",
      "pubkey": "AiBEt9kE8yZ4CnaLfTCGMp7Fg2wCtqhPTfvJ8D3zrLfu",
      "pubsub": null,
      "tpuQuic": "88.216.192.50:5010",
      "tpuVote": "213.21.201.79:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "213.21.201.79:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.192.50:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.140.162.82:8000",
      "gossip": "64.140.162.82:8001",
      "pubkey": "LandXxwDqbxP2aaC2LfbrXytwXJtPUpiRr3J5kpy5xx",
      "pubsub": null,
      "tpuQuic": "64.140.162.82:8002",
      "tpuVote": "64.140.162.82:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.140.162.82:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.140.162.82:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "169.150.223.12:8002",
      "gossip": "169.150.223.12:8001",
      "pubkey": "LeDbQ99QT342j9S5YdyXLrsq2Gu3T3dMGajExdAuE3V",
      "pubsub": null,
      "tpuQuic": "169.150.223.12:11228",
      "tpuVote": "169.150.223.12:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "169.150.223.12:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "169.150.223.12:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.141.78:8001",
      "gossip": "104.204.141.78:8000",
      "pubkey": "6bBw4LYVzXQoNs1TH4yVavtpCu5cdwYGvmuXVcZmNeKy",
      "pubsub": null,
      "tpuQuic": "104.204.141.78:8002",
      "tpuVote": "104.204.141.78:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.204.141.78:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.141.78:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.76.159.29:8001",
      "gossip": "45.76.159.29:8002",
      "pubkey": "HwN6eoEe9N3kwHi66hpQDBMFPk6ASQGthWKPX5MZmisp",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "45.76.159.29:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.76.159.29:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.70.0.36:8100",
      "gossip": "103.70.0.36:8001",
      "pubkey": "5HYjArGt81naevDdwMaEx8yeGNw9jYBSDJa8YavT9Mp4",
      "pubsub": null,
      "tpuQuic": "198.13.130.228:9007",
      "tpuVote": "103.70.0.36:8103",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "103.70.0.36:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.228:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.140:8001",
      "gossip": "64.130.41.140:8000",
      "pubkey": "4mtXJ5pUcMMB4t8cLbi7zfDJCHfYLRrQb4qSLmh57sKL",
      "pubsub": null,
      "tpuQuic": "198.13.140.53:9007",
      "tpuVote": "64.130.41.140:8003",
      "version": "0.911.40002",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.140:8018",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.53:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.165.44:8001",
      "gossip": "5.199.165.44:8000",
      "pubkey": "2ufnDYz755WuHqGCczry1ACTNUVZdn2cm43bCyyPSZtH",
      "pubsub": null,
      "tpuQuic": "5.199.165.44:8002",
      "tpuVote": "5.199.165.44:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "5.199.165.44:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.165.44:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "212.83.43.115:8001",
      "gossip": "212.83.43.115:8000",
      "pubkey": "N43JWBg42ZoUFMkHsRUVbP7wGVdxaHKanqaF9BBNiFC",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "212.83.43.115:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "212.83.43.115:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.28.89.141:8001",
      "gossip": "103.28.89.141:8000",
      "pubkey": "ALp2GdA1eJV8vZHMHazCtTxNXe3BLUSco9LDASgjDs8R",
      "pubsub": null,
      "tpuQuic": "198.13.130.228:9007",
      "tpuVote": "103.28.89.141:8004",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "103.28.89.141:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.228:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.176.42:8003",
      "gossip": "84.32.176.42:8001",
      "pubkey": "8vk6QpG93JSaQCSgnycBsv5qmfQBk4qC9FjNA35E5JhU",
      "pubsub": null,
      "tpuQuic": "64.130.42.138:9007",
      "tpuVote": "84.32.176.42:9001",
      "version": "0.912.40003",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "84.32.176.42:50008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.138:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.218.204.89:8001",
      "gossip": "185.218.204.89:8000",
      "pubkey": "AWcCdYG7Dy6GX45c6QMPbgGwgRZPKcBDT4bXGb3QrVRV",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "185.218.204.89:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "185.218.204.89:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.184.229:8003",
      "gossip": "70.40.184.229:8000",
      "pubkey": "grptonHnt7YSmJokGK9TJJTBXDT8ca4LSWMHCCfzzPa",
      "pubsub": null,
      "tpuQuic": "64.130.41.137:9007",
      "tpuVote": "64.130.41.137:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 41254028,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.137:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.32.86:8001",
      "gossip": "84.32.32.86:8000",
      "pubkey": "2m1A2WM1vte7RWz5xTTw4i1SiXmngVtXhqFERaUjoAAb",
      "pubsub": null,
      "tpuQuic": "64.130.54.221:5010",
      "tpuVote": "84.32.32.86:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "84.32.32.86:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.221:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.155:8001",
      "gossip": "185.191.117.155:8000",
      "pubkey": "Ed9WjPnZfAXsPttcqxMwj94qsuXVRyBsyXnDkxFva2Zv",
      "pubsub": null,
      "tpuQuic": "185.191.117.155:8002",
      "tpuVote": "185.191.117.155:8004",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.155:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.155:8003"
    },
    {
      "rpc": "64.130.40.182:8899",
      "tpu": null,
      "tvu": "64.130.40.182:8001",
      "gossip": "64.130.40.182:8000",
      "pubkey": "5RvfTSowms7BTYaBj8SxVjj7ELAAKdQadKsuNpmBAwCs",
      "pubsub": "64.130.40.182:8900",
      "tpuQuic": "64.130.41.137:9007",
      "tpuVote": "64.130.40.182:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.182:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.137:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "158.41.67.134:8001",
      "gossip": "158.41.67.134:8000",
      "pubkey": "6xUK9Nbonr4eoJNtHGoUEMmYKoPz5mipKzyDBv6deX4d",
      "pubsub": null,
      "tpuQuic": "64.130.46.155:5010",
      "tpuVote": "158.41.67.134:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "158.41.67.134:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.155:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.99.161:8002",
      "gossip": "109.94.99.161:8001",
      "pubkey": "scb2TYPmwHgKxXJaJNq6gHKwYkVyLKx58hz9RbCKZZR",
      "pubsub": null,
      "tpuQuic": "109.94.99.161:8003",
      "tpuVote": "109.94.99.161:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "109.94.99.161:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.99.161:8004"
    },
    {
      "rpc": "64.176.11.113:18899",
      "tpu": null,
      "tvu": "64.176.11.113:8001",
      "gossip": "64.176.11.113:8000",
      "pubkey": "sCANXAaS1a7yB8jz3USvGNLfd8DSc9r7TNzNSKKPkfY",
      "pubsub": "64.176.11.113:18899",
      "tpuQuic": "64.176.11.113:8002",
      "tpuVote": "64.176.11.113:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.176.11.113:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.176.11.113:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.219.170.77:8002",
      "gossip": "103.219.170.77:8001",
      "pubkey": "mD1afZhSisoXfJLT8nYwSFANqjr1KPoDUEpYTEfFX1e",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "103.219.170.77:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "103.219.170.77:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.215.75:8001",
      "gossip": "2.57.215.75:8000",
      "pubkey": "3DaPk6TdeGnEBwTR8fEyZSLkdayk6vZXrqGZhAgYK8BV",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "2.57.215.75:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "2.57.215.75:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": "177.54.154.243:18899",
      "tpu": null,
      "tvu": "177.54.154.243:8001",
      "gossip": "177.54.154.243:8000",
      "pubkey": "te1ee9rGf369wxYQkuxkvuvMuTJ9cksgZySmNUF8rNY",
      "pubsub": "177.54.154.243:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "177.54.154.243:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "177.54.154.243:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.165.5:8001",
      "gossip": "5.199.165.5:8000",
      "pubkey": "sfvTq7ojrEc5WdXcHijz676eX1pc5MgoLxbkYSdRDAB",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "5.199.165.5:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "5.199.165.5:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.53.20:8002",
      "gossip": "64.130.43.229:8001",
      "pubkey": "2oHUYyW2PU9VJh4XBs5TbGgzdernunvGqyKth3kxW4ns",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "64.130.43.229:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.229:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": "162.43.190.143:18899",
      "tpu": null,
      "tvu": "162.43.190.143:8001",
      "gossip": "162.43.190.143:8000",
      "pubkey": "FoXyHJXdQGK2eHoTjSAzHq4hzxWdJvpGgyzrtPS9eAk",
      "pubsub": "162.43.190.143:18899",
      "tpuQuic": "162.43.190.143:8002",
      "tpuVote": "162.43.190.143:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "162.43.190.143:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.43.190.143:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.172.167:8002",
      "gossip": "5.199.172.167:8001",
      "pubkey": "3RXKQBRv7xKTQeNdLSPhCiD4QcUfxEQ12rtgUkMf5LnS",
      "pubsub": null,
      "tpuQuic": "88.216.192.50:5010",
      "tpuVote": "5.199.172.167:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "5.199.172.167:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.192.50:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "144.202.29.140:8001",
      "gossip": "144.202.29.140:8000",
      "pubkey": "D8kuk3qEiVBGwYkuMGKfBDwuRi6jjRkzjAZg45fdaRLx",
      "pubsub": null,
      "tpuQuic": "141.98.218.181:5010",
      "tpuVote": "144.202.29.140:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "144.202.29.140:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.218.181:5011"
    },
    {
      "rpc": "64.130.40.71:8899",
      "tpu": null,
      "tvu": "64.130.40.71:8000",
      "gossip": "64.130.40.71:8901",
      "pubkey": "CfgRXmp1LEYr97EaT2RyoL2cSvtWgJh52Bes89RxVSoW",
      "pubsub": "64.130.40.71:8900",
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "64.130.40.71:8003",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.71:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": "67.213.122.35:18899",
      "tpu": null,
      "tvu": "67.213.122.35:8001",
      "gossip": "67.213.122.35:8000",
      "pubkey": "prt1st4RSxAt32ams4zsXCe1kavzmKeoR7eh1sdYRXW",
      "pubsub": "67.213.122.35:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "67.213.122.35:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "67.213.122.35:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": "67.213.122.221:18899",
      "tpu": null,
      "tvu": "67.213.122.221:8001",
      "gossip": "67.213.122.221:8000",
      "pubkey": "NATsUSZGohWw8xtLdxG4yus21UCkaes4FLfM2eqKbRk",
      "pubsub": "67.213.122.221:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "67.213.122.221:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "67.213.122.221:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.99.79:8001",
      "gossip": "85.195.99.79:8000",
      "pubkey": "5pZvwjSpGYCxpJeySwSbSAji7kZe4YntL7rQvXM3YcNT",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "85.195.99.79:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "85.195.99.79:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.51:8002",
      "gossip": "64.130.50.51:8001",
      "pubkey": "4JahMMrVRS1gimWoXpD5H6KwKc2MrsoTDFMaStMttL1E",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "64.130.50.51:8005",
      "version": "4.0.0",
      "clientId": "AgaveBam",
      "featureSet": 3718597879,
      "serveRepair": "64.130.50.51:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "151.123.174.174:8002",
      "gossip": "151.123.174.174:8001",
      "pubkey": "3Pfubj3ytkRxFAGwFb5vtacuZJUxko5Du39xie9MBXuC",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "151.123.174.174:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "151.123.174.174:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": "151.123.174.142:8899",
      "tpu": null,
      "tvu": "151.123.174.142:9001",
      "gossip": "151.123.174.142:9000",
      "pubkey": "MCFmmmXdzTKjBEoMggi8JGFJmd856uYSowuH2sCU5kx",
      "pubsub": "151.123.174.142:8900",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "151.123.174.142:9004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "151.123.174.142:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "135.125.142.235:8001",
      "gossip": "135.125.142.235:8000",
      "pubkey": "3YVoK8UN62dyiPZnGBzBTkGdwsVmmK1MpRoLcxNRs9BE",
      "pubsub": null,
      "tpuQuic": "135.125.142.235:11228",
      "tpuVote": "135.125.142.235:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "135.125.142.235:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "135.125.142.235:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.120:8001",
      "gossip": "64.130.42.120:8000",
      "pubkey": "LA1NEzryoih6CQW3gwQqJQffK2mKgnXcjSQZSRpM3wc",
      "pubsub": null,
      "tpuQuic": "63.254.167.197:5010",
      "tpuVote": "64.130.42.120:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "64.130.42.120:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.197:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "193.221.135.101:8001",
      "gossip": "193.221.135.101:8000",
      "pubkey": "61QB1Evn9E3noQtpJm4auFYyHSXS5FPgqKtPgwJJfEQk",
      "pubsub": null,
      "tpuQuic": "64.130.46.155:5010",
      "tpuVote": "193.221.135.101:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "193.221.135.101:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.155:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "185.209.177.193:8000",
      "pubkey": "DY1B3joMsr7oGWSxR5uytx7zbJu4QhV476qineMscyst",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.205:8001",
      "gossip": "64.130.42.205:8000",
      "pubkey": "pSoLoZx55zZz61gjxSTwHtwTg4yTwdm7ruBmyjbYgT2",
      "pubsub": null,
      "tpuQuic": "64.130.42.138:9007",
      "tpuVote": "64.130.42.205:8003",
      "version": "0.911.40002",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.205:8018",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.138:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.10.10:8001",
      "gossip": "202.8.10.10:8000",
      "pubkey": "EfPYQ4BUMiKa6736qqrtnCBGkUSRDGSr1WvtyUgWHuyp",
      "pubsub": null,
      "tpuQuic": "64.130.46.155:5010",
      "tpuVote": "202.8.10.10:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "202.8.10.10:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.155:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.137.215.149:8001",
      "gossip": "45.137.215.149:8000",
      "pubkey": "CuStTdKU5nWev5YKxMHyFjiHYG2CnjZ3rrPa8r1G2hTw",
      "pubsub": null,
      "tpuQuic": "45.139.132.235:11228",
      "tpuVote": "45.137.215.149:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.137.215.149:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.139.132.235:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.142.125:8000",
      "gossip": "104.204.142.125:8001",
      "pubkey": "3x9nibnhgBHWKMRiGnsXJELRBjviQpKyigfrXtKW27KJ",
      "pubsub": null,
      "tpuQuic": "64.130.40.20:11228",
      "tpuVote": "104.204.142.125:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.204.142.125:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.20:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.187.35.137:8001",
      "gossip": "5.187.35.137:8000",
      "pubkey": "FSyAsxcE7g8pSSEu5nx7Hkz44rMZiYio5Wz8Lszh3Nbi",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "5.187.35.137:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "5.187.35.137:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "79.127.239.96:8002",
      "gossip": "79.127.239.96:8001",
      "pubkey": "GBQ2GvTzmjXMu97dr7WUnLKYTNim1aoZsYS53KYXAAAA",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "79.127.239.96:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "79.127.239.96:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.215.183:10002",
      "gossip": "2.57.215.183:8001",
      "pubkey": "orbit1bWKxnECKLqjhm5rybTiEC2GEYbecyebgEfM5q",
      "pubsub": null,
      "tpuQuic": "2.57.215.183:10003",
      "tpuVote": "2.57.215.183:10005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "2.57.215.183:10010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "2.57.215.183:10004"
    },
    {
      "rpc": "64.130.42.67:8899",
      "tpu": null,
      "tvu": "64.130.42.67:8001",
      "gossip": "64.130.42.67:8000",
      "pubkey": "A1vqhA2fS6K7CvHsJKX1ACcHJFEmyRg4KuR5pctHANy4",
      "pubsub": "64.130.42.67:8900",
      "tpuQuic": "64.130.42.138:9007",
      "tpuVote": "64.130.42.67:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.67:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.138:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.54.152.248:8003",
      "gossip": "86.54.152.248:8001",
      "pubkey": "DEU4agzdUCA5oZ1QSLxCyZb1smvdu5j1NXXsK2r823Uu",
      "pubsub": null,
      "tpuQuic": "86.54.152.248:8037",
      "tpuVote": "86.54.152.248:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "86.54.152.248:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.54.152.248:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.251:8001",
      "gossip": "64.130.50.251:8000",
      "pubkey": "D4r6Rcua2L7nHHhdaiZe2k2bTfPg2WQqcNYpG6bugvCG",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "64.130.50.251:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.251:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.36.3:8001",
      "gossip": "88.216.36.3:8000",
      "pubkey": "9q16BB7WGmBxf1nJTdxH5zPnBUhtHqdqXqRFjSjuM4k7",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "88.216.36.3:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "88.216.36.3:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": "64.130.40.183:8899",
      "tpu": null,
      "tvu": "64.130.40.183:8001",
      "gossip": "64.130.40.183:8000",
      "pubkey": "5ZqveVffQPiUbkjBg4KD9kib1MKHLqiFno4ke9jSq9qk",
      "pubsub": "64.130.40.183:8900",
      "tpuQuic": "64.130.41.137:9007",
      "tpuVote": "64.130.40.183:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.183:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.137:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "184.105.146.35:8001",
      "gossip": "184.105.146.35:8000",
      "pubkey": "Ninja1spj6n9t5hVYgF3PdnYz2PLnkt7rvaw3firmjs",
      "pubsub": null,
      "tpuQuic": "184.105.146.35:11228",
      "tpuVote": "184.105.146.35:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "184.105.146.35:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "184.105.146.35:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.76.239.188:8001",
      "gossip": "45.76.239.188:8000",
      "pubkey": "dzBhD4wikyy7xqwiJvT49gdrKqWVjfs9M6cTssmRX8Y",
      "pubsub": null,
      "tpuQuic": "45.76.239.188:8002",
      "tpuVote": "45.76.239.188:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "45.76.239.188:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.76.239.188:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.32.107:8100",
      "gossip": "84.32.32.107:8001",
      "pubkey": "4uH4G6YiD5G8rU3mtPg73C2Uqamrqedy3FboTZcZrh6x",
      "pubsub": null,
      "tpuQuic": "64.130.54.221:5010",
      "tpuVote": "84.32.32.107:8103",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "84.32.32.107:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.221:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.109.165.42:8001",
      "gossip": "109.109.165.42:8000",
      "pubkey": "CXPeim1wQMkcTvEHx9QdhgKREYYJD8bnaCCqPRwJ1to1",
      "pubsub": null,
      "tpuQuic": "63.254.163.103:5010",
      "tpuVote": "109.109.165.42:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "109.109.165.42:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.163.103:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.143.46:8003",
      "gossip": "104.204.143.46:8001",
      "pubkey": "BSMe78Jk1BfeJDdHQj1aXVjrT2aMAYidyNAGQsTshrk",
      "pubsub": null,
      "tpuQuic": "104.204.143.46:9007",
      "tpuVote": "104.204.143.46:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "104.204.143.46:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.143.46:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.202:8003",
      "gossip": "64.130.43.202:8001",
      "pubkey": "Cogent51kHgGLHr7zpkpRjGYFXM57LgjHjDdqXd4ypdA",
      "pubsub": null,
      "tpuQuic": "64.130.43.202:9007",
      "tpuVote": "64.130.43.202:9001",
      "version": "0.913.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.202:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.202:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.215:8001",
      "gossip": "208.91.110.215:8000",
      "pubkey": "BuoZ7q6faiJNTN24r7Kcj8dp96axs5XPEKXmWGsh2pDE",
      "pubsub": null,
      "tpuQuic": "198.13.140.53:9007",
      "tpuVote": "208.91.110.215:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.215:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.53:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.80:8001",
      "gossip": "64.130.42.80:8000",
      "pubkey": "vvvvbtDs9HsdsE6NskZMnb1RA6muoud1ChQuiF9QhSM",
      "pubsub": null,
      "tpuQuic": "64.130.42.80:8002",
      "tpuVote": "64.130.42.80:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.42.80:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.80:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "151.123.174.237:8900",
      "gossip": "151.123.174.237:8000",
      "pubkey": "5XKJwdKB2Hs7pkEXzifAysjSk6q7Rt6k5KfHwmAMPtoQ",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "151.123.174.237:8903",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "151.123.174.237:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.54.154.252:8003",
      "gossip": "86.54.154.252:8001",
      "pubkey": "BFmqBsaGjeYA7gHpReKmnVkRyhqiMmHoR9ttv1crWmzy",
      "pubsub": null,
      "tpuQuic": "86.54.154.252:8037",
      "tpuVote": "86.54.154.252:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "86.54.154.252:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.54.154.252:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "169.155.169.82:8002",
      "gossip": "169.155.169.82:8001",
      "pubkey": "CVgwMrWo9chKEuEPCe6Za9KJe8jamnAcoeWzaMeNubr6",
      "pubsub": null,
      "tpuQuic": "169.155.169.82:11228",
      "tpuVote": "169.155.169.82:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "169.155.169.82:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "169.155.169.82:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.119:8001",
      "gossip": "64.130.44.119:8000",
      "pubkey": "5d9Mdc2Zk8as8GL1AxQeXxv5htBBvC5bjfmsXC7UUWwG",
      "pubsub": null,
      "tpuQuic": "64.130.44.119:11228",
      "tpuVote": "64.130.44.119:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.119:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.119:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.97.191:8001",
      "gossip": "109.94.97.191:8000",
      "pubkey": "pitch9cMruwjDtAnisNS4mwZUPhMsBztNEGu2weMg55",
      "pubsub": null,
      "tpuQuic": "64.130.46.155:5010",
      "tpuVote": "109.94.97.191:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "109.94.97.191:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.155:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.124:8001",
      "gossip": "70.40.185.124:8000",
      "pubkey": "23SUe5fzmLws1M58AnGnvnUBRUKJmzCpnFQwv4M4b9Er",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "70.40.185.124:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.124:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": "67.213.121.139:8899",
      "tpu": null,
      "tvu": "67.213.121.139:8001",
      "gossip": "67.213.121.139:8000",
      "pubkey": "CRNyGD7xNPThLjNviGdxoAiHpQXZKx3UeyCfrxnmTi8r",
      "pubsub": "67.213.121.139:8900",
      "tpuQuic": "67.213.121.139:8002",
      "tpuVote": "67.213.121.139:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.213.121.139:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.139:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.157:8001",
      "gossip": "202.8.11.157:8000",
      "pubkey": "7qGNnXKW1e3DsqEaSxwxMdBTFsrK73XtWTmkGitRyMQc",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "202.8.11.157:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.157:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.28.83.94:8001",
      "gossip": "149.28.83.94:8002",
      "pubkey": "Ee8dX3qtwrDRnxYK6NGQfmMeKT3Qpp2QZHpxiAiw23W9",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "149.28.83.94:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "149.28.83.94:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "146.0.238.23:8001",
      "gossip": "146.0.238.23:8000",
      "pubkey": "4aRPyjsqqFsf5488a9QAaHJLQJMGwoL5P6wRtLmroe2d",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "146.0.238.23:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "146.0.238.23:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.16:8001",
      "gossip": "45.154.33.16:8000",
      "pubkey": "HTeRsa3gm3CGrizMoCrtWj4uBZ1NKYcGqh8jfBu2u3Jo",
      "pubsub": null,
      "tpuQuic": "64.130.41.137:9007",
      "tpuVote": "45.154.33.16:8004",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "45.154.33.16:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.137:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.53.194:8002",
      "gossip": "64.130.37.100:8001",
      "pubkey": "7GkMBmtrTZz8QbjSe1sXvAUtz7Pp42SQxfT5ymmJD4We",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "64.130.37.100:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.100:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.238.117.204:8001",
      "gossip": "216.238.117.204:8000",
      "pubkey": "5marvipGzf98hxnoJFXsZbGHSXcEQ3yRGJ4ps7D3V4ou",
      "pubsub": null,
      "tpuQuic": "216.238.117.204:8002",
      "tpuVote": "216.238.117.204:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.238.117.204:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.238.117.204:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.111.240.147:25000",
      "gossip": "23.111.240.147:8000",
      "pubkey": "GkFT5nmcFVmJiLwuE98PjdF3LReMeq4WbejFHfwrnsgw",
      "pubsub": null,
      "tpuQuic": "23.111.240.147:11228",
      "tpuVote": "23.111.240.147:25003",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "23.111.240.147:25008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.111.240.147:11229"
    },
    {
      "rpc": "103.88.233.43:18899",
      "tpu": null,
      "tvu": "103.88.233.43:8001",
      "gossip": "103.88.233.43:8000",
      "pubkey": "SA1LFXr4os2P4VKGUyRv84uFfuUYgcQkFh2uA4SmRcr",
      "pubsub": "103.88.233.43:18899",
      "tpuQuic": "103.88.233.43:8002",
      "tpuVote": "103.88.233.43:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.88.233.43:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.88.233.43:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.235.232.142:8003",
      "gossip": "15.235.232.142:8001",
      "pubkey": "idCE5k2BtTpwXdwAC7Var1enT9reut9fWECcxQP7LY7",
      "pubsub": null,
      "tpuQuic": "15.235.232.142:9007",
      "tpuVote": "15.235.232.142:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "15.235.232.142:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.235.232.142:9007"
    },
    {
      "rpc": "45.76.148.94:18899",
      "tpu": null,
      "tvu": "45.76.148.94:8001",
      "gossip": "45.76.148.94:8000",
      "pubkey": "gridqZmeBcsUKT2Mv4M9YFHFN3tVLFb2TCtTcLD1cAd",
      "pubsub": "45.76.148.94:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "45.76.148.94:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.76.148.94:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.98:8021",
      "gossip": "84.32.103.98:8001",
      "pubkey": "q9XWcZ7T1wP4bW9SB4XgNNwjnFEJ982nE8aVbbNuwot",
      "pubsub": null,
      "tpuQuic": "84.32.103.98:11228",
      "tpuVote": "84.32.103.98:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "84.32.103.98:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.98:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.97.193:8001",
      "gossip": "109.94.97.193:8000",
      "pubkey": "tkmaiSoZ3F8MofkQBVWG6JYSCzyN6ioe7ReYXohx3WJ",
      "pubsub": null,
      "tpuQuic": "64.130.46.155:5010",
      "tpuVote": "109.94.97.193:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "109.94.97.193:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.155:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.53.20:8002",
      "gossip": "198.13.130.223:8001",
      "pubkey": "FzQqaDStQQHs52YKeCnDovwSqvyZBCgs2kJcmvoFZwaS",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "198.13.130.223:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.223:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "170.23.153.115:8001",
      "gossip": "170.23.153.115:8000",
      "pubkey": "CG4tRANBKrzUmpv93V5sgftjQznBdiJsc2yPCzZWWuS9",
      "pubsub": null,
      "tpuQuic": "170.23.153.115:11228",
      "tpuVote": "170.23.153.115:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "170.23.153.115:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "170.23.153.115:11229"
    },
    {
      "rpc": "206.223.226.199:18899",
      "tpu": null,
      "tvu": "206.223.226.199:8001",
      "gossip": "206.223.226.199:8000",
      "pubkey": "avnujiRNoSRe9PcET42DPKznyfYnb2LRaZAsqv6REZo",
      "pubsub": "206.223.226.199:18899",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "206.223.226.199:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "206.223.226.199:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "192.69.194.213:8000",
      "gossip": "192.69.194.213:8001",
      "pubkey": "LodeuWMHPiPj2PUHUyca2bkpFv9HyzR3gaDBmGJ9TSS",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "192.69.194.213:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "192.69.194.213:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.18.205.162:8001",
      "gossip": "216.18.205.162:8000",
      "pubkey": "CpNnGGhgVATJAbzHUXdrcGfpPiGuZyPka4QUmH7YgavX",
      "pubsub": null,
      "tpuQuic": "216.18.205.162:8002",
      "tpuVote": "216.18.205.162:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.18.205.162:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.18.205.162:8003"
    },
    {
      "rpc": "64.130.44.144:8899",
      "tpu": null,
      "tvu": "64.130.44.144:8000",
      "gossip": "64.130.44.144:8901",
      "pubkey": "HT41udB8mLZZf7tev9tUoHYJ41TP8GWZ6zFMbjiviXk5",
      "pubsub": "64.130.44.144:8900",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "64.130.44.144:8003",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.144:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": "18.185.148.29:8899",
      "tpu": null,
      "tvu": "18.185.148.29:8001",
      "gossip": "18.185.148.29:8000",
      "pubkey": "BkoS26vBuaXnSowACdChi4WKid8UwmuPNhEJWa8KsLHd",
      "pubsub": "18.185.148.29:8900",
      "tpuQuic": "18.185.148.29:8002",
      "tpuVote": "18.185.148.29:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "18.185.148.29:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "18.185.148.29:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.18.215.202:8003",
      "gossip": "216.18.215.202:8001",
      "pubkey": "AmhQFcGvH2hjkucP78rn6GMKSbstYwyFpCDVKZUwBGrG",
      "pubsub": null,
      "tpuQuic": "216.18.215.202:9007",
      "tpuVote": "216.18.215.202:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "216.18.215.202:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.18.215.202:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "91.134.54.64:8000",
      "gossip": "91.134.54.64:8001",
      "pubkey": "D1A4F2yh38JLQExKjDiCi4G2tCMwj93c3sikseSSePKe",
      "pubsub": null,
      "tpuQuic": "91.134.54.64:8002",
      "tpuVote": "91.134.54.64:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "91.134.54.64:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.134.54.64:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.46.86.161:8001",
      "gossip": "72.46.86.161:8000",
      "pubkey": "sp1mwUBiVzQPaNQoMrfSNYYfxViFrLDiBXs2pc4kG3k",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "72.46.86.161:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "72.46.86.161:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": "206.223.226.209:18899",
      "tpu": null,
      "tvu": "206.223.226.209:8001",
      "gossip": "206.223.226.209:8000",
      "pubkey": "nateKhsYkrVc992UuTfAhEEFQqr2zQfpGg9RafNkxdC",
      "pubsub": "206.223.226.209:18899",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "206.223.226.209:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "206.223.226.209:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.155:8001",
      "gossip": "67.213.121.155:8000",
      "pubkey": "5TGfVQV1S3wHE9hkgGaQkRoPC7xZxiqwMcjQZxVYsf1j",
      "pubsub": null,
      "tpuQuic": "67.213.121.155:8002",
      "tpuVote": "67.213.121.155:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.213.121.155:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.155:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "209.250.251.15:8001",
      "gossip": "209.250.251.15:8000",
      "pubkey": "rsbp8zMHbGCpLoRktmsjspYv77VcjxAzH1KxPCD9BiU",
      "pubsub": null,
      "tpuQuic": "209.250.251.15:8002",
      "tpuVote": "209.250.251.15:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "209.250.251.15:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "209.250.251.15:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.215.180:8001",
      "gossip": "2.57.215.180:8000",
      "pubkey": "Ste1115xFGdAYK5jaWA3dEFcUc1S5jEbVvD8e327zty",
      "pubsub": null,
      "tpuQuic": "2.57.215.180:8002",
      "tpuVote": "2.57.215.180:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "2.57.215.180:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "2.57.215.180:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.7:8003",
      "gossip": "198.13.134.7:8001",
      "pubkey": "FhFB8MAj5Kzxo2aUKnnAXGWxQRhfe1Nfrf5gTReQ1evD",
      "pubsub": null,
      "tpuQuic": "198.13.134.7:9007",
      "tpuVote": "198.13.134.7:9001",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 1668064299,
      "serveRepair": "198.13.134.7:8702",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.7:9007"
    },
    {
      "rpc": "191.44.100.9:18899",
      "tpu": null,
      "tvu": "191.44.100.9:8001",
      "gossip": "191.44.100.9:8000",
      "pubkey": "gVALrRd3xq4D62KJNGDCpMMGz976w2x1Vo79mSNn4bh",
      "pubsub": "191.44.100.9:18899",
      "tpuQuic": "191.44.100.9:8002",
      "tpuVote": "191.44.100.9:8004",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "191.44.100.9:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "191.44.100.9:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.38.5:8002",
      "gossip": "64.130.57.215:8001",
      "pubkey": "HEL1USMZKAL2odpNBj2oCjffnFGaYwmbGmyewGv1e2TU",
      "pubsub": null,
      "tpuQuic": "64.130.57.215:8002",
      "tpuVote": "64.130.57.215:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.57.215:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.215:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "148.113.187.72:8021",
      "gossip": "148.113.187.72:8001",
      "pubkey": "8j7RdaofeR9jaXWqYTubqooHpcajP7EfhWbR4UKUB4fF",
      "pubsub": null,
      "tpuQuic": "148.113.187.72:8022",
      "tpuVote": "148.113.187.72:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "148.113.187.72:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "148.113.187.72:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "207.148.65.229:8001",
      "gossip": "207.148.65.229:8000",
      "pubkey": "KAW1LjxH73tRBd1XsaqsRsgeERFkg4WpdXUSqR4QjkW",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "207.148.65.229:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "207.148.65.229:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": "86.105.224.116:8899",
      "tpu": null,
      "tvu": "86.105.224.116:8001",
      "gossip": "86.105.224.116:8000",
      "pubkey": "FFevTkywysWf8PJvH4DZkEp4v9ks9HJPJhZWbhhJiYnr",
      "pubsub": "86.105.224.116:8900",
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "86.105.224.116:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "86.105.224.116:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.164.214:8001",
      "gossip": "5.199.164.214:8002",
      "pubkey": "2nhGaJvR17TeytzJVajPfABHQcAwinKoCG8F69gRdQot",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "5.199.164.214:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "5.199.164.214:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "62.197.45.91:8001",
      "gossip": "62.197.45.91:8000",
      "pubkey": "BJvrWSfonXnS2Km8iA9KLY6D6vS3GcsaUwUNPFBumTca",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "62.197.45.91:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "62.197.45.91:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.28.86.215:8001",
      "gossip": "149.28.86.215:8002",
      "pubkey": "GqDCbnafLmKkdqiqf278jDLXqjjZMB2sViZQtR82jPUf",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "149.28.86.215:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "149.28.86.215:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": "72.46.87.71:18899",
      "tpu": null,
      "tvu": "72.46.87.71:8001",
      "gossip": "72.46.87.71:8000",
      "pubkey": "mythxvB89eT3C1TKwwhsvdHfYq2aoCt2es8vLoDFYyk",
      "pubsub": "72.46.87.71:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "72.46.87.71:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "72.46.87.71:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.53:8100",
      "gossip": "70.40.185.53:8001",
      "pubkey": "4k6wgP5WPBKQpsFGtzuXNrjcTE2fKWLj17nDvFeG5zSF",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "70.40.185.53:8103",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.53:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.116.134:8001",
      "gossip": "185.191.116.134:8000",
      "pubkey": "3rqEEEGjHRyndHuduBcjkf17rX3hgmGACpYTQYeZ5Ltk",
      "pubsub": null,
      "tpuQuic": "64.130.46.155:5010",
      "tpuVote": "185.191.116.134:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "185.191.116.134:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.155:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "43.106.55.207:8001",
      "gossip": "43.106.55.207:8000",
      "pubkey": "Fc6NNdS2j3EmrWbU6Uqt6wsKB5ef72NjaWfNxKYbULGD",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "43.106.55.207:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "43.106.55.207:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "151.123.174.238:8003",
      "gossip": "151.123.174.238:8001",
      "pubkey": "kyzzzgRymGpePUsLyr48kQHt53kh5CSfRH1qfvz1xgj",
      "pubsub": null,
      "tpuQuic": "151.123.174.238:9007",
      "tpuVote": "151.123.174.238:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "151.123.174.238:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "151.123.174.238:9007"
    },
    {
      "rpc": "206.223.226.229:18899",
      "tpu": null,
      "tvu": "206.223.226.229:8001",
      "gossip": "206.223.226.229:8000",
      "pubkey": "DCKyEmMENQMtLXgbmUoHRmgP9XdJ9HsR5WxrKnSDCzKA",
      "pubsub": "206.223.226.229:18899",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "206.223.226.229:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "206.223.226.229:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.142.237:8001",
      "gossip": "104.204.142.237:8000",
      "pubkey": "6vG7fgweSfvY7JRViG4HwKgV9u6JKhMpf2bqr6TKNjUW",
      "pubsub": null,
      "tpuQuic": "104.204.142.237:8009",
      "tpuVote": "104.204.142.237:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.204.142.237:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.142.237:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.172.177:12001",
      "gossip": "5.199.172.177:12000",
      "pubkey": "HpcB5Qg8Y9E73dUkot5e8HkgAJbExsYeUzniY4bCuKac",
      "pubsub": null,
      "tpuQuic": "88.216.192.50:5010",
      "tpuVote": "5.199.172.177:12004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "5.199.172.177:12009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.192.50:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.189:8001",
      "gossip": "64.130.57.189:8000",
      "pubkey": "23U4mgK9DMCxsv2StC4y2qAptP25Xv5b2cybKCeJ1to3",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "64.130.57.189:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "64.130.57.189:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.87.141:8001",
      "gossip": "64.34.87.141:8000",
      "pubkey": "5essVpBYvocZkQnkrWsMDfRPwtp4BeihJRaweKLR4dRn",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "64.34.87.141:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.34.87.141:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": "206.223.224.63:18899",
      "tpu": null,
      "tvu": "206.223.224.63:8001",
      "gossip": "206.223.224.63:8000",
      "pubkey": "UNrgBLmc8JT6A3dxXY9DWeHvDezt2DZQbhg1KPQfqEL",
      "pubsub": "206.223.224.63:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "206.223.224.63:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "206.223.224.63:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.48:8001",
      "gossip": "64.130.52.48:8000",
      "pubkey": "AMukCLCr52XxsEjXoDxKKxjNg4FpnsReXNaQx8aR6DJF",
      "pubsub": null,
      "tpuQuic": "64.130.42.138:9007",
      "tpuVote": "64.130.52.48:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.48:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.138:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.113.91:8000",
      "gossip": "67.213.113.91:8001",
      "pubkey": "3YX7PQuESmR2h95FDgjahEQjyCBhmY1Ts2MsrM1Kg9DS",
      "pubsub": null,
      "tpuQuic": "67.213.113.91:8002",
      "tpuVote": "67.213.113.91:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.213.113.91:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.113.91:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.181:8001",
      "gossip": "70.40.185.181:8000",
      "pubkey": "ZoD1XLMhxdMveAJL4x9oab4FhRKP5NThTnSCH19Tdjp",
      "pubsub": null,
      "tpuQuic": "70.40.185.181:8002",
      "tpuVote": "70.40.185.181:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.181:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.181:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.229.190.123:8002",
      "gossip": "185.229.190.123:8001",
      "pubkey": "ChorusmmK7i1AxXeiTtQgQZhQNiXYU84ULeaYF1EH15n",
      "pubsub": null,
      "tpuQuic": "185.229.190.123:11228",
      "tpuVote": "185.229.190.123:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.229.190.123:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.229.190.123:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.141.119:8001",
      "gossip": "104.204.141.119:8000",
      "pubkey": "icex1C6pnZxznQWiHZZANjGU8nZ8kNquFnjyY7XXrXE",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "104.204.141.119:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "104.204.141.119:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.253:8003",
      "gossip": "64.130.63.253:8001",
      "pubkey": "6ptuwW4rg5A3wP9hNKxeymG3QhSagugPd3grnMTGJwWG",
      "pubsub": null,
      "tpuQuic": "64.130.63.253:9007",
      "tpuVote": "64.130.63.253:9001",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 1668064299,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.253:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.32.103.133:8001",
      "gossip": "45.32.103.133:8000",
      "pubkey": "FyrwfMaomErzqrFUXMjCJ7mA4u81DsiDdrzC3MJD6d4j",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "45.32.103.133:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "45.32.103.133:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.109.165.36:8100",
      "gossip": "109.109.165.36:8001",
      "pubkey": "GWJyUxzcVwRRtpLuLiu1mpiUQsZ4onYFAYfCjQnuLmz5",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "109.109.165.36:8103",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "109.109.165.36:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": "206.223.224.57:18899",
      "tpu": null,
      "tvu": "206.223.224.57:8001",
      "gossip": "206.223.224.57:8000",
      "pubkey": "YE11a5nVJtUNqsojkphYuWc7StqBzbCeFH6BjhAAUEV",
      "pubsub": "206.223.224.57:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "206.223.224.57:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "206.223.224.57:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "37.120.245.6:8002",
      "gossip": "37.120.245.6:8001",
      "pubkey": "NWY18yrPHsTogTDq78HpB51D7gC5AGRsvJ5pPqSchkH",
      "pubsub": null,
      "tpuQuic": "37.120.245.6:8003",
      "tpuVote": "37.120.245.6:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "37.120.245.6:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "37.120.245.6:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.38.2:8002",
      "gossip": "64.130.52.202:8001",
      "pubkey": "2icWF7TvxyycF7d1NHpMZYuJJqiRy2h7wmjFSbqUij1B",
      "pubsub": null,
      "tpuQuic": "64.130.52.202:8002",
      "tpuVote": "64.130.52.202:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.202:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.202:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.185:8002",
      "gossip": "64.130.33.185:8001",
      "pubkey": "mds1WWedpezW3qvgML4WgP341jZksYAy5SbMLwjP5KC",
      "pubsub": null,
      "tpuQuic": "64.130.33.185:8003",
      "tpuVote": "64.130.33.185:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "64.130.33.185:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.185:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.133.169:8002",
      "gossip": "45.139.133.169:8001",
      "pubkey": "By8MseMKtZQQaQjMHJiyetmc5AC8RZZv8C2ss33ktrHt",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "45.139.133.169:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.139.133.169:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.32.21:8001",
      "gossip": "84.32.32.21:8000",
      "pubkey": "BSGMRbK97DcgLe4u4kfNQnmTVZGVnwdtKQBJqWRBTZxU",
      "pubsub": null,
      "tpuQuic": "64.130.54.221:5010",
      "tpuVote": "84.32.32.21:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "84.32.32.21:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.221:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.21.158.34:9001",
      "gossip": "46.21.158.34:9000",
      "pubkey": "6TkKqq15wXjqEjNg9zqTKADwuVATR9dW3rkNnsYme1ea",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "46.21.158.34:9004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "46.21.158.34:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.111.240.149:25000",
      "gossip": "23.111.240.149:8000",
      "pubkey": "HH5dA42XF1HxNk1TRpG6LuKfLViMYNdAz5iWrFM4hWFi",
      "pubsub": null,
      "tpuQuic": "23.111.240.149:11228",
      "tpuVote": "23.111.240.149:25003",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "23.111.240.149:25008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.111.240.149:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.53.83:8002",
      "gossip": "198.13.134.20:8001",
      "pubkey": "Aw5wEMXhbygFLR7jHtHpih8QvxVBGAMTqsQ2SjWPk1ex",
      "pubsub": null,
      "tpuQuic": "198.13.134.20:8003",
      "tpuVote": "198.13.134.20:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.20:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.20:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.32.145.112:8001",
      "gossip": "45.32.145.112:8000",
      "pubkey": "ana2y2YvQ3ZPMwm6qhnN3nJoUSiT3qx5Pvetkq9xcfY",
      "pubsub": null,
      "tpuQuic": "45.32.145.112:8002",
      "tpuVote": "45.32.145.112:8004",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "45.32.145.112:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.32.145.112:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "170.23.153.47:8001",
      "gossip": "170.23.153.47:8000",
      "pubkey": "ETuPS3kRfLufz5VSYN2ZrePoEVSZSpgVPKz3MUZpYe3x",
      "pubsub": null,
      "tpuQuic": "170.23.153.47:11228",
      "tpuVote": "170.23.153.47:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "170.23.153.47:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "170.23.153.47:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "107.155.95.94:8001",
      "gossip": "107.155.95.94:8000",
      "pubkey": "CoG8d9Fp2TFJRkAmrPMiPsGhQWHzdTTVoegEp9svRgmJ",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "107.155.95.94:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "107.155.95.94:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.74.35.157:8000",
      "gossip": "47.74.35.157:8001",
      "pubkey": "EdFUcP2f6j9iBg5BqsgJn3WDr1JieiKCo41hZ5Zrsk6w",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "47.74.35.157:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "47.74.35.157:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.111.240.207:8001",
      "gossip": "23.111.240.207:8000",
      "pubkey": "CkCMabrc3HgBgDkeKPXkbWuQpUuSqW7zs1Mg3HFArx61",
      "pubsub": null,
      "tpuQuic": "23.111.240.207:11228",
      "tpuVote": "23.111.240.207:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "23.111.240.207:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.111.240.207:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "170.23.153.111:8001",
      "gossip": "170.23.153.111:8000",
      "pubkey": "REA1zKzM5WjDEcpB27Zx2Rk16foNPtLGTETy93LLgNw",
      "pubsub": null,
      "tpuQuic": "170.23.153.111:11228",
      "tpuVote": "170.23.153.111:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "170.23.153.111:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "170.23.153.111:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.142.236:8003",
      "gossip": "104.204.142.236:8001",
      "pubkey": "U82KEYMnuCiZSQbvuCJTZ652HX9NQ63uNSnxyucshrk",
      "pubsub": null,
      "tpuQuic": "104.204.142.236:9007",
      "tpuVote": "104.204.142.236:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "104.204.142.236:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.142.236:9007"
    },
    {
      "rpc": "64.130.41.180:8899",
      "tpu": null,
      "tvu": "64.130.41.180:8003",
      "gossip": "64.130.41.180:8001",
      "pubkey": "7PdKhpKz7T39vZHFL1UfcYNDsLvay6hp4KPQq1aUckFf",
      "pubsub": "64.130.41.180:8900",
      "tpuQuic": "64.130.41.180:9007",
      "tpuVote": "64.130.41.180:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.180:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.180:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.36.4:8002",
      "gossip": "57.129.36.4:8001",
      "pubkey": "2jS8AX38m8F9C5juToW1FmTufEbb1DfDzZJj9HSJcWwo",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "57.129.36.4:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "57.129.36.4:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.81:8016",
      "gossip": "185.191.117.81:8015",
      "pubkey": "GFXVa19rX6iwfs3sLS5UvX9Exu2usRsG4V5MRMDRo23V",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "185.191.117.81:8019",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.81:8024",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.184.12:8003",
      "gossip": "70.40.184.12:9001",
      "pubkey": "SFundNVpuWk89g211WKUZGkuu4BsKSp7PbnmRsPZLos",
      "pubsub": null,
      "tpuQuic": "64.130.41.137:9007",
      "tpuVote": "70.40.184.12:9002",
      "version": "0.912.40003",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "70.40.184.12:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.137:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.118.73:8002",
      "gossip": "67.213.118.73:8001",
      "pubkey": "scs2Ra91pMbvqFAP7uitrN5U25SoyBTqZgBbhpVMJko",
      "pubsub": null,
      "tpuQuic": "67.213.118.73:8003",
      "tpuVote": "67.213.118.73:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.118.73:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.118.73:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.235.231.135:8001",
      "gossip": "15.235.231.135:8000",
      "pubkey": "DSRVdh9PQaqAcFtMCbJhyD4yMD5H2EeHNzdbqWctRY4E",
      "pubsub": null,
      "tpuQuic": "15.235.231.135:8002",
      "tpuVote": "15.235.231.135:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "15.235.231.135:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.235.231.135:8003"
    },
    {
      "rpc": "84.32.103.90:8899",
      "tpu": null,
      "tvu": "84.32.103.90:8001",
      "gossip": "84.32.103.90:8000",
      "pubkey": "Fb77sbwgXmtjmkjkaoSckGp5yg3nqdtD8zf1dyxxiCSf",
      "pubsub": "84.32.103.90:8900",
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "84.32.103.90:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "84.32.103.90:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.239.35.204:8001",
      "gossip": "64.239.35.204:8000",
      "pubkey": "nymsHergYedT9CJMgtGMvqXUTGcbs5o3MiWTJUbqTGY",
      "pubsub": null,
      "tpuQuic": "64.130.41.137:9007",
      "tpuVote": "64.239.35.204:8003",
      "version": "0.911.40002",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.239.35.204:8018",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.137:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.77.101.30:8002",
      "gossip": "45.77.101.30:8001",
      "pubkey": "GEM1N1UE3C8BB8EaaEPrcFvT3iLMVrurknjW5AYjUReR",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "45.77.101.30:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.77.101.30:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.164.124:8100",
      "gossip": "5.199.164.124:8001",
      "pubkey": "5zm9g3zgAPWzX3wmUB2JtTkcwCqe74NWsTmt5wLFwCKK",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "5.199.164.124:8103",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "5.199.164.124:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "206.223.224.207:8001",
      "gossip": "206.223.224.207:8000",
      "pubkey": "BTGPbq4KuFENn4CKuaKGqkaDd3TJD3TEgtMjSrsZnMLb",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "206.223.224.207:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "206.223.224.207:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.28.150.249:8001",
      "gossip": "149.28.150.249:8000",
      "pubkey": "7CR6whiYULVf1Knj4J5PxUS37opdk8UAx2WnDzBQKiVe",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "149.28.150.249:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "149.28.150.249:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.215.83:8002",
      "gossip": "2.57.215.83:8001",
      "pubkey": "6xFDLX751L7H9d5fQT9sf2SM5RWWE9LDgqz25pPDbWoJ",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "2.57.215.83:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "2.57.215.83:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.184.60:8901",
      "gossip": "70.40.184.60:8900",
      "pubkey": "huinBRP3muBuqZLMW8ARjdn4mBnEmFFcxiBzrkQz553",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "70.40.184.60:8904",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "70.40.184.60:8909",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.10.164:8001",
      "gossip": "202.8.10.164:8000",
      "pubkey": "BXAxLMMMUNYfC1z166VjWHR3WjTmqzLxB837o5ghmRtH",
      "pubsub": null,
      "tpuQuic": "64.130.46.155:5010",
      "tpuVote": "202.8.10.164:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "202.8.10.164:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.155:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "62.113.193.196:8001",
      "gossip": "62.113.193.196:8000",
      "pubkey": "NLMSHTjmSiRxGJPs3uaqtsFBC2dTGYwK41U18Nmw5kH",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "62.113.193.196:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "62.113.193.196:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "212.83.42.113:8002",
      "gossip": "212.83.42.113:8001",
      "pubkey": "ALPHA6rdHZkx1om79xp47vX1iZXcbM3qfEwLyttZ1T7R",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "212.83.42.113:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "212.83.42.113:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": "206.223.226.205:18899",
      "tpu": null,
      "tvu": "206.223.226.205:8001",
      "gossip": "206.223.226.205:8000",
      "pubkey": "phz1CRbEsCtFCh2Ro5tjyu588VU1WPMwW9BJS9yFNn2",
      "pubsub": "206.223.226.205:18899",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "206.223.226.205:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "206.223.226.205:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": "45.77.241.154:18899",
      "tpu": null,
      "tvu": "45.77.241.154:8001",
      "gossip": "45.77.241.154:8000",
      "pubkey": "sTepQGoReJq2tBKStL19DT6nnGHcGiAvFjyYaokLyuM",
      "pubsub": "45.77.241.154:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "45.77.241.154:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.77.241.154:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": "18.196.42.218:8899",
      "tpu": null,
      "tvu": "18.196.42.218:8001",
      "gossip": "18.196.42.218:8000",
      "pubkey": "9rkJMARqK6VBkcxGfKBAwnA44gPAfGxPbPsfsggFNDSQ",
      "pubsub": "18.196.42.218:8900",
      "tpuQuic": "18.196.42.218:8002",
      "tpuVote": "18.196.42.218:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "18.196.42.218:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "18.196.42.218:8003"
    },
    {
      "rpc": "177.54.154.241:18899",
      "tpu": null,
      "tvu": "177.54.154.241:8001",
      "gossip": "177.54.154.241:8000",
      "pubkey": "eyeYaqg9e2L6xw7YwsSLm27eWJfhLNAm6ETQm8TXNoK",
      "pubsub": "177.54.154.241:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "177.54.154.241:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "177.54.154.241:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.172.179:12001",
      "gossip": "5.199.172.179:12000",
      "pubkey": "5ejbTALcBsKQ7Cj1iSuu2mY5jqbYHqh9gF5ERXLiYj1z",
      "pubsub": null,
      "tpuQuic": "88.216.192.50:5010",
      "tpuVote": "5.199.172.179:12004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "5.199.172.179:12009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.192.50:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.189.44.170:12001",
      "gossip": "185.189.44.170:12000",
      "pubkey": "3SkE34PVeGck2ArEffFKjihrQgURsvnoTAhitsNXNzXd",
      "pubsub": null,
      "tpuQuic": "185.189.44.170:12002",
      "tpuVote": "185.189.44.170:12004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.189.44.170:12009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.189.44.170:12003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.142.142:8001",
      "gossip": "104.204.142.142:8000",
      "pubkey": "8cqck84coxk8TGXYBD95QosKCEA6fKwXLevcEv3oGmu8",
      "pubsub": null,
      "tpuQuic": "104.204.142.142:8009",
      "tpuVote": "104.204.142.142:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.204.142.142:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.142.142:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.113.101:8001",
      "gossip": "67.213.113.101:8000",
      "pubkey": "rapXHroUoGG3KvZ3qwjvGMdA7siWXwXpiNC1bYarvSC",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "67.213.113.101:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "67.213.113.101:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "186.233.184.145:8001",
      "gossip": "186.233.184.145:8000",
      "pubkey": "fishfishrD9BwrQQiAcG6YeYZVUYVJf3tb9QGQPMJqF",
      "pubsub": null,
      "tpuQuic": "198.73.57.238:9007",
      "tpuVote": "186.233.184.145:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "186.233.184.145:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.73.57.238:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.142:8000",
      "gossip": "64.130.37.142:8001",
      "pubkey": "E4xNK4UwGnMtkdiUPyx13i6NkFDdW9Gw9NFGY93wEdGZ",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "64.130.37.142:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.142:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.109.164.194:8001",
      "gossip": "109.109.164.194:8000",
      "pubkey": "AurseT3W3tk1dATBWAXtWR6oubBgECqintfcvP74teU3",
      "pubsub": null,
      "tpuQuic": "63.254.162.99:9007",
      "tpuVote": "109.109.164.194:8004",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "109.109.164.194:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.162.99:9007"
    },
    {
      "rpc": "103.88.233.109:8899",
      "tpu": null,
      "tvu": "103.88.233.109:8001",
      "gossip": "103.88.233.109:8000",
      "pubkey": "BRAZAtTTzR2Es8c98hJvcngerTEyRGSdgkHU59n4A6GT",
      "pubsub": "103.88.233.109:8900",
      "tpuQuic": "103.88.233.109:8002",
      "tpuVote": "103.88.233.109:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.88.233.109:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.88.233.109:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.244.253.130:8002",
      "gossip": "198.244.253.130:8001",
      "pubkey": "SyndicAgdEphcy5xhAKZAomTYhcF8xhC7za2UD9xeug",
      "pubsub": null,
      "tpuQuic": "198.244.253.130:8003",
      "tpuVote": "198.244.253.130:8005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.244.253.130:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.244.253.130:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "189.1.164.35:8002",
      "gossip": "189.1.164.35:8001",
      "pubkey": "mds4GEuiSgQRqveGyktWpETBFCb4AS2wDnhqwLHcT6Z",
      "pubsub": null,
      "tpuQuic": "189.1.164.35:8003",
      "tpuVote": "189.1.164.35:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "189.1.164.35:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "189.1.164.35:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.109:8001",
      "gossip": "45.152.160.109:8000",
      "pubkey": "93Q99nhdKjuSe6WNXgMBbC3s8QVQEAoHKt91PNRkUkMn",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "45.152.160.109:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.152.160.109:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.77.190.93:8001",
      "gossip": "45.77.190.93:8000",
      "pubkey": "CpuDNi3iVoHXbaT8gHpzKe6rqeBasoYjEKi21q7NRVJS",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "45.77.190.93:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.77.190.93:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.109.165.7:8100",
      "gossip": "109.109.165.7:8001",
      "pubkey": "GiYSnFRrXrmkJMC54A1j3K4xT6ZMfx1NSThEe5X2WpDe",
      "pubsub": null,
      "tpuQuic": "109.109.165.7:11228",
      "tpuVote": "109.109.165.7:8103",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "109.109.165.7:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.109.165.7:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.70.0.84:8100",
      "gossip": "103.70.0.84:8001",
      "pubkey": "CLsFr1KZVbAyz16iFpwg2e4hiekR1unpwyxfNdjBMaoE",
      "pubsub": null,
      "tpuQuic": "198.13.130.228:9007",
      "tpuVote": "103.70.0.84:8103",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "103.70.0.84:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.228:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.15.240.12:18503",
      "gossip": "204.15.240.12:18502",
      "pubkey": "HcZvwZ83PfjrQDiq3GLHxisTs17aGURs6bJ2LwtmL4qv",
      "pubsub": null,
      "tpuQuic": "204.15.240.12:18504",
      "tpuVote": "204.15.240.12:18506",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "204.15.240.12:18511",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.15.240.12:18505"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.58:8000",
      "gossip": "45.152.160.58:8001",
      "pubkey": "Hj2jzpAp57KyM3SmnYwJbDVrQ8tTWizMon2hhzYzwxet",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "45.152.160.58:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.152.160.58:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.92.24.108:8001",
      "gossip": "38.92.24.108:8000",
      "pubkey": "Lua1fxRRHCnjVAYdfGyv2GbUsRHGM2DN2wgpWuF2WSb",
      "pubsub": null,
      "tpuQuic": "64.130.53.11:5010",
      "tpuVote": "38.92.24.108:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "38.92.24.108:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.11:5011"
    },
    {
      "rpc": "172.241.48.247:18899",
      "tpu": null,
      "tvu": "172.241.48.247:8001",
      "gossip": "172.241.48.247:8000",
      "pubkey": "9Wmaz9VPpEnH67ZqrvYd9bcH66DtsGaEKcSQE1ac5wkf",
      "pubsub": "172.241.48.247:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "172.241.48.247:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "172.241.48.247:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.141.184:8000",
      "gossip": "104.204.141.184:8001",
      "pubkey": "MicoB9cA9R6jsicdhzWFjwd9HMkV8FA4o3WxYU6Z2yz",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "104.204.141.184:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "104.204.141.184:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.142.206:8003",
      "gossip": "104.204.142.206:8001",
      "pubkey": "XAqHfPFsqTfAJHBRHAcEECkMSykXjkUj2Rta16Qshrk",
      "pubsub": null,
      "tpuQuic": "104.204.142.206:9007",
      "tpuVote": "104.204.142.206:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "104.204.142.206:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.142.206:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.158:8016",
      "gossip": "185.191.117.158:8015",
      "pubkey": "SPHERExTW7GaMgS4RN6MbghYvXU2REfFWHgpxMH1P69",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "185.191.117.158:8019",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.158:8024",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": "198.13.130.84:8899",
      "tpu": null,
      "tvu": "198.13.130.84:8001",
      "gossip": "198.13.130.84:8000",
      "pubkey": "D1Vbgkrhp1TmLGhfUD1urRMx5Ntz9AqQpgdX8DR8QMC1",
      "pubsub": "198.13.130.84:8900",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "198.13.130.84:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.84:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.171:8888",
      "gossip": "45.250.253.52:8000",
      "pubkey": "9Codn7nax9at9fEYK9gApNyGWDGxbgi1MptcT2WmBE3w",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.119.9:8001",
      "gossip": "67.213.119.9:8000",
      "pubkey": "dxa6QFqLcByyHykLCAW5tv1VYNVQFV3v6oovM2h8inH",
      "pubsub": null,
      "tpuQuic": "64.130.54.221:5010",
      "tpuVote": "67.213.119.9:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "67.213.119.9:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.221:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.186.110:8001",
      "gossip": "84.32.186.110:8000",
      "pubkey": "D3htsc6iRQJLqCNWcC2xcZgUuvcd1JT8zoYNqraNcTQz",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "84.32.186.110:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "84.32.186.110:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "151.123.172.174:8001",
      "gossip": "151.123.172.174:8000",
      "pubkey": "SscQkTYV2BFQYGGffAmTzvefrFrw6z9GNYiWHstVZ77",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "151.123.172.174:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "151.123.172.174:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.28.89.181:8003",
      "gossip": "103.28.89.181:8001",
      "pubkey": "PRGNnb8DxVcP2WjSHfVRGgc8SkA5u6dbMwoTVV1BGKN",
      "pubsub": null,
      "tpuQuic": "103.28.89.181:9007",
      "tpuVote": "103.28.89.181:9001",
      "version": "0.1004.0-rc.40101",
      "clientId": "Frankendancer",
      "featureSet": 3345198602,
      "serveRepair": "103.28.89.181:50007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.28.89.181:9007"
    },
    {
      "rpc": "177.54.154.235:18899",
      "tpu": null,
      "tvu": "177.54.154.235:8001",
      "gossip": "177.54.154.235:8000",
      "pubkey": "radM7PKUpZwJ9bYPAJ7V8FXHeUmH1zim6iaXUKkftP9",
      "pubsub": "177.54.154.235:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "177.54.154.235:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "177.54.154.235:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.136:8000",
      "gossip": "185.191.117.136:8001",
      "pubkey": "SELEXm1aELCweknS2tsG6A4WivjVvgrTWn9doHNLj66",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "185.191.117.136:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.136:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.10.30.191:8001",
      "gossip": "216.10.30.191:8000",
      "pubkey": "BeSovDCzhEAfgwDyXBuhmCFKsu5WQ3PaX61GEfteNzXM",
      "pubsub": null,
      "tpuQuic": "64.130.54.221:5010",
      "tpuVote": "216.10.30.191:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "216.10.30.191:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.221:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.44.211.20:8001",
      "gossip": "89.44.211.20:8000",
      "pubkey": "2bpfa8JbFfZUGUsedDsemu6vQUxbhcEM8ALSH3PgXd2d",
      "pubsub": null,
      "tpuQuic": "89.44.211.20:8002",
      "tpuVote": "89.44.211.20:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "89.44.211.20:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.44.211.20:8003"
    },
    {
      "rpc": "23.229.41.190:8899",
      "tpu": null,
      "tvu": "23.229.41.190:8003",
      "gossip": "23.229.41.190:8001",
      "pubkey": "CZanBzZHFzrGY5qKzaX3CNhJ5smHEMTWFFnoeUi4J6dr",
      "pubsub": "23.229.41.190:8900",
      "tpuQuic": "198.73.57.238:9007",
      "tpuVote": "23.229.41.190:9001",
      "version": "0.912.40003",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "23.229.41.190:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.73.57.238:9007"
    },
    {
      "rpc": "185.26.10.175:8899",
      "tpu": null,
      "tvu": "185.26.10.175:8001",
      "gossip": "185.26.10.175:8000",
      "pubkey": "9iFPQbP1jGkj67sXg6YLLGRUBVEDMcapdS6jmCZSnz8R",
      "pubsub": "185.26.10.175:8900",
      "tpuQuic": "64.130.41.137:9007",
      "tpuVote": "185.26.10.175:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "185.26.10.175:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.137:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "160.202.129.127:8001",
      "gossip": "160.202.129.127:8000",
      "pubkey": "bcZxRSozXDb61a77rxL6n9yumsbatqC7RFmZ8Xi5K8V",
      "pubsub": null,
      "tpuQuic": "160.202.129.127:8002",
      "tpuVote": "160.202.129.127:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "160.202.129.127:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "160.202.129.127:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.96.251:8001",
      "gossip": "85.195.96.251:8000",
      "pubkey": "5tfcGyf3NQFcufDigvbRt9kWoVN2KPEkBRUY3UaC3Zwm",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "85.195.96.251:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "85.195.96.251:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "177.54.159.47:8001",
      "gossip": "177.54.159.47:8000",
      "pubkey": "SLAY6uN1zZpXBTfbuDDCesNmM5D288xrz8uYvfS3n41",
      "pubsub": null,
      "tpuQuic": "177.54.159.47:8002",
      "tpuVote": "177.54.159.47:8004",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "177.54.159.47:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "177.54.159.47:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.134.139:8001",
      "gossip": "45.139.134.139:8000",
      "pubkey": "BuonuQoAR74GoMwCFhxKWVWWSGGt2wfbNmQ3cizaJ97G",
      "pubsub": null,
      "tpuQuic": "45.139.134.139:8009",
      "tpuVote": "45.139.134.139:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.139.134.139:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.139.134.139:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.28.8.62:8001",
      "gossip": "149.28.8.62:8000",
      "pubkey": "9gFxqsXbFyrKXUkqpAatonn47uYZ7sEZSnMxhzQoXrUJ",
      "pubsub": null,
      "tpuQuic": "64.130.53.11:5010",
      "tpuVote": "149.28.8.62:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "149.28.8.62:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.11:5011"
    },
    {
      "rpc": "206.223.226.213:18899",
      "tpu": null,
      "tvu": "206.223.226.213:8001",
      "gossip": "206.223.226.213:8000",
      "pubkey": "hnhCMmnrmod4rcyc3QRKkLEC9XnPTvYJ2gBvjgFiV4o",
      "pubsub": "206.223.226.213:18899",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "206.223.226.213:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "206.223.226.213:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.170:8001",
      "gossip": "64.130.40.170:8000",
      "pubkey": "privaEdSEmnMPGPoQACUkcDGkFBbTArVvsEGd7C5wUM",
      "pubsub": null,
      "tpuQuic": "64.130.41.137:9007",
      "tpuVote": "64.130.40.170:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.170:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.137:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "113.43.233.3:8002",
      "gossip": "113.43.233.3:8001",
      "pubkey": "8AkVj5aAtJ27tYXeq89cnSf68V43NarFHMx2iSDjZv7c",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "113.43.233.3:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "113.43.233.3:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": "5.199.164.220:18899",
      "tpu": null,
      "tvu": "5.199.164.220:8001",
      "gossip": "5.199.164.220:8000",
      "pubkey": "5zuNci3TV79w6zLoJZzbZujMvkVZb2FcSPhgv9aT24AK",
      "pubsub": "5.199.164.220:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "5.199.164.220:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "5.199.164.220:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.111.240.159:25000",
      "gossip": "23.111.240.159:8000",
      "pubkey": "7Zm1pE4FubFYZDyAQ5Labh3A4cxDcvve1s3WCRgEAZ84",
      "pubsub": null,
      "tpuQuic": "23.111.240.159:11228",
      "tpuVote": "23.111.240.159:25003",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "23.111.240.159:25008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.111.240.159:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "151.123.174.114:8001",
      "gossip": "151.123.174.114:8000",
      "pubkey": "fdzip81euDS8jEZHx5H1mn27zGVMLzkgpQuzYRBfBYG",
      "pubsub": null,
      "tpuQuic": "151.123.174.114:8009",
      "tpuVote": "151.123.174.114:8003",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "151.123.174.114:8018",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "151.123.174.114:8009"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.182:8002",
      "gossip": "51.81.43.228:8001",
      "pubkey": "D864KRzCawDkrtMr3zwZXiLbaRHP2TxX3odDoS2AqKNT",
      "pubsub": null,
      "tpuQuic": "51.81.43.228:8003",
      "tpuVote": "51.81.43.228:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.43.228:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.43.228:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.53.14:8002",
      "gossip": "198.13.134.53:8001",
      "pubkey": "22rU5yUmdVThrkoPieVNphqEyAtMQKmZxjwcD8v4bJDU",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "198.13.134.53:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.53:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.50.164.17:8001",
      "gossip": "38.50.164.17:8000",
      "pubkey": "EydLxzdWfD434DDxZYXkTcajvK5VKH7p6CofEDCRUkJ4",
      "pubsub": null,
      "tpuQuic": "64.130.46.155:5010",
      "tpuVote": "38.50.164.17:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "38.50.164.17:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.155:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.81:8000",
      "gossip": "84.32.103.81:8001",
      "pubkey": "9WzPWqKSqbE5PT9hMsmCDFjzpurAXEYCE9qrpVWp28KR",
      "pubsub": null,
      "tpuQuic": "84.32.103.81:11228",
      "tpuVote": "84.32.103.81:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "84.32.103.81:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.81:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "108.171.202.218:8000",
      "gossip": "108.171.202.218:8001",
      "pubkey": "5N9r2ne7dPgHtzeHC5ETJ3DAueKQiXSU8KAmEZrrojT7",
      "pubsub": null,
      "tpuQuic": "108.171.202.218:8002",
      "tpuVote": "108.171.202.218:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "108.171.202.218:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "108.171.202.218:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.109.46.35:8003",
      "gossip": "23.109.46.35:8001",
      "pubkey": "DNVZMSqeRH18Xa4MCTrb1MndNf3Npg4MEwqswo23eWkf",
      "pubsub": null,
      "tpuQuic": "23.109.46.35:9007",
      "tpuVote": "23.109.46.35:9001",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 1668064299,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.109.46.35:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.142.189:8003",
      "gossip": "104.204.142.189:8001",
      "pubkey": "13DmVBcyrSdsSsLWaKH9x1dwxDf48Wu5wprwxMmLshrk",
      "pubsub": null,
      "tpuQuic": "104.204.142.189:9007",
      "tpuVote": "104.204.142.189:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "104.204.142.189:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.142.189:9007"
    },
    {
      "rpc": "202.182.125.207:18899",
      "tpu": null,
      "tvu": "202.182.125.207:8001",
      "gossip": "202.182.125.207:8000",
      "pubkey": "3tm92VTxwyZ5MDhGoYR4tVTkwWYkzfam6hwBjauUACCk",
      "pubsub": "202.182.125.207:18899",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "202.182.125.207:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "202.182.125.207:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "91.237.141.128:8000",
      "gossip": "91.237.141.128:8001",
      "pubkey": "LunaowJnt875WWoqDkhHhE93SNYHa6tfFNVn1rqc57c",
      "pubsub": null,
      "tpuQuic": "64.130.46.155:5010",
      "tpuVote": "91.237.141.128:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "91.237.141.128:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.155:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "155.138.136.166:8001",
      "gossip": "155.138.136.166:8000",
      "pubkey": "EUDis6LJeJzDHTEBgfHGQyjHp63XZkGkx4E69xunC2Ej",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "155.138.136.166:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "155.138.136.166:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.42.231.232:8001",
      "gossip": "89.42.231.232:8000",
      "pubkey": "8GLRbAstsabZuZUx73AoyfGi1FRCWSUhRgMugFyofEz7",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "89.42.231.232:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "89.42.231.232:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": "149.28.144.120:18899",
      "tpu": null,
      "tvu": "149.28.144.120:8001",
      "gossip": "149.28.144.120:8000",
      "pubkey": "meshRrDTME9cL2FSQ9E56EncfkZ7vL8apwcCFsw3o6Y",
      "pubsub": "149.28.144.120:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "149.28.144.120:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "149.28.144.120:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.229.190.84:8001",
      "gossip": "185.229.190.84:8000",
      "pubkey": "Tri1F8B6YtjkBztGCwBNSLEZib1EAqMUEUM7dTT7ZG3",
      "pubsub": null,
      "tpuQuic": "63.254.167.197:5010",
      "tpuVote": "185.229.190.84:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "185.229.190.84:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.197:5011"
    },
    {
      "rpc": "206.223.226.203:18899",
      "tpu": null,
      "tvu": "206.223.226.203:8001",
      "gossip": "206.223.226.203:8000",
      "pubkey": "dmMwc4RazLHkvDZYrWAfbHQ6cViAvNa5szCJKaiun8S",
      "pubsub": "206.223.226.203:18899",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "206.223.226.203:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "206.223.226.203:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "169.155.44.188:8002",
      "gossip": "169.155.44.188:8001",
      "pubkey": "EUcJwf7jXskRE6NZBtFPVH2EedNvNYko8LL2WT62XctB",
      "pubsub": null,
      "tpuQuic": "169.155.45.11:11228",
      "tpuVote": "169.155.44.188:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "169.155.44.188:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "169.155.45.11:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.187.35.246:8001",
      "gossip": "5.187.35.246:8000",
      "pubkey": "As9NxA9bCfhrVLAFyGeWG5X5iLYPGhU3R7nLfX3tN6am",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "5.187.35.246:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "5.187.35.246:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.88.233.87:8001",
      "gossip": "103.88.233.87:8000",
      "pubkey": "G1bLKfyNm7zsmmYEL9dyxBvMtxpFcwy2s84bHDj2ZFUY",
      "pubsub": null,
      "tpuQuic": "103.88.233.87:11228",
      "tpuVote": "103.88.233.87:8004",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "103.88.233.87:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.88.233.87:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.53.20:8002",
      "gossip": "64.130.54.174:8001",
      "pubkey": "AicQr2zCWBLiBwt2r6o7iTemmtyE7q5pTKyuuupbXEQA",
      "pubsub": null,
      "tpuQuic": "198.73.57.238:9007",
      "tpuVote": "64.130.54.174:8005",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.174:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.73.57.238:9007"
    },
    {
      "rpc": "3.115.51.244:8899",
      "tpu": null,
      "tvu": "3.115.51.244:8001",
      "gossip": "3.115.51.244:8000",
      "pubkey": "G9vCpJUUSpEm4zPwzSNpDmZ8MGwLEbiSLV59EBzCGvzM",
      "pubsub": "3.115.51.244:8900",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "3.115.51.244:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "3.115.51.244:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.14:8003",
      "gossip": "198.13.134.14:8001",
      "pubkey": "A4hyMd3FyvUJSRafDUSwtLLaQcxRP4r1BRC9w2AJ1to2",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "63.254.167.199:5004",
      "version": "1.0.0",
      "clientId": "FireBAM",
      "featureSet": 1668064299,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "51.89.11.197:8001",
      "gossip": "51.89.11.197:8000",
      "pubkey": "E3mDbFMr8yZcCAZx5wPUFCRmLX31u8Nnj4jPoPc54h3F",
      "pubsub": null,
      "tpuQuic": "51.89.11.197:8002",
      "tpuVote": "51.89.11.197:8004",
      "version": "4.0.2",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "51.89.11.197:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.11.197:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.229.232.132:8001",
      "gossip": "46.229.232.132:8000",
      "pubkey": "qZMH9GWnnBkx7aM1h98iKSv2Lz5N78nwNSocAxDQrbP",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "46.229.232.132:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "46.229.232.132:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.176.66.190:8001",
      "gossip": "64.176.66.190:8000",
      "pubkey": "nodeEgRVkbYLAQePtMx2zCN7CGw7qRgzKMCBtjMfN1D",
      "pubsub": null,
      "tpuQuic": "88.216.192.50:5010",
      "tpuVote": "64.176.66.190:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "64.176.66.190:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.192.50:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "77.81.119.170:8603",
      "gossip": "77.81.119.170:8602",
      "pubkey": "3B2mGaZoFwzAnWCoZ4EAKdps4FbYbDKQ48jo8u1XWynU",
      "pubsub": null,
      "tpuQuic": "77.81.119.170:8604",
      "tpuVote": "77.81.119.170:8606",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "77.81.119.170:8611",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "77.81.119.170:8605"
    },
    {
      "rpc": "64.34.94.27:18899",
      "tpu": null,
      "tvu": "64.34.94.27:8001",
      "gossip": "64.34.94.27:8000",
      "pubkey": "vnd1Ps8w3fsi54qUMJxBhUWARES34Qw7JQXDZxvbysd",
      "pubsub": "64.34.94.27:18899",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "64.34.94.27:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.34.94.27:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.165.10:8100",
      "gossip": "5.199.165.10:8001",
      "pubkey": "5aD6KB8g4MPt3xJafmMmun86hHMDnoFiGbd5gYiMFZw7",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "5.199.165.10:8103",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "5.199.165.10:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.87.167:8001",
      "gossip": "64.34.87.167:8000",
      "pubkey": "BCJN2vZFAHDYmufBDcbD5UAQHSyerXfc6UQkgX3mSWuh",
      "pubsub": null,
      "tpuQuic": "64.34.87.167:8002",
      "tpuVote": "64.34.87.167:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.34.87.167:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.87.167:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.187.35.211:8001",
      "gossip": "5.187.35.211:8000",
      "pubkey": "HFTcVVrX93SJwYHAiiHAssb3c4zXqSsF4mNjg5arGPEj",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "5.187.35.211:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "5.187.35.211:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "195.189.98.82:9001",
      "gossip": "195.189.98.82:9000",
      "pubkey": "ABC1U4cf9DZMwqy8ktEr4WJj8VHmVBQibbC57gEJthwY",
      "pubsub": null,
      "tpuQuic": "195.189.98.82:9002",
      "tpuVote": "195.189.98.82:9004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "195.189.98.82:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "195.189.98.82:9003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.61.209.10:8001",
      "gossip": "5.61.209.10:8000",
      "pubkey": "7G4RfctwLLgqG4ZWfCirU8dfJd87mKQWgB4EHQRv8i7v",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "5.61.209.10:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "5.61.209.10:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.135.100:8000",
      "gossip": "45.139.135.100:8001",
      "pubkey": "shftkxnsXmqAkmLgz9Mn7bNB5Fr6mKgFc58kFHfVikj",
      "pubsub": null,
      "tpuQuic": "64.130.41.137:9007",
      "tpuVote": "45.139.135.100:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "45.139.135.100:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.137:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.215.182:8001",
      "gossip": "2.57.215.182:8000",
      "pubkey": "8augxYLUge2iWmitQMwbcBL5VQEpsM6aJdRofhwpnzyw",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "2.57.215.182:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "2.57.215.182:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.26:8001",
      "gossip": "45.154.33.26:8000",
      "pubkey": "RoYFUUD7QD9aQ34UCMcwfye8dC5YvJeXz2J3mmoy5S4",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "45.154.33.26:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.154.33.26:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.244.113.94:8001",
      "gossip": "103.244.113.94:8000",
      "pubkey": "RAuSNo4DRjo83uGhdgg4fPqYBVszi1KsrQGpqcPHK1D",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "103.244.113.94:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "103.244.113.94:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": "103.14.27.37:18899",
      "tpu": null,
      "tvu": "103.14.27.37:8001",
      "gossip": "103.14.27.37:8000",
      "pubkey": "jagBNeXYncnn1hzwSq1JJ16XhWTgQ7DCFVqndSJZ6vT",
      "pubsub": "103.14.27.37:18899",
      "tpuQuic": "103.14.27.37:8002",
      "tpuVote": "103.14.27.37:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.14.27.37:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.14.27.37:8003"
    },
    {
      "rpc": "178.250.154.158:8899",
      "tpu": null,
      "tvu": "178.250.154.158:8001",
      "gossip": "178.250.154.158:8000",
      "pubkey": "2VKu11f8zc3huqDQUN6WJTFpX32PgHpXXjf72P6YvYMd",
      "pubsub": "178.250.154.158:8900",
      "tpuQuic": "88.216.192.50:5010",
      "tpuVote": "178.250.154.158:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "178.250.154.158:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.192.50:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.186.229:8002",
      "gossip": "70.40.186.229:8001",
      "pubkey": "9ueKvL3WiLM4mNUZrfWqPTYY2Np5YwzFTYvAiPibx1Zq",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "70.40.186.229:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "70.40.186.229:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "148.72.141.82:8901",
      "gossip": "148.72.141.82:8900",
      "pubkey": "BCS95L5JHBWHvWkcEJBEF3BH5QHxKcPeaTgoYmHLvfFh",
      "pubsub": null,
      "tpuQuic": "64.130.54.221:5010",
      "tpuVote": "148.72.141.82:8904",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "148.72.141.82:8909",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.221:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.80.81:8001",
      "gossip": "64.34.80.81:8000",
      "pubkey": "DCdTPyDbXNHrmdv4ZyPPzEfY4mPAqH4hDPtowAteoNgv",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "64.34.80.81:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.34.80.81:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "3.66.100.134:8000",
      "gossip": "3.66.100.134:8001",
      "pubkey": "CeJjdkRwfqYjrb7ZgKgqTurxx88H6kZyRadJwNJBcQwC",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "3.66.100.134:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "3.66.100.134:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.202.63.79:8001",
      "gossip": "67.202.63.79:8000",
      "pubkey": "DRpbCBMxVnDK7maPM5tGv6MvB3v1sRMC86PZ8okm21hy",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "67.202.63.79:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "67.202.63.79:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": "64.130.43.206:8899",
      "tpu": null,
      "tvu": "64.130.43.206:8001",
      "gossip": "64.130.43.206:8000",
      "pubkey": "Atom7LRkdXj6MBoWJPgjaetrCMrgB9nnkQBYXTWE8Z3S",
      "pubsub": "64.130.43.206:8900",
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "64.130.43.206:8004",
      "version": "4.0.0",
      "clientId": "AgaveBam",
      "featureSet": 3718597879,
      "serveRepair": "64.130.43.206:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.150:8003",
      "gossip": "185.191.117.150:8001",
      "pubkey": "11AMA4mnNbsrPQeuoNN7uiZVJZtqEzQHrTfa5vnbcjk",
      "pubsub": null,
      "tpuQuic": "185.191.117.150:9007",
      "tpuVote": "185.191.117.150:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.150:8018",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.150:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "194.126.175.194:8001",
      "gossip": "194.126.175.194:8000",
      "pubkey": "EdGevanA2MZsDpxDXK6b36FH7RCcTuDZZRcc6MEyE9hy",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "194.126.175.194:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "194.126.175.194:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.142.220:8003",
      "gossip": "104.204.142.220:8001",
      "pubkey": "kREnNfJrPEHbrjSQDxmxZdGmN6hi7ewXZ3UZTURshrk",
      "pubsub": null,
      "tpuQuic": "104.204.142.220:9007",
      "tpuVote": "104.204.142.220:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "104.204.142.220:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.142.220:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.51:8002",
      "gossip": "64.130.51.51:8001",
      "pubkey": "ECeaWy82CxpeJQr3EG3XNmYXc9NrVeWDH5ag9Lt6TPVR",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "64.130.51.51:8005",
      "version": "4.0.0",
      "clientId": "AgaveBam",
      "featureSet": 3718597879,
      "serveRepair": "64.130.51.51:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "108.171.210.26:8003",
      "gossip": "108.171.210.26:8001",
      "pubkey": "soLStaCk5TiGCpeLKa9Fvv6f5JQGMa6S3uhLh826e9N",
      "pubsub": null,
      "tpuQuic": "64.130.53.43:9007",
      "tpuVote": "108.171.210.26:9001",
      "version": "0.912.40002",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "108.171.210.26:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.43:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.187.53:8001",
      "gossip": "70.40.187.53:8000",
      "pubkey": "8W8v28d1fBZE1fkaaHbowJM4hGZGnVHWNK1NyhUsob6Z",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "70.40.187.53:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "70.40.187.53:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.172.176:12001",
      "gossip": "5.199.172.176:12000",
      "pubkey": "7QQGNm3ptwinipDCyaCF7jY5katgmFUu1ieP2f7nwLpE",
      "pubsub": null,
      "tpuQuic": "5.199.172.176:12002",
      "tpuVote": "5.199.172.176:12004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "5.199.172.176:12009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.172.176:12003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.186.6:8002",
      "gossip": "70.40.186.6:8001",
      "pubkey": "G2TBEh2ahNGS9tGnuBNyDduNjyfUtGhMcssgRb8b6KfH",
      "pubsub": null,
      "tpuQuic": "70.40.186.6:8003",
      "tpuVote": "70.40.186.6:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "70.40.186.6:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.186.6:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.215.179:8001",
      "gossip": "2.57.215.179:8000",
      "pubkey": "CpdzCVzaR9gjFymmEVE8xHboJFHaDnimRZ448cMBs6Rn",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "2.57.215.179:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "2.57.215.179:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.166.162.138:12001",
      "gossip": "46.166.162.138:12000",
      "pubkey": "8uJiHDJ1b7UDQ4KFsQGJXK9nUCkokdKRJymg1Wy9nxvM",
      "pubsub": null,
      "tpuQuic": "88.216.192.50:5010",
      "tpuVote": "46.166.162.138:12004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "46.166.162.138:12009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.192.50:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.105.224.181:8001",
      "gossip": "86.105.224.181:8000",
      "pubkey": "AsMpvJ3DZ2Ydu1WTRMAyMH4QjSLiUG39rKzfzvtE1bWr",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "86.105.224.181:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "86.105.224.181:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.70:8001",
      "gossip": "64.130.42.70:8000",
      "pubkey": "7cVfgArCheMR6Cs4t6vz5rfnqd56vZq4ndaBrY5xkxXy",
      "pubsub": null,
      "tpuQuic": "64.130.42.70:8002",
      "tpuVote": "64.130.42.70:8004",
      "version": "4.0.2",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.70:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.70:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.53.52:8002",
      "gossip": "63.254.165.81:8001",
      "pubkey": "DUND26mEDfFeaPsVof3YvbXDRvpuQX7HMUJrLgEWzYw4",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "63.254.165.81:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "63.254.165.81:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.142.141:8003",
      "gossip": "104.204.142.141:8001",
      "pubkey": "12i8gndWWWMTRzJBFhnYkobNgZB3XMUUJq75HeUrshrk",
      "pubsub": null,
      "tpuQuic": "104.204.142.141:9007",
      "tpuVote": "104.204.142.141:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "104.204.142.141:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.142.141:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.126.13:8002",
      "gossip": "67.213.126.13:8001",
      "pubkey": "anza1rXDVhy1NfVNtsbT3kSBh2jgB1BGZUKuUibSAJd",
      "pubsub": null,
      "tpuQuic": "67.213.126.13:8003",
      "tpuVote": "67.213.126.13:8005",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "67.213.126.13:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.126.13:8004"
    },
    {
      "rpc": "151.123.174.242:18899",
      "tpu": null,
      "tvu": "151.123.174.242:8001",
      "gossip": "151.123.174.242:8000",
      "pubkey": "JC7bH7HSZoDhwggBXtRF31cVt71WiizY2J6YDDQfG5er",
      "pubsub": "151.123.174.242:18899",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "151.123.174.242:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "151.123.174.242:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "170.23.153.113:8001",
      "gossip": "170.23.153.113:8000",
      "pubkey": "GRT7yrpfF1TEvp3RmCzu5YZ74B4EueVMPg5NYtSiPwtD",
      "pubsub": null,
      "tpuQuic": "170.23.153.113:11228",
      "tpuVote": "170.23.153.113:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "170.23.153.113:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "170.23.153.113:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.84.193.5:8002",
      "gossip": "45.84.193.5:8001",
      "pubkey": "WUNoB9YQXmXXRcJsjY1G8PfVag5aAfnyGmFd6YwJVwp",
      "pubsub": null,
      "tpuQuic": "45.84.193.5:11228",
      "tpuVote": "45.84.193.5:8005",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "45.84.193.5:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.84.193.5:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.50:8001",
      "gossip": "64.130.57.50:8000",
      "pubkey": "JupmVLmA8RoyTUbTMMuTtoPWHEiNQobxgTeGTrPNkzT",
      "pubsub": null,
      "tpuQuic": "64.130.57.50:11228",
      "tpuVote": "64.130.57.50:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.57.50:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.50:11229"
    },
    {
      "rpc": "64.176.71.133:8899",
      "tpu": null,
      "tvu": "64.176.71.133:8001",
      "gossip": "64.176.71.133:8000",
      "pubkey": "2Rv9npqdWE1mLPsT1r2obn3xtKmA5afkxt8GsWeLnKoc",
      "pubsub": "64.176.71.133:8900",
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "64.176.71.133:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.176.71.133:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": "103.106.58.21:8899",
      "tpu": null,
      "tvu": "103.106.58.21:8003",
      "gossip": "103.106.58.21:8001",
      "pubkey": "xLabscif2DLnYg39rQThqi7A9E45L9qiysRZhmZ1ARE",
      "pubsub": "103.106.58.21:8900",
      "tpuQuic": "103.106.58.21:9007",
      "tpuVote": "103.106.58.21:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "103.106.58.21:10008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.106.58.21:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.28.91.139:8003",
      "gossip": "149.28.91.139:8001",
      "pubkey": "Ey3DkEVbfBxfWmkTsG7Hqj7jshYf5Zx9H8462Zjjkykf",
      "pubsub": null,
      "tpuQuic": "149.28.91.139:9007",
      "tpuVote": "149.28.91.139:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "149.28.91.139:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "149.28.91.139:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "138.226.224.71:8001",
      "gossip": "138.226.224.71:8000",
      "pubkey": "spur5CDwBvTZszvy1ozGjRc1x2TuDWo3VF4jrq7zgvD",
      "pubsub": null,
      "tpuQuic": "138.226.224.71:8002",
      "tpuVote": "138.226.224.71:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "138.226.224.71:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "138.226.224.71:8003"
    },
    {
      "rpc": "162.43.190.155:8899",
      "tpu": null,
      "tvu": "162.43.190.155:8001",
      "gossip": "162.43.190.155:8000",
      "pubkey": "CARBN9PY1Qej1aCg4885pfoYH8EHfjWuMy59pVa48ky",
      "pubsub": "162.43.190.155:8900",
      "tpuQuic": "162.43.190.155:8002",
      "tpuVote": "162.43.190.155:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "162.43.190.155:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.43.190.155:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "107.155.95.90:8001",
      "gossip": "107.155.95.90:8000",
      "pubkey": "ETcW7iuVraMKLMJayNCCsr9bLvKrJPDczy1CMVMPmXTc",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "107.155.95.90:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "107.155.95.90:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.141:8003",
      "gossip": "64.130.37.141:8001",
      "pubkey": "4SNKY7GCp7ohY4AawND5Cc2D71sWMWN3Uifo854yvtks",
      "pubsub": null,
      "tpuQuic": "64.130.37.141:9007",
      "tpuVote": "64.130.37.141:9001",
      "version": "0.913.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.141:8028",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.141:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.69:8000",
      "gossip": "70.40.185.69:15001",
      "pubkey": "3BeharBd3j4sKQp7Qze27JLQLd9AEEwGTX9TC7dXYSNw",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "70.40.185.69:8003",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.69:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.134.108.184:5556",
      "gossip": "45.134.108.184:5555",
      "pubkey": "nebu15XQKGpxzhhckADBX9PgvGN5qk9RRJCFLKc118w",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "45.134.108.184:5559",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.134.108.184:5564",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": "191.44.100.13:8899",
      "tpu": null,
      "tvu": "191.44.100.13:8001",
      "gossip": "191.44.100.13:8000",
      "pubkey": "E99w1XfS4UNM1xUKXWEuDmj8Mduy7u65jm2NCULTspSV",
      "pubsub": "191.44.100.13:8900",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "191.44.100.13:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "191.44.100.13:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.134.66.2:8003",
      "gossip": "185.134.66.2:8001",
      "pubkey": "NdMV1C3XMCRqSBwBtNmoUNnKctYh95Ug4xb6FSTcAWr",
      "pubsub": null,
      "tpuQuic": "185.134.66.2:9007",
      "tpuVote": "185.134.66.2:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "185.134.66.2:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.134.66.2:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.18.201.138:8001",
      "gossip": "216.18.201.138:8000",
      "pubkey": "3cZSHGfNdaULpFAvGbWbxpVwzXB4gHdk8NFucPNR5pgA",
      "pubsub": null,
      "tpuQuic": "216.18.201.138:8002",
      "tpuVote": "216.18.201.138:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.18.201.138:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.18.201.138:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.54.153.251:8003",
      "gossip": "86.54.153.251:8001",
      "pubkey": "VQwCCSfW3o5NDx7n5FBr9SoYiLXVgetstHvaWBvv2YH",
      "pubsub": null,
      "tpuQuic": "86.54.153.251:8037",
      "tpuVote": "86.54.153.251:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "86.54.153.251:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.54.153.251:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.166.162.220:12001",
      "gossip": "46.166.162.220:12000",
      "pubkey": "HaLanfo94ezLc3JZ55qqxr7W3qbe1PprJyv2uEtriEqN",
      "pubsub": null,
      "tpuQuic": "88.216.192.50:5010",
      "tpuVote": "46.166.162.220:12004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "46.166.162.220:12009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.192.50:5011"
    },
    {
      "rpc": "177.54.154.11:18899",
      "tpu": null,
      "tvu": "177.54.154.11:8002",
      "gossip": "177.54.154.11:8001",
      "pubkey": "GvfaiJUhNCRZGVGumsEF1eHDb8JpAeFAyHSrTifyhrbt",
      "pubsub": "177.54.154.11:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "177.54.154.11:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "177.54.154.11:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": "94.72.181.230:8899",
      "tpu": null,
      "tvu": "94.72.181.230:8001",
      "gossip": "94.72.181.230:8000",
      "pubkey": "Frog1Fks1AVN8ywFH3HTFeYojq6LQqoEPzgQFx2Kz5Ch",
      "pubsub": "94.72.181.230:8900",
      "tpuQuic": "64.130.46.155:5010",
      "tpuVote": "94.72.181.230:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "94.72.181.230:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.155:5011"
    },
    {
      "rpc": "103.14.27.97:8899",
      "tpu": null,
      "tvu": "103.14.27.97:8001",
      "gossip": "103.14.27.97:8000",
      "pubkey": "DefiihS7gLkj6xLjjhcr87bFuwpVVNYpeNBaBeFe56CY",
      "pubsub": "103.14.27.97:8900",
      "tpuQuic": "103.14.27.97:8002",
      "tpuVote": "103.14.27.97:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.14.27.97:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.14.27.97:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.122.9:8001",
      "gossip": "67.213.122.9:8000",
      "pubkey": "sbidYi7fbif6qNsMpwBKvyF5DKcLCbjaegpADsKqNux",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "67.213.122.9:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "67.213.122.9:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.58.236.102:8001",
      "gossip": "64.58.236.102:8000",
      "pubkey": "BitokuDHQiAhpUKrwx1VssAAoW5Rst8zB6gpfoaxM3Kh",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "64.58.236.102:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.58.236.102:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.140.94:8000",
      "gossip": "104.204.140.94:8001",
      "pubkey": "fhsM2sxME8cHrrk3qvtMsRRDv5AoLFja7NjNnHeYZxe",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "104.204.140.94:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "104.204.140.94:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.208.234.128:8001",
      "gossip": "67.208.234.128:8000",
      "pubkey": "krakeNd6ednDPEXxHAmoBs1qKVM8kLg79PvWF2mhXV1",
      "pubsub": null,
      "tpuQuic": "64.130.61.195:5010",
      "tpuVote": "67.208.234.128:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "67.208.234.128:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.195:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "155.2.223.11:8001",
      "gossip": "155.2.223.11:8000",
      "pubkey": "GoeW4aFK4dGoekJySgUynWDxBZiQJqm8GDAF4H53tDK9",
      "pubsub": null,
      "tpuQuic": "64.130.42.138:9007",
      "tpuVote": "155.2.223.11:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "155.2.223.11:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.138:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.248.222.157:8000",
      "gossip": "109.248.222.157:8001",
      "pubkey": "DiFeTctQSaNczJNmZ5121kYqLaBe9wDpM9sjCzTELJLE",
      "pubsub": null,
      "tpuQuic": "109.248.222.157:8002",
      "tpuVote": "109.248.222.157:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.248.222.157:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.248.222.157:8003"
    },
    {
      "rpc": "151.123.174.206:8899",
      "tpu": null,
      "tvu": "151.123.174.206:8001",
      "gossip": "151.123.174.206:8000",
      "pubkey": "8uPW9msN75rfaKiwy8y8NxEX5zSk2WejtVv5YhZr3jCo",
      "pubsub": "151.123.174.206:8900",
      "tpuQuic": "151.123.174.206:8002",
      "tpuVote": "151.123.174.206:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "151.123.174.206:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "151.123.174.206:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "108.171.210.194:8001",
      "gossip": "108.171.210.194:8000",
      "pubkey": "6NDen7aDi65apHo8m1Vea4nuS6LyjQeM6pDNqcW4Q5Pg",
      "pubsub": null,
      "tpuQuic": "64.130.53.11:5010",
      "tpuVote": "108.171.210.194:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "108.171.210.194:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.11:5011"
    },
    {
      "rpc": "103.70.2.92:8899",
      "tpu": null,
      "tvu": "103.70.2.92:8001",
      "gossip": "103.70.2.92:8000",
      "pubkey": "7mF8NZJdREuM1uwYcvKffuY9QJBEoHhNp4hZ4NS2fuXW",
      "pubsub": "103.70.2.92:8900",
      "tpuQuic": "103.70.2.92:8002",
      "tpuVote": "103.70.2.92:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.70.2.92:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.70.2.92:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.186.46:12001",
      "gossip": "84.32.186.46:12000",
      "pubkey": "GSTampk6BJRKSDkzhaMM49R7qRx98MTPYYWvKbp83XKc",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "84.32.186.46:12004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "84.32.186.46:12009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": "91.142.85.11:8899",
      "tpu": null,
      "tvu": "91.142.85.11:8001",
      "gossip": "91.142.85.11:8000",
      "pubkey": "6gL3uHvuUjaPp9mTBf2VZ4tpKiYhbWyPrAPboGByzEHd",
      "pubsub": "91.142.85.11:8900",
      "tpuQuic": "88.216.192.50:5010",
      "tpuVote": "91.142.85.11:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "91.142.85.11:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.192.50:5011"
    },
    {
      "rpc": "177.54.154.223:18899",
      "tpu": null,
      "tvu": "177.54.154.223:8001",
      "gossip": "177.54.154.223:8000",
      "pubkey": "adre1Xia7ekGsEqNgHeFc7MYwkfzTQNeJgQmZ2agAKZ",
      "pubsub": "177.54.154.223:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "177.54.154.223:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "177.54.154.223:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.53.67:8002",
      "gossip": "64.130.43.204:8001",
      "pubkey": "76rcGHdPvgs8G1XrzCXUTWtwgT59AFDvpB4VbTS2TBBJ",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "64.130.43.204:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.204:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.44.211.18:8001",
      "gossip": "89.44.211.18:8000",
      "pubkey": "5P35CJVKU15Rrh5M6EVkre23EyA3K34kAut2GXhHKM7W",
      "pubsub": null,
      "tpuQuic": "89.44.211.18:8002",
      "tpuVote": "89.44.211.18:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "89.44.211.18:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.44.211.18:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.26.11.103:10001",
      "gossip": "185.26.11.103:10000",
      "pubkey": "7pR7t5axFfkg2VZB1uAuFNUvpAeowq2v15J4gw5MmHTB",
      "pubsub": null,
      "tpuQuic": "64.130.46.155:5010",
      "tpuVote": "185.26.11.103:10004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "185.26.11.103:10009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.155:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.19.43.156:8002",
      "gossip": "162.19.43.156:8001",
      "pubkey": "FCWkGAHDWK41ANjiaoPudkCZRkvTecaEkoZQugezUnpr",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "162.19.43.156:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "162.19.43.156:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.70.12:8002",
      "gossip": "84.32.70.12:8001",
      "pubkey": "Lake8NXDThihebhxS3Js7mFnj9fthmus93zEdsFNrsL",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "84.32.70.12:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "84.32.70.12:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.137.215.167:8001",
      "gossip": "45.137.215.167:8000",
      "pubkey": "MargusJeV9bkePFLWbbzRNsMVo3Re6h9wKB5Ago8Tfj",
      "pubsub": null,
      "tpuQuic": "45.139.132.63:11228",
      "tpuVote": "45.137.215.167:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.137.215.167:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.139.132.63:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.17.118.10:8001",
      "gossip": "198.17.118.10:8000",
      "pubkey": "7d7x84jiVtqpz9NK88ocLmu4L15uhdnzMEDmo8Py8oVi",
      "pubsub": null,
      "tpuQuic": "198.17.118.10:8002",
      "tpuVote": "198.17.118.10:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.17.118.10:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.17.118.10:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.222.152:8016",
      "gossip": "88.216.222.152:8015",
      "pubkey": "57i31UEyDg4koaZMZ1wAHbYuezXv3AVaHtvJgJarxt3f",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "88.216.222.152:8019",
      "version": "4.0.0-rc.0",
      "clientId": "AgaveBam",
      "featureSet": 767961353,
      "serveRepair": "88.216.222.152:8024",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.187.35.213:8001",
      "gossip": "5.187.35.213:8000",
      "pubkey": "6pEtDovpyd1zUMYPuNhMCPU37sUTEAtzzgoVVAh1G1JL",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "5.187.35.213:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "5.187.35.213:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.189.47.155:8003",
      "gossip": "185.189.47.155:8001",
      "pubkey": "2mMGsb5uy1Q4Dvezr8HK2E8SJoChcb2X7b61tJPaVHHd",
      "pubsub": null,
      "tpuQuic": "64.130.42.138:9007",
      "tpuVote": "185.189.47.155:9001",
      "version": "0.911.40002",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "185.189.47.155:8107",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.138:9007"
    },
    {
      "rpc": "67.213.127.83:8899",
      "tpu": null,
      "tvu": "67.213.127.83:8001",
      "gossip": "67.213.127.83:8000",
      "pubkey": "EkvdKhULbMFqjKBKotAzGi3kwMvMpYNDKJXXQQmi6C1f",
      "pubsub": "67.213.127.83:8900",
      "tpuQuic": "64.130.42.138:9007",
      "tpuVote": "67.213.127.83:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.127.83:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.138:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.167.235.182:8001",
      "gossip": "103.167.235.182:8000",
      "pubkey": "YuRBAsy9Stw1u46A8dMp7WQVBFweLP1PKuYibzYAMmQ",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "103.167.235.182:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "103.167.235.182:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.73.201.14:8001",
      "gossip": "208.73.201.14:8000",
      "pubkey": "rssaJ2iKcE9QWsFYRZr8Q66TQh5bRk9DxYrzxGMzWQr",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "208.73.201.14:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "208.73.201.14:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": "64.130.43.208:8899",
      "tpu": null,
      "tvu": "64.130.43.208:8001",
      "gossip": "64.130.43.208:8000",
      "pubkey": "65pHd5P2VrehonT1cdJ2JUnq5wi3WUgfL3A8RhYH7Kg7",
      "pubsub": "64.130.43.208:8900",
      "tpuQuic": "64.130.42.138:9007",
      "tpuVote": "64.130.43.208:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.208:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.138:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.197.108:8000",
      "gossip": "88.216.197.108:8001",
      "pubkey": "D2RV1q6FgePVVjrMa7AMzVbvvAeg5oS7TAV7qdNKSDsX",
      "pubsub": null,
      "tpuQuic": "88.216.197.108:11228",
      "tpuVote": "88.216.197.108:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "88.216.197.108:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.197.108:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.109.165.34:8100",
      "gossip": "109.109.165.34:8001",
      "pubkey": "MBVyz9s72WSfUmbr1S8fgHjDJQkPs1Q4Wxi6A2Mees9",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "109.109.165.34:8103",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "109.109.165.34:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "137.220.55.224:8900",
      "gossip": "137.220.55.224:8001",
      "pubkey": "2zykwzzo1pd3H2oSj5j5SRLTvmpa9Nr2S2Bh8tTVd5Tq",
      "pubsub": null,
      "tpuQuic": "64.130.54.221:5010",
      "tpuVote": "137.220.55.224:8903",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "137.220.55.224:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.221:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "134.65.193.112:8002",
      "gossip": "134.65.193.112:8001",
      "pubkey": "6xWLi1TDSh65fWsSqE1zdvANTSuVDRMx4ghsGJwgunS8",
      "pubsub": null,
      "tpuQuic": "164.152.161.197:11228",
      "tpuVote": "134.65.193.112:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "134.65.193.112:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "164.152.161.197:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.92.24.106:8003",
      "gossip": "38.92.24.106:8001",
      "pubkey": "ppppoqHcHVzigV6SK4856BAsNxhTAi32hqQQWrziyHE",
      "pubsub": null,
      "tpuQuic": "38.92.24.106:9007",
      "tpuVote": "38.92.24.106:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "38.92.24.106:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.92.24.106:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "37.72.171.110:9001",
      "gossip": "37.72.171.110:9000",
      "pubkey": "HzrEstnLfzsijhaD6z5frkSE2vWZEH5EUfn3bU9swo1f",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "37.72.171.110:9004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "37.72.171.110:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.127.33:8001",
      "gossip": "67.213.127.33:8000",
      "pubkey": "ciTyjzN9iyobidMycjyqRRM7vXAHXkFzH3m8vEr6cQj",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "67.213.127.33:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "67.213.127.33:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.238.67.40:8003",
      "gossip": "216.238.67.40:8001",
      "pubkey": "HyperSPG8w4jgdHgmA8ExrhRL1L1BriRTHD9UFdXJUud",
      "pubsub": null,
      "tpuQuic": "216.238.67.40:9007",
      "tpuVote": "216.238.67.40:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "216.238.67.40:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.238.67.40:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.201:9002",
      "gossip": "64.130.32.201:9001",
      "pubkey": "2Le6TjeEescF87qDA8Ftdz6U8Kq6SNVwoLJLhzBCHUr5",
      "pubsub": null,
      "tpuQuic": "64.130.32.201:9003",
      "tpuVote": "64.130.32.201:9005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.32.201:9010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.201:9004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.134.108.222:8001",
      "gossip": "45.134.108.222:8000",
      "pubkey": "1KXvrkPXwkGF6NK1zyzVuJqbXfpenPVPP6hoiK9bsK3",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "45.134.108.222:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "45.134.108.222:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.165.43:8001",
      "gossip": "5.199.165.43:8002",
      "pubkey": "CTwsruptUccEtZGNxBDbuusHYxkBX3P6ndrxVjSG213y",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "5.199.165.43:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "5.199.165.43:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.46.222.140:8001",
      "gossip": "38.46.222.140:8000",
      "pubkey": "CjmXSapt1ouz3CZzgkRJckBEwMSo5fVdVrizLeRscwYD",
      "pubsub": null,
      "tpuQuic": "64.130.53.11:5010",
      "tpuVote": "38.46.222.140:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "38.46.222.140:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.11:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.169:8002",
      "gossip": "51.75.164.181:8001",
      "pubkey": "4gHLPycWp4YDbYrevDF3G65CQ9k4zaT66jkYJBWysLrW",
      "pubsub": null,
      "tpuQuic": "51.75.164.181:8003",
      "tpuVote": "51.75.164.181:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.75.164.181:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.75.164.181:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.166.162.136:12001",
      "gossip": "46.166.162.136:12000",
      "pubkey": "58KprHKFNHgH1Cvo4QwxWkDeJNaSQVteCoAAFUWjtESn",
      "pubsub": null,
      "tpuQuic": "88.216.192.50:5010",
      "tpuVote": "46.166.162.136:12004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "46.166.162.136:12009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.192.50:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.215.186:8000",
      "gossip": "2.57.215.186:8001",
      "pubkey": "sZAqxCSN5kkVfG2s65Bje4jzCkD2aLyk21qU95PMf2Y",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "2.57.215.186:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "2.57.215.186:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.222.158:8001",
      "gossip": "88.216.222.158:8000",
      "pubkey": "FNTPSUuRpDoJx1hwFmB5ncNLLMX42aE83P4hsFYUfNRL",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "88.216.222.158:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "88.216.222.158:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.104.157:8001",
      "gossip": "85.195.104.157:8000",
      "pubkey": "6WgdYhhGE53WrZ7ywJA15hBVkw7CRbQ8yDBBTwmBtAHN",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "85.195.104.157:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "85.195.104.157:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "79.127.159.62:8003",
      "gossip": "79.127.159.62:8001",
      "pubkey": "EKgSCR3ahdypkxXcBY43ZNxdmyZqPkKNPey3rwKjqbz7",
      "pubsub": null,
      "tpuQuic": "79.127.159.62:9007",
      "tpuVote": "79.127.159.62:9001",
      "version": "1.0.0",
      "clientId": "Firedancer",
      "featureSet": 1668064299,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "79.127.159.62:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.141.10:8001",
      "gossip": "104.204.141.10:8000",
      "pubkey": "2t53LvZfskcpXkdwLaBnfZLbNgyVHPu2BNFpcRBaEBhM",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "104.204.141.10:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "104.204.141.10:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.36.128:8021",
      "gossip": "57.129.36.128:8001",
      "pubkey": "HwRia5HUmQcvundpC6iFqwfK4iVNKRSmYm1NKsrMkZBC",
      "pubsub": null,
      "tpuQuic": "57.129.36.128:8022",
      "tpuVote": "57.129.36.128:8024",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "57.129.36.128:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.36.128:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.28.206.219:8900",
      "gossip": "149.28.206.219:8001",
      "pubkey": "5ysfTZ42VT1TjnjzQShZSrix7wdVtjXwssocSeYKDs5d",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "149.28.206.219:8903",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "149.28.206.219:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.77.70.13:8001",
      "gossip": "45.77.70.13:8000",
      "pubkey": "nSGZ3tv2UhskkPqiB666yDVj7PTi9qKgDqvjHyw5JgM",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "45.77.70.13:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.77.70.13:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "52.193.147.191:8000",
      "gossip": "52.193.147.191:8001",
      "pubkey": "CVGwNaC1FaG95hRBHUuieDLyQU2hJuGhPduu2cMyHnw6",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "52.193.147.191:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "52.193.147.191:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.53.148:8002",
      "gossip": "198.13.134.54:8001",
      "pubkey": "HbidP4hpQdwhkzrxder3x3VNPt6DQnE25gFG46napD2p",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "198.13.134.54:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.54:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": "206.223.226.217:18899",
      "tpu": null,
      "tvu": "206.223.226.217:8001",
      "gossip": "206.223.226.217:8000",
      "pubkey": "dst2u7mXMyDvb14cSErRNA1mxH1d5VXbSXgZ3DKE9xH",
      "pubsub": "206.223.226.217:18899",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "206.223.226.217:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "206.223.226.217:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.176.44.152:8002",
      "gossip": "64.176.44.152:8001",
      "pubkey": "A23LfQn6khffj2hGhGfXr6P52W2pxrVcCaHVQLYQgiX2",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "64.176.44.152:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.176.44.152:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": "177.54.154.233:18899",
      "tpu": null,
      "tvu": "177.54.154.233:8001",
      "gossip": "177.54.154.233:8000",
      "pubkey": "G1eAmANVWf6ZeoxG4aMbS1APauyEDHqLxHFytzk5hZqN",
      "pubsub": "177.54.154.233:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "177.54.154.233:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "177.54.154.233:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "34.217.213.76:37001",
      "gossip": "34.217.213.76:37000",
      "pubkey": "5Cchr1XGEg7dbBXByV5NY2ad8jfxAM7HA3x8D56rq9Ux",
      "pubsub": null,
      "tpuQuic": "34.217.213.76:37002",
      "tpuVote": "34.217.213.76:37004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "34.217.213.76:37009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "34.217.213.76:37003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.52:8001",
      "gossip": "64.130.40.52:8000",
      "pubkey": "BGAjnivVWqLqByqCVT9dSyPUFicvyJrz7vRvrvui3SEk",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "64.130.40.52:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.52:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": "103.14.27.39:8899",
      "tpu": null,
      "tvu": "103.14.27.39:8001",
      "gossip": "103.14.27.39:8000",
      "pubkey": "Pid6HQnMCFb9izqX9i7X6ePdUPieGmjHoPxC1Jfooix",
      "pubsub": "103.14.27.39:8900",
      "tpuQuic": "103.14.27.39:8002",
      "tpuVote": "103.14.27.39:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.14.27.39:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.14.27.39:8003"
    },
    {
      "rpc": "160.202.131.105:8899",
      "tpu": null,
      "tvu": "160.202.131.105:8001",
      "gossip": "160.202.131.105:8000",
      "pubkey": "AqyRvpjjSN6jWYPxijoJwhmKwJFk6fRYDh9fQZHcJ2o7",
      "pubsub": "160.202.131.105:8900",
      "tpuQuic": "64.130.41.137:9007",
      "tpuVote": "160.202.131.105:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "160.202.131.105:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.137:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "62.113.194.103:8001",
      "gossip": "62.113.194.103:8000",
      "pubkey": "FphFJA451qptiGyCeCN3xvrDi8cApGAnyR5vw2KxxQ1q",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "62.113.194.103:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "62.113.194.103:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.222.108.225:8001",
      "gossip": "89.222.108.225:8000",
      "pubkey": "8cnksBVjDPspn3AvmxJd8JKUdh4uWDDXzDemPmDctaHi",
      "pubsub": null,
      "tpuQuic": "89.222.108.225:8002",
      "tpuVote": "89.222.108.225:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "89.222.108.225:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.222.108.225:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.53.44:8002",
      "gossip": "63.254.165.79:8001",
      "pubkey": "2GUnfxZavKoPfS9s3VSEjaWDzB3vNf5RojUhprCS1rSx",
      "pubsub": null,
      "tpuQuic": "63.254.165.79:8003",
      "tpuVote": "63.254.165.79:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "63.254.165.79:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.165.79:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.239.35.201:8001",
      "gossip": "64.239.35.201:8000",
      "pubkey": "BUokhb8pPF9MZuzW3rHLr6jzakgcz3NDq2PZkpiVv3jb",
      "pubsub": null,
      "tpuQuic": "64.130.41.137:9007",
      "tpuVote": "64.239.35.201:8003",
      "version": "0.911.40002",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.239.35.201:8018",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.137:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.38.11:8002",
      "gossip": "64.130.43.217:8001",
      "pubkey": "DF1owXYZ1fk5vWyHJ8s1cJeAozgkqsi1JUVqvktqrpwd",
      "pubsub": null,
      "tpuQuic": "64.130.43.217:8002",
      "tpuVote": "64.130.43.217:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.217:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.217:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.105.224.92:8001",
      "gossip": "86.105.224.92:8000",
      "pubkey": "91oPXTs2oq8VvJpQ5TnvXakFGnnJSpEB6HFWDtSctwMt",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "86.105.224.92:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "86.105.224.92:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": "64.130.40.180:8899",
      "tpu": null,
      "tvu": "64.130.40.180:8000",
      "gossip": "64.130.40.180:8901",
      "pubkey": "HDxxzxzHnkGTQLGN1DpVvByiNapmrjztt7C7xzhnrqTn",
      "pubsub": "64.130.40.180:8900",
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "64.130.40.180:8003",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.180:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": "198.13.140.73:8899",
      "tpu": null,
      "tvu": "198.13.140.73:8030",
      "gossip": "198.13.140.73:8001",
      "pubkey": "EvnRmnMrd69kFdbLMxWkTn1icZ7DCceRhvmb2SJXqDo4",
      "pubsub": "198.13.140.73:8900",
      "tpuQuic": "198.13.140.73:9007",
      "tpuVote": "198.13.140.73:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "198.13.140.73:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.73:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "144.202.119.249:8001",
      "gossip": "144.202.119.249:8000",
      "pubkey": "Bs19Z9SokV1s46jutN9tqqaCgYf1GsVyyytVfkzwn9qK",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "144.202.119.249:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "144.202.119.249:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.251.3.179:8021",
      "gossip": "72.251.3.179:8001",
      "pubkey": "8tjFeSApQ85ThoQXT28acfF2KUfQr3TvTdirSkzNnYC7",
      "pubsub": null,
      "tpuQuic": "72.251.3.179:11228",
      "tpuVote": "72.251.3.179:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "72.251.3.179:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.251.3.179:11229"
    },
    {
      "rpc": "64.130.47.154:8899",
      "tpu": null,
      "tvu": "64.130.47.154:8001",
      "gossip": "64.130.47.154:8000",
      "pubkey": "BtsmiEEvnSuUnKxqXj2PZRYpPJAc7C34mGz8gtJ1DAaH",
      "pubsub": "64.130.47.154:8900",
      "tpuQuic": "64.130.41.137:9007",
      "tpuVote": "64.130.47.154:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.47.154:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.137:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "155.138.145.139:8002",
      "gossip": "155.138.145.139:8001",
      "pubkey": "1ggyZGbYtEo1WrV1kmXfnvhPeSPxrYAXoDBeApnszLT",
      "pubsub": null,
      "tpuQuic": "155.138.145.139:8003",
      "tpuVote": "155.138.145.139:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "155.138.145.139:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "155.138.145.139:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.28.232.29:8001",
      "gossip": "149.28.232.29:8000",
      "pubkey": "3Rv6ZVGUuRczP76322LyhTTYw2iM4avV4B5xFJocQJer",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "149.28.232.29:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "149.28.232.29:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "151.123.174.30:8101",
      "gossip": "151.123.174.30:8100",
      "pubkey": "EPFZFVrXuveEQar9LaEkt5kDRPMnbvK54qu5FwCxpkcy",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "151.123.174.30:8104",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "151.123.174.30:8109",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.228:9002",
      "gossip": "208.91.110.228:9001",
      "pubkey": "Xoir1BnQX9TbEvon9HRbD8tkjcD9dorsxmNjZAV64Re",
      "pubsub": null,
      "tpuQuic": "208.91.110.228:9003",
      "tpuVote": "208.91.110.228:9005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "208.91.110.228:9010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.228:9004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "192.69.194.82:9009",
      "gossip": "192.69.194.82:9100",
      "pubkey": "zeroT6PTAEjipvZuACTh1mbGCqTHgA6i1ped9DcuidX",
      "pubsub": null,
      "tpuQuic": "198.73.57.238:9007",
      "tpuVote": "192.69.194.82:9001",
      "version": "0.912.40003",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "192.69.194.82:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.73.57.238:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.3:8001",
      "gossip": "67.213.121.3:8000",
      "pubkey": "5HCTsoKM7vwjubSZSyVWChaHQ9sNNRB1d2SuvL3eZ6Y6",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "67.213.121.3:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "67.213.121.3:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.251.11.141:8021",
      "gossip": "72.251.11.141:8001",
      "pubkey": "Fd7btgySsrjuo25CJCj7oE7VPMyezDhnx7pZkj2v69Nk",
      "pubsub": null,
      "tpuQuic": "72.251.11.141:8022",
      "tpuVote": "72.251.11.141:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "72.251.11.141:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.251.11.141:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.61.209.11:8001",
      "gossip": "5.61.209.11:8000",
      "pubkey": "DZKTNGR3r4Akj3G42ReZatKhkmgEXoZjk5Ed2tFwRyqm",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "5.61.209.11:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "5.61.209.11:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.181:8002",
      "gossip": "64.130.32.181:8001",
      "pubkey": "BULKzVM41WAyQZfL34vxqdsYwEYH9mJAJyzRS4xraf8b",
      "pubsub": null,
      "tpuQuic": "64.130.32.181:8003",
      "tpuVote": "64.130.32.181:8005",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.32.181:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.181:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.189.47.161:8001",
      "gossip": "185.189.47.161:8000",
      "pubkey": "7ZjHeeYEesmBs4N6aDvCQimKdtJX2bs5boXpJmpG2bZJ",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "185.189.47.161:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "185.189.47.161:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.132:8888",
      "gossip": "198.13.141.36:8000",
      "pubkey": "6mAMVKePFTCa3Liw6a62f2mN6Pr6Dy4J5FKo4abeU13r",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.84.167:8901",
      "gossip": "85.195.84.167:8900",
      "pubkey": "BhNnboEZb3mKkVADMH11cYGWCqefAfmhzx5rU4eRTKGY",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "85.195.84.167:8904",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "85.195.84.167:8909",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.238.77.151:8003",
      "gossip": "216.238.77.151:8001",
      "pubkey": "mastWEbKEMjvBCd1uaUBpNjWcfSPhXMWnH9tTrgzn1g",
      "pubsub": null,
      "tpuQuic": "216.238.77.151:9007",
      "tpuVote": "216.238.77.151:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "216.238.77.151:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.238.77.151:9007"
    },
    {
      "rpc": "103.88.233.21:8899",
      "tpu": null,
      "tvu": "103.88.233.21:8001",
      "gossip": "103.88.233.21:8000",
      "pubkey": "mALL2W6DUgDDtcyurC9v5YTF2CMMeuRwPBkf6tEoG3y",
      "pubsub": "103.88.233.21:8900",
      "tpuQuic": "103.88.233.21:8002",
      "tpuVote": "103.88.233.21:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.88.233.21:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.88.233.21:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "152.236.8.85:8000",
      "gossip": "152.236.8.85:8001",
      "pubkey": "BaDhUB1eWfunwD21Tu3WywyYQ9wZx5hS9WXeHHNGZUPy",
      "pubsub": null,
      "tpuQuic": "152.236.8.85:8002",
      "tpuVote": "152.236.8.85:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "152.236.8.85:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "152.236.8.85:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.64.75:8000",
      "gossip": "84.32.64.75:8001",
      "pubkey": "GK2YYwmQk58xA2k2SeugY3i334SJVViqTT8sT5wim3Dk",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "84.32.64.75:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "84.32.64.75:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": "64.130.61.106:8899",
      "tpu": null,
      "tvu": "64.130.61.106:8001",
      "gossip": "64.130.61.106:8000",
      "pubkey": "6aDs9tUm2gErcPn2c1TZnp5cu2bQV9BzyuwW4baWQYd4",
      "pubsub": "64.130.61.106:8900",
      "tpuQuic": "64.130.61.195:5010",
      "tpuVote": "64.130.61.106:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.130.61.106:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.195:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.184.198:8001",
      "gossip": "70.40.184.198:8000",
      "pubkey": "9xcXe4WRAfbVoVgQmFD5xgFHioL9dD7c74pQZ7PeczT",
      "pubsub": null,
      "tpuQuic": "70.40.184.198:8002",
      "tpuVote": "70.40.184.198:8004",
      "version": "4.0.3",
      "clientId": "Raiku",
      "featureSet": 1878484565,
      "serveRepair": "70.40.184.198:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.184.198:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.166.162.211:12001",
      "gossip": "46.166.162.211:12000",
      "pubkey": "FWwwP9tNttSy9dJFxwf6ebXWfc6VJXqFNMTccrMiLFTH",
      "pubsub": null,
      "tpuQuic": "88.216.192.50:5010",
      "tpuVote": "46.166.162.211:12004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "46.166.162.211:12009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.192.50:5011"
    },
    {
      "rpc": "103.106.58.73:18899",
      "tpu": null,
      "tvu": "103.106.58.73:8001",
      "gossip": "103.106.58.73:8000",
      "pubkey": "ReFiqMfGnc7tW8WQtFFcJRPZSDAWDBnAsdoFYF2QnfR",
      "pubsub": "103.106.58.73:18899",
      "tpuQuic": "103.106.58.73:8002",
      "tpuVote": "103.106.58.73:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.106.58.73:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.106.58.73:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.53.162:8002",
      "gossip": "64.130.44.125:8001",
      "pubkey": "5EhGYUyQNrxgUbuYF4vbL2SZDT6RMfhq3yjeyevvULeC",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "64.130.44.125:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.125:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "151.123.174.50:8001",
      "gossip": "151.123.174.50:8000",
      "pubkey": "6c6RrC9TWNgiVXnbZ6hehNuhyh81pZK1yAj5w2nXZTwi",
      "pubsub": null,
      "tpuQuic": "151.123.174.50:8002",
      "tpuVote": "151.123.174.50:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "151.123.174.50:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "151.123.174.50:8003"
    },
    {
      "rpc": "191.44.100.10:18899",
      "tpu": null,
      "tvu": "191.44.100.10:8001",
      "gossip": "191.44.100.10:8000",
      "pubkey": "LiFiDJwJjW98MB8wxcnXpafKYsuz1hwpUkuszkERiX6",
      "pubsub": "191.44.100.10:18899",
      "tpuQuic": "191.44.100.10:8002",
      "tpuVote": "191.44.100.10:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "191.44.100.10:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "191.44.100.10:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.239.35.200:8001",
      "gossip": "64.239.35.200:8000",
      "pubkey": "aXiomFkk6VzXaBhPuhMqTLZZguCFzzbyP9LTtZ7ZHLQ",
      "pubsub": null,
      "tpuQuic": "64.130.41.137:9007",
      "tpuVote": "64.239.35.200:8003",
      "version": "0.911.40002",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.239.35.200:8018",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.137:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "207.148.31.63:8001",
      "gossip": "207.148.31.63:8000",
      "pubkey": "AdSHK6vpQnwHRSw7jXUwjMEytmhFwnynZSENhvpAxL1y",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "207.148.31.63:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "207.148.31.63:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": "84.32.97.6:8899",
      "tpu": null,
      "tvu": "84.32.97.6:8003",
      "gossip": "84.32.97.6:8001",
      "pubkey": "9UbU7oaVXX6t7bMthxzzGPnWumFNxoWqUwX3qsrxb4pp",
      "pubsub": "84.32.97.6:8900",
      "tpuQuic": "84.32.97.6:9007",
      "tpuVote": "84.32.97.6:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "84.32.97.6:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.97.6:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.244.189.115:8002",
      "gossip": "38.244.189.115:8001",
      "pubkey": "vahMVcSS3v6uwyFormV7FDAUbQSHwmy6vUedp1P7L42",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "38.244.189.115:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "38.244.189.115:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.140.125:8001",
      "gossip": "104.204.140.125:8000",
      "pubkey": "UZBmptMjMSQEPKm4WyUkJeAuvZSqTuNK3cQCKFqJcXT",
      "pubsub": null,
      "tpuQuic": "45.139.132.149:11228",
      "tpuVote": "104.204.140.125:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.204.140.125:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.139.132.149:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.229.232.134:8001",
      "gossip": "46.229.232.134:8000",
      "pubkey": "Cu9Ls6dsTL6cxFHZdStHwVSh1uy2ynXz8qPJMS5FRq86",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "46.229.232.134:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "46.229.232.134:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.32.93.6:8000",
      "gossip": "45.32.93.6:8001",
      "pubkey": "ECNnK4VjcKTsABiw8FAp3JCE6tCmYyrEJthYVyMazmxi",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "45.32.93.6:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.32.93.6:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.142.28:8000",
      "gossip": "104.204.142.28:8001",
      "pubkey": "ChaossRPGKnsVhX1GfPC78yq5Sqju4cMThcAsKZNz5d6",
      "pubsub": null,
      "tpuQuic": "104.204.142.28:8002",
      "tpuVote": "104.204.142.28:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.204.142.28:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.142.28:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.55.199.125:8001",
      "gossip": "162.55.199.125:8000",
      "pubkey": "FoigPJ6kL6Gth5Er6t9d1Nkh96Skadqw63Ciyjxc1f8H",
      "pubsub": null,
      "tpuQuic": "162.55.199.125:8002",
      "tpuVote": "162.55.199.125:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "162.55.199.125:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.55.199.125:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "51.77.236.177:8000",
      "gossip": "51.77.236.177:8001",
      "pubkey": "4vcmYPfLztUckU3c3FvXDwSq8aDNDqwEpvEiqAv97LGJ",
      "pubsub": null,
      "tpuQuic": "51.77.236.177:8002",
      "tpuVote": "51.77.236.177:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "51.77.236.177:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.77.236.177:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.18.204.234:8000",
      "gossip": "216.18.204.234:8001",
      "pubkey": "mint13XHZSSxtgHuTSM9qPDEJSbWktpmpM4CZxeLB8f",
      "pubsub": null,
      "tpuQuic": "64.130.53.43:9007",
      "tpuVote": "216.18.204.234:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "216.18.204.234:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.43:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.176.106:8002",
      "gossip": "84.32.176.106:8001",
      "pubkey": "8ebFZA8NPLBZD91CwsG1HWQsa2B5Ludgdyf5Hi3sYhhs",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "84.32.176.106:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "84.32.176.106:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.119.47:8001",
      "gossip": "67.213.119.47:8000",
      "pubkey": "peNgUgnzs1jGogUPW8SThXMvzNpzKSNf3om78xVPAYx",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "67.213.119.47:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "67.213.119.47:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.32.20:8001",
      "gossip": "84.32.32.20:8000",
      "pubkey": "mineL1YNwcRnxN93B2sX6q22R11WfRqxnY4NBV8KfFY",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "84.32.32.20:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "84.32.32.20:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.28.113.63:8900",
      "gossip": "149.28.113.63:8001",
      "pubkey": "G4GT8z4AKWNoy3x6nuzxW83UfFXLXzrwn7DZQt4GvWdU",
      "pubsub": null,
      "tpuQuic": "64.130.54.221:5010",
      "tpuVote": "149.28.113.63:8903",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "149.28.113.63:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.221:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "83.143.84.90:8002",
      "gossip": "83.143.84.90:8001",
      "pubkey": "ArMBx6veRq33ffEP9sxHafiPRgrtzww4XvbwZbSMfXiM",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "83.143.84.90:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "83.143.84.90:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": "72.46.87.59:18899",
      "tpu": null,
      "tvu": "72.46.87.59:8001",
      "gossip": "72.46.87.59:8000",
      "pubkey": "CtzN7ysR5rX69qd168Aosbuc83mPozhi81bEHbG7ecNP",
      "pubsub": "72.46.87.59:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "72.46.87.59:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "72.46.87.59:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "212.83.42.36:8001",
      "gossip": "212.83.42.36:8000",
      "pubkey": "4W3jdXyqhLCjzA3Liu8ZNjViwrc6N9YjSB7obbxfjcKE",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "212.83.42.36:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "212.83.42.36:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.70.0.68:8100",
      "gossip": "103.70.0.68:8001",
      "pubkey": "8hAYbagNt7CMBooFfqVJhBgLqLffpjXTWJMk8yybjJsN",
      "pubsub": null,
      "tpuQuic": "198.13.130.228:9007",
      "tpuVote": "103.70.0.68:8103",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "103.70.0.68:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.228:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.109.165.70:8100",
      "gossip": "109.109.165.70:8001",
      "pubkey": "AmjX7CerZbHrU814UeBp2gJC7gANNG3KrP4c3RyD7TSD",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "109.109.165.70:8103",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "109.109.165.70:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "170.23.153.203:8001",
      "gossip": "170.23.153.203:8000",
      "pubkey": "DWvDTSh3qfn88UoQTEKRV2JnLt5jtJAVoiCo3ivtMwXP",
      "pubsub": null,
      "tpuQuic": "170.23.153.203:11228",
      "tpuVote": "170.23.153.203:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "170.23.153.203:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "170.23.153.203:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.26.11.101:10001",
      "gossip": "185.26.11.101:10000",
      "pubkey": "CVvaeDPR2o7P1eawG5c9TPFLzSXAewwPovPmREaEL4Cm",
      "pubsub": null,
      "tpuQuic": "64.130.46.155:5010",
      "tpuVote": "185.26.11.101:10004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "185.26.11.101:10009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.155:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.59.221.44:8002",
      "gossip": "185.59.221.44:8001",
      "pubkey": "2abwQG3v2xRemFxRszVHSfnjJNe9zu5X8duKgxjyLeaK",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "185.59.221.44:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "185.59.221.44:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.138:8001",
      "gossip": "64.130.37.138:8000",
      "pubkey": "J6etcxDdYjPHrtyvDXrbCkx3q9W1UjMj1vy1jBFPJEbK",
      "pubsub": null,
      "tpuQuic": "198.73.57.238:9007",
      "tpuVote": "64.130.37.138:8003",
      "version": "0.911.40002",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.138:8018",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.73.57.238:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.38.9:8002",
      "gossip": "208.91.110.230:8001",
      "pubkey": "Gv9gguvrAkgQtB5g5a3Un7trcHCxLYsk8vSojLmQMsWV",
      "pubsub": null,
      "tpuQuic": "208.91.110.230:8002",
      "tpuVote": "208.91.110.230:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.230:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.230:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.119.77:8003",
      "gossip": "85.195.119.77:8001",
      "pubkey": "TREEir31FswHK7JZBS5oFQteS72dobi6inpmQha88dA",
      "pubsub": null,
      "tpuQuic": "64.130.41.137:9007",
      "tpuVote": "85.195.119.77:9001",
      "version": "0.912.40002",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "85.195.119.77:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.137:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.140.37:8003",
      "gossip": "104.204.140.37:8001",
      "pubkey": "uxqVAFQfox97HazsPtkKiwhypQH6jEGXkQBHDtXshrk",
      "pubsub": null,
      "tpuQuic": "104.204.140.37:9007",
      "tpuVote": "104.204.140.37:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "104.204.140.37:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.140.37:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.117.45:8002",
      "gossip": "67.213.117.45:8001",
      "pubkey": "sce1oTWYVXv7a7Hy2skxREozs5nwkQ4wDT8XJSi5tgE",
      "pubsub": null,
      "tpuQuic": "67.213.117.45:8003",
      "tpuVote": "67.213.117.45:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "67.213.117.45:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.117.45:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.166.162.137:12001",
      "gossip": "46.166.162.137:12000",
      "pubkey": "GmCxjmjKZoaKN1DKunbYq8RCYib94Nm3sHyncFfofaF5",
      "pubsub": null,
      "tpuQuic": "88.216.192.50:5010",
      "tpuVote": "46.166.162.137:12004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "46.166.162.137:12009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.192.50:5011"
    },
    {
      "rpc": "198.13.134.16:8899",
      "tpu": null,
      "tvu": "198.13.134.16:8001",
      "gossip": "198.13.134.16:8000",
      "pubkey": "BLUEHGDihXD9CqqC5XFSQzDC3aS5jASohb2BAsXaJokR",
      "pubsub": "198.13.134.16:8900",
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "198.13.134.16:8004",
      "version": "4.0.0",
      "clientId": "AgaveBam",
      "featureSet": 3718597879,
      "serveRepair": "198.13.134.16:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.76.15.94:8002",
      "gossip": "45.76.15.94:8001",
      "pubkey": "uEhHSnCXvWgtgvVaYscPHjG13G3peMmngQQ2ghC54i3",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "45.76.15.94:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.76.15.94:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "107.155.95.146:8001",
      "gossip": "107.155.95.146:8000",
      "pubkey": "FACb6bbTDRBHCK999V8ox8jga5JBnt1r3vvzmAYAMv2o",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "107.155.95.146:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "107.155.95.146:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.134:8000",
      "gossip": "185.191.117.134:8001",
      "pubkey": "omeg2wsojzB7tfyAxsFhp8npxHL8yxVnaf51poXCwSd",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "185.191.117.134:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.134:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.109.165.2:8001",
      "gossip": "109.109.165.2:8000",
      "pubkey": "NoditgWLFbgnbPjfHP8QQrjxvuhCayTZWHw9pM4EJpu",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "109.109.165.2:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "109.109.165.2:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.8.21:8001",
      "gossip": "202.8.8.21:8000",
      "pubkey": "mrgn28BhocwdAUEenen3Sw2MR9cPKDpLkDvzDdR7DBD",
      "pubsub": null,
      "tpuQuic": "64.130.42.138:9007",
      "tpuVote": "202.8.8.21:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.8.21:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.138:9007"
    },
    {
      "rpc": "206.223.224.55:18899",
      "tpu": null,
      "tvu": "206.223.224.55:8001",
      "gossip": "206.223.224.55:8000",
      "pubkey": "b1ueZK9bWTywN2587zsScyLTaH18wfRfN5W15XnkiqF",
      "pubsub": "206.223.224.55:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "206.223.224.55:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "206.223.224.55:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.237.55.250:8001",
      "gossip": "104.237.55.250:8000",
      "pubkey": "EBk678aQvc3cUkfGyoehfw21JQfJXjmWuBeopYc89RSV",
      "pubsub": null,
      "tpuQuic": "104.237.55.250:8002",
      "tpuVote": "104.237.55.250:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.237.55.250:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.237.55.250:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.84.193.6:8003",
      "gossip": "45.84.193.6:8001",
      "pubkey": "7MTjmteQHhthwwTZhUzsc2dP4NBvGNRqj8jzdqNxHFGE",
      "pubsub": null,
      "tpuQuic": "45.84.193.6:9007",
      "tpuVote": "45.84.193.6:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "45.84.193.6:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.84.193.6:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.134.108.188:5556",
      "gossip": "45.134.108.188:5555",
      "pubkey": "2UBhtRuyr9nvWsUnrbWrvJiYWEU8TVBD4PLYQJKiRa9H",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "45.134.108.188:5559",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.134.108.188:5564",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "200.69.14.232:11001",
      "gossip": "200.69.14.232:11000",
      "pubkey": "9FXD1NXrK6xFU8i4gLAgjj2iMEWTqJhSuQN8tQuDfm2e",
      "pubsub": null,
      "tpuQuic": "64.130.61.195:5010",
      "tpuVote": "200.69.14.232:11004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "200.69.14.232:11009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.195:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "144.202.122.174:8000",
      "gossip": "144.202.122.174:8001",
      "pubkey": "EAW9vxqogvdPNapq7QTDpiVTHK6o7begUhPVnf854VTc",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "144.202.122.174:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "144.202.122.174:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.67.151.75:8001",
      "gossip": "69.67.151.75:8000",
      "pubkey": "mXv18ov8qCiQGs3ieoen981LdgZzYJjJak6reK6fpNC",
      "pubsub": null,
      "tpuQuic": "69.67.151.75:8002",
      "tpuVote": "69.67.151.75:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "69.67.151.75:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.67.151.75:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.215.164:5556",
      "gossip": "2.57.215.164:5555",
      "pubkey": "gojir4WnhS7VS1JdbnanJMzaMfr4UD7KeX1ixWAHEmw",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "2.57.215.164:5559",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "2.57.215.164:5564",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.77.126.242:8001",
      "gossip": "45.77.126.242:8002",
      "pubkey": "DeepM3FDWaAb7o53rvyZk5YvHLG3FvDiVXJLRY78z51p",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "45.77.126.242:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.77.126.242:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": "64.130.63.67:8899",
      "tpu": null,
      "tvu": "64.130.63.67:8001",
      "gossip": "64.130.63.67:8000",
      "pubkey": "Hz5aLvpKScNWoe9YZWxBLrQA3qzHJivBGtfciMekk8m5",
      "pubsub": "64.130.63.67:8900",
      "tpuQuic": "64.130.63.16:9007",
      "tpuVote": "64.130.63.67:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.67:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.16:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.172.178:12001",
      "gossip": "5.199.172.178:12000",
      "pubkey": "6y7V8dL673XFzm9QyC5vvh3itWkp7wztahBd2yDqsyrK",
      "pubsub": null,
      "tpuQuic": "88.216.192.50:5010",
      "tpuVote": "5.199.172.178:12004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "5.199.172.178:12009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.192.50:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.28.89.189:8001",
      "gossip": "103.28.89.189:8000",
      "pubkey": "HW4zorvt6xDwhU36RqjcWNwU8YMj9tiqnAafBKW4cqV",
      "pubsub": null,
      "tpuQuic": "198.13.130.228:9007",
      "tpuVote": "103.28.89.189:8004",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "103.28.89.189:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.228:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "170.23.224.5:8003",
      "gossip": "170.23.224.5:8001",
      "pubkey": "FBbqKvwLfKGZrKrfSbPJz4ymQ7zMarhRyZtu1RBkSe89",
      "pubsub": null,
      "tpuQuic": "170.23.224.5:9007",
      "tpuVote": "170.23.224.5:9001",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 1668064299,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "170.23.224.5:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.132.46:8001",
      "gossip": "45.139.132.46:8000",
      "pubkey": "7y5VhV4fkz6r4zUmH2UiwPjLwXzPL1PcV28or5NWkWRL",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "45.139.132.46:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.139.132.46:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.41:8001",
      "gossip": "208.91.110.41:8000",
      "pubkey": "FugJZepeGfh1Ruunhep19JC4F3Hr2FL3oKUMezoK8ajp",
      "pubsub": null,
      "tpuQuic": "198.73.57.238:9007",
      "tpuVote": "208.91.110.41:8003",
      "version": "0.911.40002",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.41:8018",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.73.57.238:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.19.94.9:8001",
      "gossip": "162.19.94.9:8000",
      "pubkey": "gUvo3g5LfH4Pd8qnG7T6MPEFa5bPr8LhDdxDahwYqis",
      "pubsub": null,
      "tpuQuic": "162.19.94.9:8002",
      "tpuVote": "162.19.94.9:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "162.19.94.9:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.94.9:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.42.231.163:8001",
      "gossip": "89.42.231.163:8000",
      "pubkey": "CpgSfd6QUoBw1267rTtJoZhELqC5q7isKLojBifSbNEE",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "89.42.231.163:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "89.42.231.163:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "91.227.33.5:8000",
      "gossip": "91.227.33.5:8001",
      "pubkey": "DViARWAWKkxAzp4UCgbw5B9pLSrBY3PaztFErcwgVUKX",
      "pubsub": null,
      "tpuQuic": "91.227.33.5:8002",
      "tpuVote": "91.227.33.5:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "91.227.33.5:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.227.33.5:8003"
    },
    {
      "rpc": "206.223.226.227:18899",
      "tpu": null,
      "tvu": "206.223.226.227:8001",
      "gossip": "206.223.226.227:8000",
      "pubkey": "1i1yPyh843bTfi5qPgqozTbDcEX65rUNEFcUT2KAs2i",
      "pubsub": "206.223.226.227:18899",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "206.223.226.227:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "206.223.226.227:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "170.23.153.109:8001",
      "gossip": "170.23.153.109:8000",
      "pubkey": "CPcDFHCAKkr5Kp9T5aQWJhXV5J6iFj141NMQ87L6poPL",
      "pubsub": null,
      "tpuQuic": "170.23.153.109:11228",
      "tpuVote": "170.23.153.109:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "170.23.153.109:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "170.23.153.109:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "200.69.14.231:11001",
      "gossip": "200.69.14.231:11000",
      "pubkey": "2uxEHizFmmnLekKG2LZJwxNabhpymEYfdVCpgDxjt87m",
      "pubsub": null,
      "tpuQuic": "64.130.61.195:5010",
      "tpuVote": "200.69.14.231:11004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "200.69.14.231:11009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.195:5011"
    },
    {
      "rpc": "64.34.94.5:18899",
      "tpu": null,
      "tvu": "64.34.94.5:8001",
      "gossip": "64.34.94.5:8000",
      "pubkey": "jntr1vkzvSujfckGR6ANmFmirVoPBMNr5XJGKP5uDQA",
      "pubsub": "64.34.94.5:18899",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "64.34.94.5:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.34.94.5:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": "138.226.224.67:8899",
      "tpu": null,
      "tvu": "138.226.224.67:8003",
      "gossip": "138.226.224.67:8001",
      "pubkey": "RNXnAJV1DeBt6Lytjz4wYzvS3d6bhsfidS5Np4ovwZz",
      "pubsub": "138.226.224.67:8900",
      "tpuQuic": "138.226.224.67:9007",
      "tpuVote": "138.226.224.67:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "138.226.224.67:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "138.226.224.67:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.18.215.218:8003",
      "gossip": "216.18.215.218:8001",
      "pubkey": "Fudp7uPDYNYQRxoq1Q4JiwJnzyxhVz37bGqRki3PBzS",
      "pubsub": null,
      "tpuQuic": "216.18.215.218:9007",
      "tpuVote": "216.18.215.218:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "216.18.215.218:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.18.215.218:9007"
    },
    {
      "rpc": "45.250.255.167:8899",
      "tpu": null,
      "tvu": "45.250.255.167:8001",
      "gossip": "45.250.255.167:8000",
      "pubkey": "Hu7pi2Xg5Kav8vSAUUr5CCZaEmMCzT6FgCTpueu3oBtW",
      "pubsub": "45.250.255.167:8900",
      "tpuQuic": "63.254.162.99:9007",
      "tpuVote": "45.250.255.167:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "45.250.255.167:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.162.99:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "199.231.161.170:8001",
      "gossip": "199.231.161.170:8000",
      "pubkey": "6k1YkmTKwPRUhChnxA9ryJmbtuQMbro4xFTL6mL9jycB",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "199.231.161.170:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "199.231.161.170:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.129.137.237:8001",
      "gossip": "38.129.137.237:8000",
      "pubkey": "bkpk9KVsDRfrArzzmkJ9mPEvbXfQxczzQYR3QMGiR8Z",
      "pubsub": null,
      "tpuQuic": "64.130.53.11:5010",
      "tpuVote": "38.129.137.237:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "38.129.137.237:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.11:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "51.195.24.61:8000",
      "gossip": "51.195.24.61:8001",
      "pubkey": "2mDrrmhSzpSyaF12izGk8hnFjtKCGeCFPwQHpRiJDby2",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "51.195.24.61:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "51.195.24.61:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.90.120:8021",
      "gossip": "57.129.90.120:8001",
      "pubkey": "A9mvukTd77EbRoBX4ydSCFQHdu5bsRFkNXTTRstA8FAC",
      "pubsub": null,
      "tpuQuic": "57.129.90.120:8022",
      "tpuVote": "57.129.90.120:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "57.129.90.120:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.90.120:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.63.2:8001",
      "gossip": "84.32.63.2:8000",
      "pubkey": "popscoyTKVksa4TyTXw488b3vvFxM7qQEyTBeMQopKu",
      "pubsub": null,
      "tpuQuic": "64.130.54.221:5010",
      "tpuVote": "84.32.63.2:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "84.32.63.2:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.221:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "188.42.130.84:25000",
      "gossip": "188.42.130.84:8000",
      "pubkey": "ACvL73V4GNnxPVfZ7K89jCrYurLyzpEuE9qirjvh2Xmi",
      "pubsub": null,
      "tpuQuic": "188.42.130.84:11228",
      "tpuVote": "188.42.130.84:25003",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "188.42.130.84:25008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "188.42.130.84:11232"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "94.158.242.56:8003",
      "gossip": "94.158.242.56:8001",
      "pubkey": "BeaCHioStqCEFDFxKwAEzyrUPYxqnBPhJ98gDKeEiTPb",
      "pubsub": null,
      "tpuQuic": "94.158.242.56:9007",
      "tpuVote": "94.158.242.56:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "94.158.242.56:50008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "94.158.242.56:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.88.233.107:8001",
      "gossip": "103.88.233.107:8000",
      "pubkey": "capyS1jerxhFp1RehdWRG6kbWi8bnWF3fkEG2RGLsQf",
      "pubsub": null,
      "tpuQuic": "103.88.233.107:8002",
      "tpuVote": "103.88.233.107:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.88.233.107:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.88.233.107:8003"
    },
    {
      "rpc": "102.211.135.164:18899",
      "tpu": null,
      "tvu": "191.44.100.6:8001",
      "gossip": "191.44.100.6:8000",
      "pubkey": "adramSYKBv1yHoZTub4kepcmF5LybPxwyJcsz4fpfi7",
      "pubsub": "102.211.135.164:18899",
      "tpuQuic": "191.44.100.6:8002",
      "tpuVote": "191.44.100.6:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "191.44.100.6:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "191.44.100.6:8003"
    },
    {
      "rpc": "191.44.100.4:18899",
      "tpu": null,
      "tvu": "191.44.100.4:8001",
      "gossip": "191.44.100.4:8000",
      "pubkey": "chrtyETASKQhsndRM9pr6qC3gAHG5MuRwCgXSNVqnJL",
      "pubsub": "191.44.100.4:18899",
      "tpuQuic": "191.44.100.4:8002",
      "tpuVote": "191.44.100.4:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "191.44.100.4:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "191.44.100.4:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.105.224.93:9712",
      "gossip": "86.105.224.93:9711",
      "pubkey": "LitxAVo3RnYXD2sX1TyRJxfnKy48amXgyGiysPZjZwE",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "86.105.224.93:9715",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "86.105.224.93:9720",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.222.171:8001",
      "gossip": "88.216.222.171:8000",
      "pubkey": "F6kVwubXEfZZo6e4Kozrtg7WoWk5wTRmrC8pwoxSLa7S",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "88.216.222.171:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "88.216.222.171:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.166:8002",
      "gossip": "64.130.41.166:8001",
      "pubkey": "scb1Z7du8NVSaHFXsafSjRdXr6xBjWR3iugikL739Y1",
      "pubsub": null,
      "tpuQuic": "64.130.41.166:8003",
      "tpuVote": "64.130.41.166:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.41.166:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.166:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "66.42.59.185:8001",
      "gossip": "66.42.59.185:8000",
      "pubkey": "KAoSp3EudGqUBXv46tQoDwbZxSm3iXa9wM2aF4ySbJJ",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "66.42.59.185:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "66.42.59.185:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.140.171:28901",
      "gossip": "104.204.140.171:28900",
      "pubkey": "Mwz8VgAEnPtfqS62r3ixrFiMJwnNfEwR141CGnsTo5k",
      "pubsub": null,
      "tpuQuic": "103.219.171.51:11228",
      "tpuVote": "104.204.140.171:28904",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "104.204.140.171:28909",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.219.171.51:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.251.3.221:8021",
      "gossip": "72.251.3.221:8001",
      "pubkey": "32ke3uf1qL3xLqbwzU76T2sbG2XaJrGuSCNdUnien3zm",
      "pubsub": null,
      "tpuQuic": "72.251.3.221:8022",
      "tpuVote": "72.251.3.221:8024",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "72.251.3.221:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.251.3.221:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "193.243.164.211:8100",
      "gossip": "193.243.164.211:8099",
      "pubkey": "9pBHfuE19q7PRbupJf8CZAMwv6RHjasdyMN9U9du7Nx2",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "193.243.164.211:8103",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "193.243.164.211:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.177.74.241:8003",
      "gossip": "185.177.74.241:8001",
      "pubkey": "AccReGBNBdUCEJ7ZyP231jw7uVJ3eF9u4cLBFAyqQuWm",
      "pubsub": null,
      "tpuQuic": "185.177.74.241:9007",
      "tpuVote": "185.177.74.241:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "185.177.74.241:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.177.74.241:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.52.254:8001",
      "gossip": "67.209.52.254:8000",
      "pubkey": "oPaLtitM6cwpFVzP2rDhLsJLdY2vcbuZiJJyD1TFUKs",
      "pubsub": null,
      "tpuQuic": "64.130.63.16:9007",
      "tpuVote": "67.209.52.254:8003",
      "version": "0.911.40002",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "67.209.52.254:8018",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.16:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.128.187.43:9002",
      "gossip": "57.128.187.43:9001",
      "pubkey": "8nbE53mcKhy74HLiGZ1q5HRocwiCvgh49csSaHSdtukr",
      "pubsub": null,
      "tpuQuic": "57.128.187.43:9003",
      "tpuVote": "57.128.187.43:9005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "57.128.187.43:9010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.128.187.43:9004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.222.171.196:8001",
      "gossip": "89.222.171.196:8000",
      "pubkey": "HLXxkmjb47spcmbbKi3UCfZ2qmFY29t8MN562AEmh2Qh",
      "pubsub": null,
      "tpuQuic": "67.213.113.213:8009",
      "tpuVote": "89.222.171.196:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "89.222.171.196:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.113.213:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.34.247.7:8001",
      "gossip": "70.34.247.7:8000",
      "pubkey": "EQhTjikb1L2jvxsCaSW2o2TuRXh4Do6HzBEWCxpeM44W",
      "pubsub": null,
      "tpuQuic": "70.34.247.7:8002",
      "tpuVote": "70.34.247.7:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "70.34.247.7:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.34.247.7:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.106.59.211:8001",
      "gossip": "103.106.59.211:8000",
      "pubkey": "AEAJtnjjB19XFreJH21UP8rfd12f9kxMmngwZG3tGXbP",
      "pubsub": null,
      "tpuQuic": "198.73.57.238:9007",
      "tpuVote": "103.106.59.211:8004",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "103.106.59.211:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.73.57.238:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.38:8001",
      "gossip": "45.154.33.38:8000",
      "pubkey": "DP9iBgK9c7tJYb83KhxQMFNc1LXYu7nE7EhWpEzQnjmg",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "45.154.33.38:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.154.33.38:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.77.70.148:8001",
      "gossip": "45.77.70.148:8000",
      "pubkey": "7Nn8qBJey7vXtVFMNBbbuN8UkujU8Y6nWzbHVGuf49yV",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "45.77.70.148:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "45.77.70.148:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.240:5556",
      "gossip": "45.152.160.240:5555",
      "pubkey": "SWiz7QwnYPm61pWWUUkMhj4r5pZLP1SvYibdHcB2cov",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "45.152.160.240:5559",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.152.160.240:5564",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "173.231.12.146:8003",
      "gossip": "173.231.12.146:8001",
      "pubkey": "4Kbcyn7JVPAWLRLPsNGTPmcNMvCkLTw51ZLRhqsUC6jP",
      "pubsub": null,
      "tpuQuic": "173.231.12.146:9007",
      "tpuVote": "173.231.12.146:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "173.231.12.146:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "173.231.12.146:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.53.29:8002",
      "gossip": "198.13.130.222:8001",
      "pubkey": "HnfPZDrbJFooiP9vvgWrjx3baXVNAZCgisT58gyMCgML",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "198.13.130.222:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.222:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "154.60.100.87:8003",
      "gossip": "154.60.100.87:8001",
      "pubkey": "73hojLdq1vZDSxeVQEqVFJ4iwLngdvEJPEpEHkSdv6BZ",
      "pubsub": null,
      "tpuQuic": "64.130.41.137:9007",
      "tpuVote": "154.60.100.87:9001",
      "version": "0.912.40003",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "154.60.100.87:50008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.137:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.162.93.139:8002",
      "gossip": "69.162.93.139:8001",
      "pubkey": "GREEDkgav1ox1jYyd9Anv6exLqKV2vYnxMw5prGwmNKc",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "69.162.93.139:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "69.162.93.139:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.186.125:8000",
      "gossip": "84.32.186.125:8001",
      "pubkey": "R2D2imoV8nXk1ngT9v4dEK65We4uLNyUarTBdWbFruq",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "84.32.186.125:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "84.32.186.125:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": "64.130.41.150:8899",
      "tpu": null,
      "tvu": "64.130.41.150:8001",
      "gossip": "64.130.41.150:8000",
      "pubkey": "FBKFWadXZJahGtFitAsBvbqh5968gLY7dMBBJUoUjeNi",
      "pubsub": "64.130.41.150:8900",
      "tpuQuic": "64.130.41.150:8002",
      "tpuVote": "64.130.41.150:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.150:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.150:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.251.3.228:8021",
      "gossip": "72.251.3.228:8001",
      "pubkey": "AwcMVMvmT1aCETVYV42WE1cSMCyNp4vZqVjLsvs6dM4o",
      "pubsub": null,
      "tpuQuic": "72.251.3.228:8022",
      "tpuVote": "72.251.3.228:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "72.251.3.228:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.251.3.228:8023"
    },
    {
      "rpc": "64.34.87.137:8899",
      "tpu": null,
      "tvu": "64.34.87.137:8001",
      "gossip": "64.34.87.137:8000",
      "pubkey": "5429ouKuzSkH8TV5GULMLtqkEGnJ7H6RsfhDLyscqXoB",
      "pubsub": "64.34.87.137:8900",
      "tpuQuic": "64.34.87.137:8002",
      "tpuVote": "64.34.87.137:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.34.87.137:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.87.137:8003"
    },
    {
      "rpc": "72.46.87.247:18899",
      "tpu": null,
      "tvu": "72.46.87.247:8001",
      "gossip": "72.46.87.247:8000",
      "pubkey": "simpRo1FrQYGa1moicfgnPDp6KyE38d4gYrZzhjXYJb",
      "pubsub": "72.46.87.247:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "72.46.87.247:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "72.46.87.247:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.61.209.110:8001",
      "gossip": "5.61.209.110:8000",
      "pubkey": "THWsLPufeq9LWs2H9vYPbtFwdxAHbQHvSbT6pztG8x1",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "5.61.209.110:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "5.61.209.110:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.50.164.149:8001",
      "gossip": "38.50.164.149:8000",
      "pubkey": "6qwYjs5vCSEKaTMBbHinnW8fvdGj1r8cpzPoAV1EHKsw",
      "pubsub": null,
      "tpuQuic": "64.130.46.155:5010",
      "tpuVote": "38.50.164.149:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "38.50.164.149:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.155:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "177.54.155.251:8001",
      "gossip": "177.54.155.251:8000",
      "pubkey": "9hQqNe3DQTiwhspatewA8EXhz12e6sq5UJVJ2qNRwnTf",
      "pubsub": null,
      "tpuQuic": "177.54.155.251:8002",
      "tpuVote": "177.54.155.251:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "177.54.155.251:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "177.54.155.251:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.76.247.169:8000",
      "gossip": "45.76.247.169:8001",
      "pubkey": "VicAQ3U2GjjAuF3tPCtEQZdZKnpAAxkr5Q3zjDKmdo7",
      "pubsub": null,
      "tpuQuic": "64.130.53.11:5010",
      "tpuVote": "45.76.247.169:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.76.247.169:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.11:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.194.8.86:8000",
      "gossip": "104.194.8.86:8021",
      "pubkey": "4b1onMDEasBh4BuPekQWijx3BYR64hAE1z2jJyeZUkck",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "104.194.8.86:8003",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "104.194.8.86:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.74.144.98:8001",
      "gossip": "109.74.144.98:8000",
      "pubkey": "2gDeeRa3mwPPtw1CMWPkEhRWo9v5izNBBfEXanr8uibX",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "109.74.144.98:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "109.74.144.98:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": "103.14.27.43:18899",
      "tpu": null,
      "tvu": "103.14.27.43:8001",
      "gossip": "103.14.27.43:8000",
      "pubkey": "c3rtoMCHSbFrLRTAdw4iRowKSn4BrDtvSPbuyJwkHwx",
      "pubsub": "103.14.27.43:18899",
      "tpuQuic": "103.14.27.43:8002",
      "tpuVote": "103.14.27.43:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.14.27.43:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.14.27.43:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "8.209.82.221:8001",
      "gossip": "8.209.82.221:8000",
      "pubkey": "2Mob8FJkb8chZY5pTBMpKfLwgZAQHE5i9jAC5zbASitD",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "8.209.82.221:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "8.209.82.221:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.54.152.246:8003",
      "gossip": "86.54.152.246:8001",
      "pubkey": "9eGrDohdNTAo61DRHyfMuqKWXqYnA3i254Wiszxe8FoY",
      "pubsub": null,
      "tpuQuic": "86.54.152.246:8037",
      "tpuVote": "86.54.152.246:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "86.54.152.246:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.54.152.246:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.53.20:8002",
      "gossip": "64.130.44.60:8001",
      "pubkey": "GYx8kpp7SsRwtQEEsGQjAxb4hFMMmT91kFJuDeky3YGQ",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "64.130.44.60:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.60:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.28.130:8002",
      "gossip": "64.31.28.130:8001",
      "pubkey": "4SsMncJdtKiUcDtukkX15mqei7WiuQ9yvRtQrQW4reWC",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "64.31.28.130:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.31.28.130:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.34.243.134:8001",
      "gossip": "70.34.243.134:8000",
      "pubkey": "3V2xaccDpFib4DbTksdiveNDmiwpXBqSWyjSof3w1Bg7",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "70.34.243.134:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "70.34.243.134:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.162.140:18001",
      "gossip": "63.254.162.140:18000",
      "pubkey": "3DaifGfDESUzer5ggUeo6UDjqEKMkCpdNSrrvyuggHVe",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "63.254.162.140:18004",
      "version": "4.0.0",
      "clientId": "AgaveBam",
      "featureSet": 3718597879,
      "serveRepair": "63.254.162.140:18009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.114:8003",
      "gossip": "64.130.42.114:8001",
      "pubkey": "Certusm1sa411sMpV9FPqU5dXAYhmmhygvxJ23S6hJ24",
      "pubsub": null,
      "tpuQuic": "64.130.42.114:9007",
      "tpuVote": "64.130.42.114:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.114:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.114:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.55.54:8001",
      "gossip": "64.130.55.54:8000",
      "pubkey": "722RdWmHC5TGXBjTejzNjbc8xEiduVDLqZvoUGz6Xzbp",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "64.130.55.54:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.130.55.54:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.239.35.202:8001",
      "gossip": "64.239.35.202:8000",
      "pubkey": "gangtCrQg5RmKf5yxvhvZThPugPX58pDSdQ5UuS26vN",
      "pubsub": null,
      "tpuQuic": "64.130.41.137:9007",
      "tpuVote": "64.239.35.202:8003",
      "version": "0.911.40002",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.239.35.202:8018",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.137:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "139.84.226.199:8001",
      "gossip": "139.84.226.199:8000",
      "pubkey": "SaV6UWBaE8M3kwMBfAhQ6Tmvd2qdJRm94NTwLqtoyGd",
      "pubsub": null,
      "tpuQuic": "139.84.226.199:8002",
      "tpuVote": "139.84.226.199:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "139.84.226.199:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "139.84.226.199:8003"
    },
    {
      "rpc": "103.14.27.33:8899",
      "tpu": null,
      "tvu": "103.14.27.33:8001",
      "gossip": "103.14.27.33:8000",
      "pubkey": "gotasRuLTuJNZDtLHmaDJpEUjCWZqkHcuwbLhkgCwCX",
      "pubsub": "103.14.27.33:8900",
      "tpuQuic": "103.14.27.33:8002",
      "tpuVote": "103.14.27.33:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.14.27.33:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.14.27.33:8003"
    },
    {
      "rpc": "198.13.133.78:8899",
      "tpu": null,
      "tvu": "198.13.133.78:8000",
      "gossip": "198.13.133.78:8901",
      "pubkey": "CEL22Qx7p85qY6gmhCZaYJrrnynJitkVRMQo6qZdT8Ns",
      "pubsub": "198.13.133.78:8900",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "198.13.133.78:8003",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "198.13.133.78:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": "88.216.198.210:8899",
      "tpu": null,
      "tvu": "88.216.198.210:8000",
      "gossip": "88.216.198.210:8001",
      "pubkey": "h3ZXAE168mNxsszYYrUfkMVSCWx6DU2Uvrx97Kb1Nch",
      "pubsub": "88.216.198.210:8900",
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "88.216.198.210:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "88.216.198.210:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "107.155.109.150:8001",
      "gossip": "107.155.109.150:8000",
      "pubkey": "PoN1E3VyqwqoGQEhC8ExpkRKTuyhxtGLnHHH3DwbgTU",
      "pubsub": null,
      "tpuQuic": "107.155.109.150:8002",
      "tpuVote": "107.155.109.150:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "107.155.109.150:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "107.155.109.150:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "188.42.129.244:25000",
      "gossip": "188.42.129.244:8000",
      "pubkey": "5pPRHniefFjkiaArbGX3Y8NUysJmQ9tMZg3FrFGwHzSm",
      "pubsub": null,
      "tpuQuic": "188.42.129.244:11228",
      "tpuVote": "188.42.129.244:25003",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "188.42.129.244:25008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "188.42.129.244:11232"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "151.123.174.194:8001",
      "gossip": "151.123.174.194:8000",
      "pubkey": "Ha1iade1AH3B12K9SccfWoPdFtQKKQsj2ZyWwxcjqJJU",
      "pubsub": null,
      "tpuQuic": "63.254.162.99:9007",
      "tpuVote": "151.123.174.194:8004",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "151.123.174.194:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.162.99:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.189.44.172:12001",
      "gossip": "185.189.44.172:12000",
      "pubkey": "5Us18hLZPXJTS4QVuGSsUw137Dyd2tgBaem24Xsf5nBS",
      "pubsub": null,
      "tpuQuic": "185.189.44.172:12002",
      "tpuVote": "185.189.44.172:12004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.189.44.172:12009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.189.44.172:12003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "172.96.160.101:8001",
      "gossip": "172.96.160.101:8000",
      "pubkey": "Diman2GphWLwECE3swjrAEAJniezpYLxK1edUydiDZau",
      "pubsub": null,
      "tpuQuic": "172.96.160.101:8002",
      "tpuVote": "172.96.160.101:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "172.96.160.101:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "172.96.160.101:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.53.179:8002",
      "gossip": "64.130.41.51:8001",
      "pubkey": "3JotfSFPaod4KVK7nj7ULvcq5PjUBdZNVGracNkJNhrt",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "64.130.41.51:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.51:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.146:8003",
      "gossip": "64.130.42.146:8001",
      "pubkey": "9jxgosAfHgHzwnxsHw4RAZYaLVokMbnYtmiZBreynGFP",
      "pubsub": null,
      "tpuQuic": "64.130.42.146:9007",
      "tpuVote": "64.130.42.146:9001",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 1668064299,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.146:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.215.102:8001",
      "gossip": "2.57.215.102:8000",
      "pubkey": "CtvdyHYt8cMuGVHFarV2RADfoCdnrbd8e9jAsB225uMW",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "2.57.215.102:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "2.57.215.102:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": "177.54.154.225:18899",
      "tpu": null,
      "tvu": "177.54.154.225:8001",
      "gossip": "177.54.154.225:8000",
      "pubkey": "ExCHWgfeJyKRzpfryiQn4W6aYaWhbSAEnsoUnBGNqjWD",
      "pubsub": "177.54.154.225:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "177.54.154.225:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "177.54.154.225:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": "67.213.127.85:8899",
      "tpu": null,
      "tvu": "67.213.127.85:8001",
      "gossip": "67.213.127.85:8000",
      "pubkey": "AG1PsJMQcutNUX64RD3bAhW7NpxWeFkqkgGizBznYFKW",
      "pubsub": "67.213.127.85:8900",
      "tpuQuic": "64.130.42.138:9007",
      "tpuVote": "67.213.127.85:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.127.85:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.138:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "107.155.109.146:8001",
      "gossip": "107.155.109.146:8000",
      "pubkey": "ANC1u9sY36q3mi2MyVhtz71un8yLgTsFBUuyLcSPzKsk",
      "pubsub": null,
      "tpuQuic": "107.155.109.146:8002",
      "tpuVote": "107.155.109.146:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "107.155.109.146:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "107.155.109.146:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.36.35.227:8001",
      "gossip": "89.36.35.227:8000",
      "pubkey": "chopskqnudaeCTENWzUjfFCBSLcxprqbdMoCAucAwfb",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "89.36.35.227:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "89.36.35.227:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "198.178.224.36:8000",
      "pubkey": "BgjZfx5c35MTWyYB855wAgqTciPyTWsSvfSEzrtJeF3w",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "64.130.63.125:8899",
      "tpu": null,
      "tvu": "64.130.63.125:8001",
      "gossip": "64.130.63.125:8000",
      "pubkey": "CW9C7HBwAMgqNdXkNgFg9Ujr3edR2Ab9ymEuQnVacd1A",
      "pubsub": "64.130.63.125:8900",
      "tpuQuic": "64.130.63.16:9007",
      "tpuVote": "64.130.63.125:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.125:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.16:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.144.69:8000",
      "gossip": "57.129.144.69:8001",
      "pubkey": "4DraK9wUrMSpzbGjUbSWTHAhJimMyB49HyKhvfwe6e51",
      "pubsub": null,
      "tpuQuic": "64.130.46.155:5010",
      "tpuVote": "57.129.144.69:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "57.129.144.69:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.155:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.208.234.129:8001",
      "gossip": "67.208.234.129:8000",
      "pubkey": "CAo1dCGYrB6NhHh5xb1cGjUiu86iyCfMTENxgHumSve4",
      "pubsub": null,
      "tpuQuic": "64.130.63.16:9007",
      "tpuVote": "67.208.234.129:8004",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "67.208.234.129:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.16:9007"
    },
    {
      "rpc": "67.213.127.81:8899",
      "tpu": null,
      "tvu": "67.213.127.81:8001",
      "gossip": "67.213.127.81:8000",
      "pubkey": "99rG5AhkVagxJ7y8NpMAmy1h1u9GhT3h1Cimu2X3cwaJ",
      "pubsub": "67.213.127.81:8900",
      "tpuQuic": "67.213.127.81:8002",
      "tpuVote": "67.213.127.81:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.213.127.81:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.127.81:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.186.105:12001",
      "gossip": "84.32.186.105:12000",
      "pubkey": "AEHqTB2RtJjegsR2ePjvoJSm6AA5pnYKWVbcsn6kqTBD",
      "pubsub": null,
      "tpuQuic": "84.32.186.105:12002",
      "tpuVote": "84.32.186.105:12004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "84.32.186.105:12009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.186.105:12003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "136.244.110.4:9851",
      "gossip": "136.244.110.4:9850",
      "pubkey": "9fa5wcqnAQqHyn58U1vHHLuZW5GXLcoho7hKT17jGJfZ",
      "pubsub": null,
      "tpuQuic": "136.244.110.4:9852",
      "tpuVote": "136.244.110.4:9854",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "136.244.110.4:9859",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "136.244.110.4:9853"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "164.138.249.100:20001",
      "gossip": "164.138.249.100:20000",
      "pubkey": "spcti6GQVvinbtHU9UAkbXhjTcBJaba1NVx4tmK4M5F",
      "pubsub": null,
      "tpuQuic": "63.254.167.197:5010",
      "tpuVote": "164.138.249.100:20004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "164.138.249.100:20009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.197:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "217.170.192.166:8002",
      "gossip": "217.170.192.166:8001",
      "pubkey": "4YGgmwyqztpJeAi3pzHQ4Gf9cWrMHCjZaWeWoCK6zz6X",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "217.170.192.166:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "217.170.192.166:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": "206.223.226.207:18899",
      "tpu": null,
      "tvu": "206.223.226.207:8001",
      "gossip": "206.223.226.207:8000",
      "pubkey": "hxMhrsuGPDmkLJ4mTxEjyeMST3VGhTiwJvS9XgHwePj",
      "pubsub": "206.223.226.207:18899",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "206.223.226.207:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "206.223.226.207:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.239.35.205:8001",
      "gossip": "64.239.35.205:8000",
      "pubkey": "H9ENbtmy2tWFtAJNmpC8xQtbcr1NTp4FXLdphRaG8L2T",
      "pubsub": null,
      "tpuQuic": "64.239.35.205:8002",
      "tpuVote": "64.239.35.205:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.239.35.205:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.239.35.205:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "79.127.227.20:8003",
      "gossip": "79.127.227.20:8001",
      "pubkey": "SSmBEooM7RkmyuXxuKgAhTvhQZ36Z3G2WsmLGJKoQLY",
      "pubsub": null,
      "tpuQuic": "79.127.227.20:9007",
      "tpuVote": "79.127.227.20:9001",
      "version": "0.913.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "79.127.227.20:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "79.127.227.20:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.250.254.141:8001",
      "gossip": "45.250.254.141:8000",
      "pubkey": "SaGAgdkowooXBrHihpmE8gsjf1dUG7n5SqnyJxYFnXJ",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "45.250.254.141:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.250.254.141:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "188.42.52.236:8002",
      "gossip": "188.42.52.236:8001",
      "pubkey": "4QNekaDqrLmUENqkVhGCJrgHziPxkX9kridbKwunx9su",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "188.42.52.236:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "188.42.52.236:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "144.202.103.137:8001",
      "gossip": "144.202.103.137:8000",
      "pubkey": "GQiWnDYrzHMALWG9avt5FCu1wisAQHjGY5ve7GMBiPEe",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "144.202.103.137:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "144.202.103.137:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "189.1.171.11:8021",
      "gossip": "189.1.171.11:8001",
      "pubkey": "UPSCQNqdbiaqrQou9X9y8mr43ZHzvoNpKC26Mo7GubF",
      "pubsub": null,
      "tpuQuic": "189.1.171.11:8022",
      "tpuVote": "189.1.171.11:8024",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "189.1.171.11:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "189.1.171.11:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "62.197.45.233:8000",
      "gossip": "62.197.45.233:8001",
      "pubkey": "FZrSKKsKfZJovcQWRQFDXz8DbHKCSRZLZqbBAGd1dG57",
      "pubsub": null,
      "tpuQuic": "62.197.45.233:8002",
      "tpuVote": "62.197.45.233:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "62.197.45.233:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "62.197.45.233:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.142.204:8003",
      "gossip": "104.204.142.204:8001",
      "pubkey": "5LNEDitSMhApT2uFnmtN7FmjCiGuatpnb2uU4f3shrk",
      "pubsub": null,
      "tpuQuic": "104.204.142.204:9007",
      "tpuVote": "104.204.142.204:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "104.204.142.204:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.142.204:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "95.214.54.7:8900",
      "gossip": "95.214.54.7:8001",
      "pubkey": "9dH6wfdJVgnDcbCUjT8rkmejAzTnGQaFarmLfvBYXANK",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "95.214.54.7:8903",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "95.214.54.7:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.149:8000",
      "pubkey": "9EQYXqQWcT9S8B8eF6afBniNCHRn7BuhjNkJc58Sfgvj",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.54.153.246:8003",
      "gossip": "86.54.153.246:8001",
      "pubkey": "JD549HsbJHeEKKUrKgg4Fj2iyv2RGjsV7NTZjZUrHybB",
      "pubsub": null,
      "tpuQuic": "86.54.153.246:8037",
      "tpuVote": "86.54.153.246:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "86.54.153.246:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.54.153.246:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "54.38.148.109:8000",
      "gossip": "54.38.148.109:8001",
      "pubkey": "5VrW7YNBccVnhnZVmooCePdLFcs2UjfxRT3hoY9mN8Ec",
      "pubsub": null,
      "tpuQuic": "54.38.148.109:8002",
      "tpuVote": "54.38.148.109:8004",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "54.38.148.109:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.38.148.109:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.127.79:8021",
      "gossip": "67.213.127.79:8001",
      "pubkey": "4NwpynvugnHvyLzr5h9Y7mw44saGJXDNoBjm6wgMiYDr",
      "pubsub": null,
      "tpuQuic": "67.213.127.79:8022",
      "tpuVote": "67.213.127.79:8024",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.213.127.79:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.127.79:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.198.132:8001",
      "gossip": "88.216.198.132:8000",
      "pubkey": "ADjyeNzWd8yhEjCVyAqT87eqoyGRbimERQsNhFQcXjop",
      "pubsub": null,
      "tpuQuic": "64.130.54.221:5010",
      "tpuVote": "88.216.198.132:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "88.216.198.132:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.221:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "91.189.181.50:8001",
      "gossip": "91.189.181.50:8000",
      "pubkey": "8aySXUFrqJz5kath6aVijrkBH8ZtxMWJGhYXwYBpKmHK",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "91.189.181.50:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "91.189.181.50:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.150.33.21:8001",
      "gossip": "89.150.33.21:8000",
      "pubkey": "KoLibrJsbABbtmtFPc7nPvDxT81rc4UPM7mY9xSLjpo",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "89.150.33.21:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "89.150.33.21:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "94.158.242.125:8003",
      "gossip": "94.158.242.125:8001",
      "pubkey": "Awes4Tr6TX8JDzEhCZY2QVNimT6iD1zWHzf1vNyGvpLM",
      "pubsub": null,
      "tpuQuic": "94.158.242.125:9007",
      "tpuVote": "94.158.242.125:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "94.158.242.125:50008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "94.158.242.125:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.77.3.223:8001",
      "gossip": "45.77.3.223:8000",
      "pubkey": "3CKKAoVi94EnfX8QcVxEmk8CAvZTc6nAYzXp1WkSUofX",
      "pubsub": null,
      "tpuQuic": "64.130.53.11:5010",
      "tpuVote": "45.77.3.223:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.77.3.223:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.11:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "151.123.172.114:8001",
      "gossip": "151.123.172.114:8000",
      "pubkey": "7Nu9ckgtjobZ3MkbadGFKEvRymYuah9HmcxiUJKMM9NB",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "151.123.172.114:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "151.123.172.114:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "134.119.192.253:8001",
      "gossip": "134.119.192.253:8000",
      "pubkey": "vaoJKVZYPAsqc52T2nNQhABR1gU6Cy2koDKfCQaEiva",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "134.119.192.253:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "134.119.192.253:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.199.38.133:8001",
      "gossip": "185.199.38.133:8000",
      "pubkey": "LimeA3gMLb2SjxrKbP7NsWk1UwTZrw4B6Ctc9dmVU6E",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "185.199.38.133:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "185.199.38.133:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.17:8001",
      "gossip": "67.213.121.17:8000",
      "pubkey": "bxrAptB5ZpZBhoLedJpoGWY5hBjjt3zvVBr2323Rrq6",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "67.213.121.17:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "67.213.121.17:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": "66.42.34.34:18899",
      "tpu": null,
      "tvu": "66.42.34.34:8001",
      "gossip": "66.42.34.34:8000",
      "pubkey": "ByszyWdqC3rVMWy8f6jwK5cmwkpwYdwsr7UL58xS5vnm",
      "pubsub": "66.42.34.34:18899",
      "tpuQuic": "66.42.34.34:8002",
      "tpuVote": "66.42.34.34:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "66.42.34.34:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "66.42.34.34:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.167:8003",
      "gossip": "64.130.32.167:8001",
      "pubkey": "ECZx4Dfyn2o55KTYbM9r3Dt4VZRcrdfdrst7sUbWgrdU",
      "pubsub": null,
      "tpuQuic": "64.130.32.167:8037",
      "tpuVote": "64.130.32.167:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.167:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.167:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.248.21.145:8900",
      "gossip": "149.248.21.145:8001",
      "pubkey": "7PpXQgDb9eCHN1Uudgi77Wm89cRz4T85YgDw83qvaJXd",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "149.248.21.145:8903",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "149.248.21.145:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.197.131:8001",
      "gossip": "88.216.197.131:8000",
      "pubkey": "FZ4MT1HYJHd9GK8D5mJ9f3r7irLaDL5NxBNLjGqrLqs9",
      "pubsub": null,
      "tpuQuic": "88.216.197.131:8002",
      "tpuVote": "88.216.197.131:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "88.216.197.131:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.197.131:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "212.83.42.40:8001",
      "gossip": "212.83.42.40:8000",
      "pubkey": "PAD9aPiKJGcbGxuVLbc8o4Vf65GPq3fJQ7PkHWuX6a8",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "212.83.42.40:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "212.83.42.40:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "95.173.206.238:8001",
      "gossip": "95.173.206.238:8000",
      "pubkey": "C1ocKDYMCm2ooWptMMnpd5VEB2Nx4UMJgRuYofysyzcA",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "95.173.206.238:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "95.173.206.238:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "170.23.153.107:8001",
      "gossip": "170.23.153.107:8000",
      "pubkey": "5ikB9XZNVsjwKb6hHT3FS3So1Z1SrDvU5yaniWEQyDEG",
      "pubsub": null,
      "tpuQuic": "170.23.153.107:11228",
      "tpuVote": "170.23.153.107:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "170.23.153.107:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "170.23.153.107:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "135.125.160.253:8001",
      "gossip": "135.125.160.253:8000",
      "pubkey": "ark1hdnnfmusE24wGHkyVG1gdRCqfmXs9drasDAdABZ",
      "pubsub": null,
      "tpuQuic": "135.125.160.253:8002",
      "tpuVote": "135.125.160.253:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "135.125.160.253:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "135.125.160.253:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.134.108.88:5556",
      "gossip": "45.134.108.88:5555",
      "pubkey": "1Link6hB1NpkCwJt3ZtpQKZszKauhEcKgiWjaU8PRDG",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "45.134.108.88:5559",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.134.108.88:5564",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.28.210.10:8002",
      "gossip": "149.28.210.10:8001",
      "pubkey": "HgozywotiKv4F5g3jCgideF3gh9sdD3vz4QtgXKjWCtB",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "149.28.210.10:8005",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "149.28.210.10:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "93.115.25.176:8001",
      "gossip": "93.115.25.176:8000",
      "pubkey": "MARiKM3t7pDCyXtvLq24ErWDAvYu84yXqCthkR1GS33",
      "pubsub": null,
      "tpuQuic": "93.115.25.176:8002",
      "tpuVote": "93.115.25.176:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "93.115.25.176:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "93.115.25.176:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.251.11.45:8021",
      "gossip": "72.251.11.45:8001",
      "pubkey": "9PRr9k87HjjdLMRkxtxygidjxVta9VQ1kAsqgLBWXKdQ",
      "pubsub": null,
      "tpuQuic": "72.251.11.45:8022",
      "tpuVote": "72.251.11.45:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "72.251.11.45:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.251.11.45:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.71.233:8001",
      "gossip": "84.32.71.233:8000",
      "pubkey": "7tqeaFKsg2K9xKnQWe61w71AtCZVMQvG4hbFAiFAngYw",
      "pubsub": null,
      "tpuQuic": "64.130.54.221:5010",
      "tpuVote": "84.32.71.233:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "84.32.71.233:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.221:5011"
    },
    {
      "rpc": "64.130.44.133:8899",
      "tpu": null,
      "tvu": "64.130.44.133:8000",
      "gossip": "64.130.44.133:8901",
      "pubkey": "9AW87WqARQonyJYhx1G25fKfvjURFYVmHs79z1NUXDPD",
      "pubsub": "64.130.44.133:8900",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "64.130.44.133:8003",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.133:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "116.126.141.28:9001",
      "gossip": "116.126.141.28:9000",
      "pubkey": "bitHUmbKSQDTGoyoiW3BeqaGWdyV5sS3nYt5SduUHfb",
      "pubsub": null,
      "tpuQuic": "116.126.141.28:9002",
      "tpuVote": "116.126.141.28:9004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "116.126.141.28:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "116.126.141.28:9003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.142.221:8001",
      "gossip": "104.204.142.221:8000",
      "pubkey": "E5UXkzUxqEXpeDf3WsrMZHTs2ZSSBpAz7G4hpGwgRGDT",
      "pubsub": null,
      "tpuQuic": "104.204.142.221:8009",
      "tpuVote": "104.204.142.221:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.204.142.221:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.142.221:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "217.69.10.53:8002",
      "gossip": "217.69.10.53:8001",
      "pubkey": "STaKesuXJH6UGRizuEVSWG1tyLu5ycKgWj3i1HUdvs5",
      "pubsub": null,
      "tpuQuic": "217.69.10.53:8003",
      "tpuVote": "217.69.10.53:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "217.69.10.53:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "217.69.10.53:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.38.7:8002",
      "gossip": "64.130.32.153:8001",
      "pubkey": "E1r4Psq84tHfQ6aPTvvDka4U3u8zPVD7gEUrH25RdxHL",
      "pubsub": null,
      "tpuQuic": "64.130.32.153:8002",
      "tpuVote": "64.130.32.153:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.153:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.153:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.198.138:8001",
      "gossip": "88.216.198.138:8000",
      "pubkey": "vALigXFg9wnnhVHN16vNxHxXtAXiBv5QjAE6udoniBY",
      "pubsub": null,
      "tpuQuic": "64.130.54.221:5010",
      "tpuVote": "88.216.198.138:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "88.216.198.138:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.221:5011"
    },
    {
      "rpc": "64.130.42.99:8899",
      "tpu": null,
      "tvu": "64.130.42.99:8001",
      "gossip": "64.130.42.99:8000",
      "pubkey": "Ex1AxFCipXGfSxgvXPPT3nPQUARddCduHwKR6jHiXAaT",
      "pubsub": "64.130.42.99:8900",
      "tpuQuic": "64.130.42.138:9007",
      "tpuVote": "64.130.42.99:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.99:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.138:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.176.66.213:8001",
      "gossip": "64.176.66.213:8000",
      "pubkey": "BR1aTt4ZZUCwWJDkSYf1hqkYJjo7Mb7Ar8iVTkeSwUB8",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "64.176.66.213:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.176.66.213:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.64.4:8000",
      "gossip": "84.32.64.4:8001",
      "pubkey": "9USijQaAfSzw6gWbHNq68VVigmj3HvffDJYhbK4tfquB",
      "pubsub": null,
      "tpuQuic": "84.32.64.4:11228",
      "tpuVote": "84.32.64.4:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "84.32.64.4:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.64.4:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.128.72.164:8002",
      "gossip": "57.128.72.164:8001",
      "pubkey": "4XspXDcJy3DWZsVdaXrt8pE1xhcLpXDKkhj9XyjmWWNy",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "57.128.72.164:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "57.128.72.164:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.70.0.4:8100",
      "gossip": "103.70.0.4:8001",
      "pubkey": "8T8AJfUCXwPFwEMmjca8gCRSktPrqbUBVa6ggNyhLhFJ",
      "pubsub": null,
      "tpuQuic": "198.13.130.228:9007",
      "tpuVote": "103.70.0.4:8103",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "103.70.0.4:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.228:9007"
    },
    {
      "rpc": "206.223.226.219:18899",
      "tpu": null,
      "tvu": "206.223.226.219:8001",
      "gossip": "206.223.226.219:8000",
      "pubkey": "sTEVErNNwF2qPnV6DuNPkWpEyCt4UU6k2Y3Hyn7WUFu",
      "pubsub": "206.223.226.219:18899",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "206.223.226.219:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "206.223.226.219:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.30:8001",
      "gossip": "45.154.33.30:8000",
      "pubkey": "3tzpLMWRkWucvTRWU5PjgKzN1iwJuV69yCCjmuuo4gTk",
      "pubsub": null,
      "tpuQuic": "64.130.42.138:9007",
      "tpuVote": "45.154.33.30:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "45.154.33.30:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.138:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "31.134.207.212:30000",
      "gossip": "31.134.207.212:33000",
      "pubkey": "GwHH8ciFhR8vejWCqmg8FWZUCNtubPY2esALvy5tBvji",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "31.134.207.212:30003",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "31.134.207.212:30008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.183:8001",
      "gossip": "70.40.185.183:8000",
      "pubkey": "HM1KjNaXa4w8K4gCXbieoMh5gUTNeUhg9fvdXMKeBW3L",
      "pubsub": null,
      "tpuQuic": "64.130.41.137:9007",
      "tpuVote": "70.40.185.183:8004",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.183:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.137:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.250.253.96:8001",
      "gossip": "45.250.253.96:8000",
      "pubkey": "FGiEdzde7Fco2WLpNQMat299hUVoykJdaA5hxdmCzHiS",
      "pubsub": null,
      "tpuQuic": "45.250.253.96:8002",
      "tpuVote": "45.250.253.96:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.250.253.96:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.250.253.96:8003"
    },
    {
      "rpc": "195.14.6.38:8899",
      "tpu": null,
      "tvu": "195.14.6.38:8002",
      "gossip": "195.14.6.38:8001",
      "pubkey": "3KNGMiXwhy2CAWVNpLoUt25sNngFnX1mZpaiEeVccBA6",
      "pubsub": "195.14.6.38:8900",
      "tpuQuic": "195.14.6.38:8003",
      "tpuVote": "195.14.6.38:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "195.14.6.38:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "195.14.6.38:8004"
    },
    {
      "rpc": "67.213.122.21:18899",
      "tpu": null,
      "tvu": "67.213.122.21:8003",
      "gossip": "67.213.122.21:8001",
      "pubkey": "97jbhVBYcSmwGXjrx5PPWXucDsVBqwyoQ6rzP3B6eeMt",
      "pubsub": "67.213.122.21:18899",
      "tpuQuic": "198.13.130.228:9007",
      "tpuVote": "67.213.122.21:9001",
      "version": "0.912.40003",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "67.213.122.21:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.228:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "177.54.154.173:8001",
      "gossip": "177.54.154.173:8000",
      "pubkey": "PUmpKiNnSVAZ3w4KaFX6jKSjXUNHFShGkXbERo54xjb",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "177.54.154.173:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "177.54.154.173:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "66.165.246.46:8001",
      "gossip": "66.165.246.46:8000",
      "pubkey": "BoNKmNCGvoHS4CkKvYRnF21iEpUP827pZjhFGdA4t5as",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "66.165.246.46:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "66.165.246.46:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.128.149.72:8001",
      "gossip": "216.128.149.72:8000",
      "pubkey": "3s97yjq2MhoPVPC3U9VeE3Z5S643Pweovg88ysvrQPw5",
      "pubsub": null,
      "tpuQuic": "64.130.54.221:5010",
      "tpuVote": "216.128.149.72:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "216.128.149.72:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.221:5011"
    },
    {
      "rpc": "216.128.149.116:8899",
      "tpu": null,
      "tvu": "216.128.149.116:8001",
      "gossip": "216.128.149.116:8000",
      "pubkey": "CiR8HNCfkjtcongPmP2DRdZPnFgjSbN5gsXdjmsXXHcB",
      "pubsub": "216.128.149.116:8900",
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "216.128.149.116:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "216.128.149.116:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.248.62.208:8001",
      "gossip": "149.248.62.208:8002",
      "pubkey": "Av8EnYrPBnSJHK5e2wmTdnCpSy7nzmBgyFaUKSyLnBfe",
      "pubsub": null,
      "tpuQuic": "64.130.54.221:5010",
      "tpuVote": "149.248.62.208:8005",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "149.248.62.208:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.221:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "37.72.171.18:8001",
      "gossip": "37.72.171.18:8000",
      "pubkey": "AYY1TCe347UZ7zueBmF4MyoFkeEZquRUNVBNoUZiRoew",
      "pubsub": null,
      "tpuQuic": "37.72.171.18:8002",
      "tpuVote": "37.72.171.18:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "37.72.171.18:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "37.72.171.18:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "155.138.165.127:8001",
      "gossip": "155.138.165.127:8000",
      "pubkey": "6Rk694kh1QTyQkirdb1uDZmS5xqG9bNaYtxx8d311Mr7",
      "pubsub": null,
      "tpuQuic": "141.98.218.181:5010",
      "tpuVote": "155.138.165.127:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "155.138.165.127:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.218.181:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.205:8001",
      "gossip": "70.40.185.205:8000",
      "pubkey": "8a4juhtQScHcXPAcqVF3otxLMqxZMDALcE3FEVGBnKu8",
      "pubsub": null,
      "tpuQuic": "70.40.185.205:8009",
      "tpuVote": "70.40.185.205:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.205:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.205:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "92.42.110.111:8003",
      "gossip": "92.42.110.111:8001",
      "pubkey": "PKdLMugp1Mf88Ji1GkdqRDBewaUh2cqg79CBEo6eJoQ",
      "pubsub": null,
      "tpuQuic": "92.42.110.111:9007",
      "tpuVote": "92.42.110.111:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "92.42.110.111:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "92.42.110.111:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.32.214.57:8001",
      "gossip": "45.32.214.57:8000",
      "pubkey": "4GEEKSwuiBHWTff9WaqrDcToZjbX6KYdyB4c578Zxse2",
      "pubsub": null,
      "tpuQuic": "141.98.218.181:5010",
      "tpuVote": "45.32.214.57:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.32.214.57:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.218.181:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.132.215:8001",
      "gossip": "45.139.132.215:8000",
      "pubkey": "BPKAfGkkzF5u1QRjjB1nWYYbPMUCMPJe1xZPmwEMNMCT",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "45.139.132.215:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.139.132.215:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": "191.44.100.2:18899",
      "tpu": null,
      "tvu": "191.44.100.2:8001",
      "gossip": "191.44.100.2:8000",
      "pubkey": "dcntruDNP5SEcGV4RxnsqXFURdDZGT3DTQv68Q8H7Vu",
      "pubsub": "191.44.100.2:18899",
      "tpuQuic": "191.44.100.2:8002",
      "tpuVote": "191.44.100.2:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "191.44.100.2:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "191.44.100.2:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.100:8021",
      "gossip": "84.32.103.100:8001",
      "pubkey": "H8fHToVcZPi5bupGZohGPX2SWs8NHzgFKQ31wi5n6oux",
      "pubsub": null,
      "tpuQuic": "84.32.103.100:8022",
      "tpuVote": "84.32.103.100:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "84.32.103.100:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.100:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "79.127.227.22:8001",
      "gossip": "79.127.227.22:8000",
      "pubkey": "DB7DNWMVQASMFxcjkwdr4w4eg3NmfjWTk2rqFMMbrPLA",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "79.127.227.22:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "79.127.227.22:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": "191.44.100.5:18899",
      "tpu": null,
      "tvu": "191.44.100.5:8001",
      "gossip": "191.44.100.5:8000",
      "pubkey": "novaeuhY2JH2WHhc9KVTHDx2cyJZdXJC6faf4CtARZn",
      "pubsub": "191.44.100.5:18899",
      "tpuQuic": "191.44.100.5:11228",
      "tpuVote": "191.44.100.5:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "191.44.100.5:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "191.44.100.5:11229"
    },
    {
      "rpc": "138.226.230.195:8899",
      "tpu": null,
      "tvu": "138.226.230.195:8003",
      "gossip": "138.226.230.195:8001",
      "pubkey": "t23p8aBQN6P6tziMuN5XPmzqVRrip9oes7KuQwSmate",
      "pubsub": "138.226.230.195:8900",
      "tpuQuic": "138.226.230.195:9007",
      "tpuVote": "138.226.230.195:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "138.226.230.195:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "138.226.230.195:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.164.218:8100",
      "gossip": "5.199.164.218:8001",
      "pubkey": "DeXsDvvZzKhVux4YfDFE6p4acJLGzr8yKt5pSTjzZB8t",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "5.199.164.218:8103",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "5.199.164.218:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": "206.223.226.221:18899",
      "tpu": null,
      "tvu": "206.223.226.221:8001",
      "gossip": "206.223.226.221:8000",
      "pubkey": "RoYLttggWwa2st3KAGEjnPhsq4NPD5QwaNVyyR8pTz4",
      "pubsub": "206.223.226.221:18899",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "206.223.226.221:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "206.223.226.221:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.238.158.109:8001",
      "gossip": "104.238.158.109:8000",
      "pubkey": "BirdeyeK5yooepHNNgaW2bGGDD2jmib4oSRFTHyELbZ1",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "104.238.158.109:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "104.238.158.109:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.239.117.200:8001",
      "gossip": "64.239.117.200:8000",
      "pubkey": "CaveyttUBTKttncu1e4RF814XjuoGfYv8cEsiKGDNCPX",
      "pubsub": null,
      "tpuQuic": "198.73.57.238:9007",
      "tpuVote": "64.239.117.200:8003",
      "version": "0.911.40002",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.239.117.200:8018",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.73.57.238:9007"
    },
    {
      "rpc": "142.91.100.148:18899",
      "tpu": null,
      "tvu": "142.91.100.148:8001",
      "gossip": "142.91.100.148:8000",
      "pubkey": "AfZTWYoFQbzqCMmUBTD7XwxFvjob1FVyCvkaXRryxtKc",
      "pubsub": "142.91.100.148:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "142.91.100.148:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "142.91.100.148:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.244.253.219:8000",
      "gossip": "198.244.253.219:8001",
      "pubkey": "yJeahQNRHNWtL9Z1SqPX3SBwTYXr5ECMYYVK4uYVwxt",
      "pubsub": null,
      "tpuQuic": "198.244.253.219:8002",
      "tpuVote": "198.244.253.219:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.244.253.219:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.244.253.219:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.184.22:8000",
      "gossip": "70.40.184.22:8001",
      "pubkey": "sTEAKPk59EtPPbixCweyv6oRLNCDEE8pnnef6gUfbiW",
      "pubsub": null,
      "tpuQuic": "70.40.184.22:8002",
      "tpuVote": "70.40.184.22:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "70.40.184.22:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.184.22:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.109.101.10:8001",
      "gossip": "103.109.101.10:8000",
      "pubkey": "E9hD3ikumJx1GVswDjnpCt6Uu4WG5mz1PDWCqdE5uhmo",
      "pubsub": null,
      "tpuQuic": "103.109.101.10:8002",
      "tpuVote": "103.109.101.10:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "103.109.101.10:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.109.101.10:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.88.233.111:8001",
      "gossip": "103.88.233.111:8000",
      "pubkey": "5t4shVsKnUqgjmhK3fFNsvyju2E6Rd7cc4S5pmqqEVEW",
      "pubsub": null,
      "tpuQuic": "103.88.233.111:8002",
      "tpuVote": "103.88.233.111:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.88.233.111:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.88.233.111:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.18.211.210:50001",
      "gossip": "216.18.211.210:50000",
      "pubkey": "SQDS9iwyWvT2mQbSZzuNKGoxuBug5jRHouF6SuMRBkA",
      "pubsub": null,
      "tpuQuic": "64.130.53.11:5010",
      "tpuVote": "216.18.211.210:50004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "216.18.211.210:50009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.11:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "151.123.175.13:8000",
      "gossip": "151.123.175.13:8001",
      "pubkey": "CTDGxTK789ZvhgyHZHtSnxTtysbyY1mrywXEJiYYqXxC",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "151.123.175.13:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "151.123.175.13:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.169.79.114:6001",
      "gossip": "185.169.79.114:6000",
      "pubkey": "FjYEr2UCeFzNfAKiFrbhG34Zv8LxbmfHYAFhAfc7SLQL",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "185.169.79.114:6004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "185.169.79.114:6009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.166.162.145:8002",
      "gossip": "46.166.162.145:8001",
      "pubkey": "forb5u56XgvzxiKfRt4FVNFQKJrd2LWAfNCsCqL6P7q",
      "pubsub": null,
      "tpuQuic": "46.166.162.145:8003",
      "tpuVote": "46.166.162.145:8005",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "46.166.162.145:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "46.166.162.145:8004"
    },
    {
      "rpc": "67.213.122.207:18899",
      "tpu": null,
      "tvu": "67.213.122.207:8001",
      "gossip": "67.213.122.207:8000",
      "pubkey": "2AKKnirWVZMhnzuwqpizw9SwfZjGpRFLx2zCCNtPWpbc",
      "pubsub": "67.213.122.207:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "67.213.122.207:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "67.213.122.207:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "209.250.249.229:8000",
      "gossip": "209.250.249.229:8001",
      "pubkey": "777idJ8gG2cZXjc5Wvcq7RBtkvcU1TJ8WoLQSHaU8nN2",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "209.250.249.229:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "209.250.249.229:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": "84.32.32.16:8899",
      "tpu": null,
      "tvu": "84.32.32.16:8000",
      "gossip": "84.32.32.16:8001",
      "pubkey": "EATpCzQNs8BzZh1mx1hXMAJm3o1MLXakTXr4UEmcsY7f",
      "pubsub": "84.32.32.16:8900",
      "tpuQuic": "64.130.54.221:5010",
      "tpuVote": "84.32.32.16:8004",
      "version": "4.1.0-beta.3",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "84.32.32.16:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.221:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.19.216.113:12001",
      "gossip": "185.19.216.113:12000",
      "pubkey": "6k5hZkHGa4x3xEU7Wz2LxWwueqZtVvX3fpymGugB14yB",
      "pubsub": null,
      "tpuQuic": "185.19.216.113:12002",
      "tpuVote": "185.19.216.113:12004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.19.216.113:12009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.19.216.113:12003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.109.165.35:8100",
      "gossip": "109.109.165.35:8001",
      "pubkey": "2N7v8pDKDYhtBUJBQUgxvysUjgM9s4ULPCmeEiPWTf6Z",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "109.109.165.35:8103",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "109.109.165.35:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "135.125.142.234:8001",
      "gossip": "135.125.142.234:8000",
      "pubkey": "3KiDz3wuZrJfsgKt5KEvRb1WPpbci1PWj78aPVF5ei3F",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "135.125.142.234:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "135.125.142.234:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.32.206:8003",
      "gossip": "84.32.32.206:8001",
      "pubkey": "6yFGGAgYpBxgYPuHW4rv7hJmhKrUiXKyHkpVGaYtKrwE",
      "pubsub": null,
      "tpuQuic": "198.73.57.238:9007",
      "tpuVote": "84.32.32.206:9001",
      "version": "0.912.40003",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "84.32.32.206:9108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.73.57.238:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.36.36:8003",
      "gossip": "64.130.36.36:8001",
      "pubkey": "AHZxzLeRGRfNVFrCmP58iJgEwbcXyZeAkZ32CmbfEmYR",
      "pubsub": null,
      "tpuQuic": "64.130.36.36:9007",
      "tpuVote": "64.130.36.36:9001",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 1668064299,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.36.36:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "95.179.213.112:8001",
      "gossip": "95.179.213.112:8000",
      "pubkey": "2XmhZKHmfjku3T3nC9xKhgr5bm1CAmWXqNsNt49mo82C",
      "pubsub": null,
      "tpuQuic": "64.130.46.155:5010",
      "tpuVote": "95.179.213.112:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "95.179.213.112:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.155:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.119.173:8001",
      "gossip": "67.213.119.173:8000",
      "pubkey": "HLnodbYkL5PFA8hjAZDkm5pGzV7eLTvcs671AW2L6St9",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "67.213.119.173:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "67.213.119.173:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.172.175:12001",
      "gossip": "5.199.172.175:12000",
      "pubkey": "BSVckjdW2f8kcXPGcrPPtV9kUDBZ8w8PjrrGVnxgEdwq",
      "pubsub": null,
      "tpuQuic": "88.216.192.50:5010",
      "tpuVote": "5.199.172.175:12004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "5.199.172.175:12009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.192.50:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "148.113.187.125:8002",
      "gossip": "148.113.187.125:8001",
      "pubkey": "5AsoSeQtLoN8eLsf3wKrR3LwxHME4sTBGR6dpTCP1k3H",
      "pubsub": null,
      "tpuQuic": "148.113.187.125:8003",
      "tpuVote": "148.113.187.125:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "148.113.187.125:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "148.113.187.125:8004"
    },
    {
      "rpc": "206.223.226.211:18899",
      "tpu": null,
      "tvu": "206.223.226.211:8001",
      "gossip": "206.223.226.211:8000",
      "pubkey": "pineXRUnbaLNFMxaM3zBmFfTiKgQMGqT9jYHXZWq2Fw",
      "pubsub": "206.223.226.211:18899",
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "206.223.226.211:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "206.223.226.211:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.113:8002",
      "gossip": "64.130.52.113:8001",
      "pubkey": "FyLVPAKkgdAy8Gn9jnFYN5yjC1ubQWRkw2EHt2UnC8uA",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "64.130.52.113:8005",
      "version": "4.0.0",
      "clientId": "AgaveBam",
      "featureSet": 3718597879,
      "serveRepair": "64.130.52.113:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.210.160.82:8001",
      "gossip": "204.210.160.82:8000",
      "pubkey": "toshB4tPQTFfyd3VFz2tC3nmEFHVmiBMUpcxwWiexn2",
      "pubsub": null,
      "tpuQuic": "204.210.160.82:8002",
      "tpuVote": "204.210.160.82:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "204.210.160.82:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.210.160.82:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.8:8002",
      "gossip": "51.68.133.204:8001",
      "pubkey": "EbrAtAQb3QtyD3Lo3FGYTf3DUMVJKxnpRgSnVGff6f9v",
      "pubsub": null,
      "tpuQuic": "51.68.133.204:8003",
      "tpuVote": "51.68.133.204:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.133.204:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.133.204:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.127.115:8003",
      "gossip": "67.213.127.115:8001",
      "pubkey": "kom1oNHyyt84XLGVfi5Jo1qkVkU5xG1sBxPG19rWknE",
      "pubsub": null,
      "tpuQuic": "67.213.127.115:9007",
      "tpuVote": "67.213.127.115:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "67.213.127.115:8028",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.127.115:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.189.44.171:12001",
      "gossip": "185.189.44.171:12000",
      "pubkey": "FbYX2uN573G5WsgiPdHU6fS5PNUyjdXfGfpZNkYUuT4k",
      "pubsub": null,
      "tpuQuic": "185.189.44.171:12002",
      "tpuVote": "185.189.44.171:12004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.189.44.171:12009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.189.44.171:12003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.247:8001",
      "gossip": "64.130.40.247:8000",
      "pubkey": "5ivRNcK1yThcK3koZR1oikAfuNm6rj1LceMskayoVSzc",
      "pubsub": null,
      "tpuQuic": "198.13.140.53:9007",
      "tpuVote": "64.130.40.247:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.247:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.53:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.19.43.140:9402",
      "gossip": "162.19.43.140:9401",
      "pubkey": "9ppJrpsbbuGNjiMhhD52Ueco4KXUzVfrtNQ6tAcDab4f",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "162.19.43.140:9405",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "162.19.43.140:9410",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.132.246:8001",
      "gossip": "45.139.132.246:8000",
      "pubkey": "5fSQdv4zsAJNx6RKpGho6sL6rY6a8nziaqcmwaRJB9NE",
      "pubsub": null,
      "tpuQuic": "45.139.132.246:8009",
      "tpuVote": "45.139.132.246:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.139.132.246:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.139.132.246:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.184.125:30002",
      "gossip": "70.40.184.125:30003",
      "pubkey": "puffinQSvKFriPbyE5atyx1ptfnyytovbzxybr1jsyy",
      "pubsub": null,
      "tpuQuic": "70.40.184.125:9007",
      "tpuVote": "70.40.184.125:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "70.40.184.125:30012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.184.125:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.142.158:8003",
      "gossip": "104.204.142.158:8001",
      "pubkey": "q1yPXLsYcJhzxhUYLewFDjYmsBh2gDFnYqrZ9VPshrk",
      "pubsub": null,
      "tpuQuic": "104.204.142.158:9007",
      "tpuVote": "104.204.142.158:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "104.204.142.158:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.142.158:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.53.20:8002",
      "gossip": "64.130.43.211:8001",
      "pubkey": "BUv44cVtsdvU9z2BfFGk6s5JZZWrmVnq5qCaii5ARyyB",
      "pubsub": null,
      "tpuQuic": "63.254.167.199:5010",
      "tpuVote": "64.130.43.211:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.211:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.167.199:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "213.21.195.65:8001",
      "gossip": "213.21.195.65:8000",
      "pubkey": "AS4i8EXUZnPbmNT5ZXmoTEbrXQrbFoReiWwwFB43Ds5z",
      "pubsub": null,
      "tpuQuic": "213.21.195.65:11228",
      "tpuVote": "213.21.195.65:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "213.21.195.65:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "213.21.195.65:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.242.0.106:8001",
      "gossip": "216.242.0.106:8000",
      "pubkey": "7zAHbRxEQaNjKnQMjFm7j8LebHSGfzsQDdm2ZpUNPa7G",
      "pubsub": null,
      "tpuQuic": "216.242.0.106:8002",
      "tpuVote": "216.242.0.106:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.242.0.106:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.242.0.106:8003"
    },
    {
      "rpc": "67.213.120.33:8899",
      "tpu": null,
      "tvu": "67.213.120.33:8001",
      "gossip": "67.213.120.33:8000",
      "pubkey": "DidkDYa64DEMx97P4iahDwsWtgUTnLiEhHSMUbQGihi5",
      "pubsub": "67.213.120.33:8900",
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "67.213.120.33:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "67.213.120.33:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": "64.130.44.99:8899",
      "tpu": null,
      "tvu": "64.130.44.99:8001",
      "gossip": "64.130.44.99:8000",
      "pubkey": "9W3QTgBhkU4Bwg6cwnDJo6eGZ9BtZafSdu1Lo9JmWws7",
      "pubsub": "64.130.44.99:8900",
      "tpuQuic": "63.254.162.99:9007",
      "tpuVote": "64.130.44.99:8004",
      "version": "4.1.0-rc.1",
      "clientId": "HarmonicAgave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.44.99:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.162.99:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "169.155.168.182:8002",
      "gossip": "169.155.168.182:8001",
      "pubkey": "vu1sGn2f1Xim6voHNLt4nLn38zNkYdLasU7hEr1TC2D",
      "pubsub": null,
      "tpuQuic": "169.155.44.26:11228",
      "tpuVote": "169.155.168.182:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "169.155.168.182:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "169.155.44.26:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "177.54.159.107:8001",
      "gossip": "177.54.159.107:8000",
      "pubkey": "SANDCxXBbQhvbUqNtiLqKdFEY1uQhVo1UgUACaS4mXU",
      "pubsub": null,
      "tpuQuic": "177.54.159.107:11228",
      "tpuVote": "177.54.159.107:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "177.54.159.107:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "177.54.159.107:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "148.113.199.188:8001",
      "gossip": "148.113.199.188:8000",
      "pubkey": "AoUwfPuiEek2thVRDhMP7HbQb9rguyab4rDiz2NAfwwA",
      "pubsub": null,
      "tpuQuic": "148.113.199.188:8002",
      "tpuVote": "148.113.199.188:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "148.113.199.188:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "148.113.199.188:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.128.181.161:8001",
      "gossip": "216.128.181.161:8002",
      "pubkey": "EWARp8Syq8cTWGWHtP5LT9fKAn5GvXfSCH8LfAwpgQ6m",
      "pubsub": null,
      "tpuQuic": "64.130.35.233:5010",
      "tpuVote": "216.128.181.161:8005",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "216.128.181.161:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.233:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.158.67.210:8003",
      "gossip": "216.158.67.210:8001",
      "pubkey": "HrpWeJSYnQVtZe3BKxFCBrAEr8GRCmYUbQev4hoGDBs6",
      "pubsub": null,
      "tpuQuic": "216.158.67.210:9007",
      "tpuVote": "216.158.67.210:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "216.158.67.210:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.158.67.210:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.113.1:8001",
      "gossip": "67.213.113.1:8000",
      "pubkey": "AiDoLWFKzNxSXKeZ4zym2TEPkg6F4kQ3YBA8WhANVPEq",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "67.213.113.1:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "67.213.113.1:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": "67.213.122.205:18899",
      "tpu": null,
      "tvu": "67.213.122.205:8001",
      "gossip": "67.213.122.205:8000",
      "pubkey": "MagiCBYNPD9iTBXqiFybAFCREQzG6MSM4LmFLXQZxuV",
      "pubsub": "67.213.122.205:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "67.213.122.205:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "67.213.122.205:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "212.20.238.52:8900",
      "gossip": "212.20.238.52:8001",
      "pubkey": "8pyp3vfVPRziYdAYEyqkwytdBbdVbQmHqfQAVDcRV3w",
      "pubsub": null,
      "tpuQuic": "64.130.46.155:5010",
      "tpuVote": "212.20.238.52:8903",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "212.20.238.52:8907",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.155:5011"
    },
    {
      "rpc": "72.46.84.213:8899",
      "tpu": null,
      "tvu": "72.46.84.213:8001",
      "gossip": "72.46.84.213:8000",
      "pubkey": "5MAGJ3zShtXMMVXjZRoFqtFF7XhP8iLSyZrxdL7KpjcB",
      "pubsub": "72.46.84.213:8900",
      "tpuQuic": "72.46.84.213:8002",
      "tpuVote": "72.46.84.213:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "72.46.84.213:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.46.84.213:8003"
    },
    {
      "rpc": "91.242.214.213:8899",
      "tpu": null,
      "tvu": "91.242.214.213:8001",
      "gossip": "91.242.214.213:8000",
      "pubkey": "5yEnvhM4Ld3UZs2n173J2iR369E1ddcbQYeLSZxk4cYj",
      "pubsub": "91.242.214.213:8900",
      "tpuQuic": "91.242.214.213:8002",
      "tpuVote": "91.242.214.213:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "91.242.214.213:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.242.214.213:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.241:5556",
      "gossip": "45.152.160.241:5555",
      "pubkey": "bay3wXfJsu9ds1zQBoQQ4DUwFGs3NP6q4gca9WM5G1z",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "45.152.160.241:5559",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.152.160.241:5564",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.238.152.251:8001",
      "gossip": "104.238.152.251:8000",
      "pubkey": "7HMHSdQkjDwz9Q5zAhEy83uzW3XHJchjdpMYapKXcKt5",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "104.238.152.251:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "104.238.152.251:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.128.141.76:8001",
      "gossip": "216.128.141.76:8000",
      "pubkey": "cybi55ebub37HZW9YmRaLh59Lh3kqaLTsEBQwW6vFkC",
      "pubsub": null,
      "tpuQuic": "141.98.218.181:5010",
      "tpuVote": "216.128.141.76:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "216.128.141.76:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.218.181:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "165.254.143.125:8001",
      "gossip": "165.254.143.125:8000",
      "pubkey": "BCeczqpTRPigndHVJu1KEzno1Uhb4hjrE7ttmAndrV1p",
      "pubsub": null,
      "tpuQuic": "165.254.143.125:8002",
      "tpuVote": "165.254.143.125:8004",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "165.254.143.125:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "165.254.143.125:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.114:8001",
      "gossip": "64.130.44.114:8000",
      "pubkey": "HarmonicyK3BwamKNtWnQAmUeK4GYGXXzeD9FD8WMyZi",
      "pubsub": null,
      "tpuQuic": "63.254.162.99:9007",
      "tpuVote": "63.254.162.99:9001",
      "version": "0.1.1",
      "clientId": "HarmonicFiredancer",
      "featureSet": 1668064299,
      "serveRepair": "64.130.44.114:8702",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.162.99:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.215.176:8001",
      "gossip": "2.57.215.176:8000",
      "pubkey": "BxkAkLR2W3agWtjMXBNvhxmB8vsn7zhjNQcyfost99KY",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "2.57.215.176:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "2.57.215.176:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "50.7.5.42:8001",
      "gossip": "50.7.5.42:8000",
      "pubkey": "4VrjyXQT61WFSjuG3ehgqZUK1jqvYqB46veQbXLotq3n",
      "pubsub": null,
      "tpuQuic": "64.130.46.155:5010",
      "tpuVote": "50.7.5.42:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "50.7.5.42:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.155:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.132.199:8001",
      "gossip": "45.139.132.199:8000",
      "pubkey": "AWZhUiQjrjtxL8MEMWsCFbMausFQKkdTnDsFW2i411hN",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "45.139.132.199:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.139.132.199:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.140:8001",
      "gossip": "64.130.42.140:8000",
      "pubkey": "BiGcsiuFCLuiTzXoQgfLdge9sfpwr55YzdT8Kp7bCXmS",
      "pubsub": null,
      "tpuQuic": "64.130.42.138:9007",
      "tpuVote": "64.130.42.140:8003",
      "version": "0.911.40002",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.140:8018",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.138:9007"
    },
    {
      "rpc": "70.40.184.126:8899",
      "tpu": null,
      "tvu": "70.40.184.126:8000",
      "gossip": "70.40.184.126:8001",
      "pubkey": "TopjgY7N1fJdnW89S9fX6t7LF61nspgXGL1NpgAKhDG",
      "pubsub": "70.40.184.126:8900",
      "tpuQuic": "45.139.132.75:11228",
      "tpuVote": "70.40.184.126:8004",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "70.40.184.126:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.139.132.75:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "173.237.209.131:8001",
      "gossip": "173.237.209.131:8000",
      "pubkey": "PuRposE4utktenW49N8DCtVzdVEwYrmsrroboEUram4",
      "pubsub": null,
      "tpuQuic": "173.237.209.131:8002",
      "tpuVote": "173.237.209.131:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "173.237.209.131:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "173.237.209.131:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.139:8000",
      "gossip": "70.40.185.139:8001",
      "pubkey": "Va1idLRtYEtVFJFsvz8vtt1uCJgea4Q1zi2Rh3eraJh",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "70.40.185.139:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.139:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": "155.138.141.175:8899",
      "tpu": null,
      "tvu": "155.138.141.175:8001",
      "gossip": "155.138.141.175:8000",
      "pubkey": "3iQqh65Gby53aaYUF8ocoiEyhBs4aoe7BTYYWvy1c9dF",
      "pubsub": "155.138.141.175:8900",
      "tpuQuic": "155.138.141.175:8002",
      "tpuVote": "155.138.141.175:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "155.138.141.175:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "155.138.141.175:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "151.123.175.12:8100",
      "gossip": "151.123.175.12:8001",
      "pubkey": "PAWsME7oYbjt5TRNc11mBa33JhKnQr9AYherdr9YAZ6",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "151.123.175.12:8103",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "151.123.175.12:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.53.36:8002",
      "gossip": "63.254.165.80:8001",
      "pubkey": "GQzMeEMwAR44ugoNCifTb5NdRKos1GduDUPeNh6AgV46",
      "pubsub": null,
      "tpuQuic": "63.254.165.80:8003",
      "tpuVote": "63.254.165.80:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "63.254.165.80:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.165.80:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.142.92:8000",
      "gossip": "104.204.142.92:8001",
      "pubkey": "8yjHdsCgx3bp2zEwGiWSMgwpFaCSzfYAHT1vk7KJBqhN",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "104.204.142.92:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "104.204.142.92:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "62.113.194.108:8001",
      "gossip": "62.113.194.108:8000",
      "pubkey": "HMWXfjaeSHhww1wvdBhqhHVP9v96mFB4LJ9xP2MXbDGH",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "62.113.194.108:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "62.113.194.108:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": "177.54.154.221:18899",
      "tpu": null,
      "tvu": "177.54.154.221:8001",
      "gossip": "177.54.154.221:8000",
      "pubkey": "axy3tCRL3wmFMVG4c69rYurcf4fXhBo2RcuBj9ADnJ4",
      "pubsub": "177.54.154.221:18899",
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "177.54.154.221:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "177.54.154.221:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.215.76:8001",
      "gossip": "2.57.215.76:8000",
      "pubkey": "FwnWx7x99rGwLmipzz8ii15NqcHkKRo2oS1Y7j6LivgZ",
      "pubsub": null,
      "tpuQuic": "208.91.109.115:5010",
      "tpuVote": "2.57.215.76:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "2.57.215.76:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.115:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "79.127.231.171:8001",
      "gossip": "79.127.231.171:8000",
      "pubkey": "6XKqyUVUcpe3CNucjF6gk5zonJDqNGvob6kaTy4Ps1U",
      "pubsub": null,
      "tpuQuic": "141.98.218.181:5010",
      "tpuVote": "79.127.231.171:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "79.127.231.171:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.218.181:5011"
    },
    {
      "rpc": "64.130.42.209:8899",
      "tpu": null,
      "tvu": "64.130.42.209:8001",
      "gossip": "64.130.42.209:8000",
      "pubkey": "XkCriyrNwS3G4rzAXtG5B1nnvb5Ka1JtCku93VqeKAr",
      "pubsub": "64.130.42.209:8900",
      "tpuQuic": "64.130.42.138:9007",
      "tpuVote": "64.130.42.209:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.209:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.138:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.26.8.33:8002",
      "gossip": "185.26.8.33:8001",
      "pubkey": "sce2zXNjLpPMcSCATTrLiQhAAvHNNMKypTFVtg2H37U",
      "pubsub": null,
      "tpuQuic": "185.26.8.33:8003",
      "tpuVote": "185.26.8.33:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "185.26.8.33:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.8.33:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "192.41.71.180:8001",
      "gossip": "192.41.71.180:8000",
      "pubkey": "parafiUS6h6oLhCFwhjvEmQJKw8pF1iXsxMJdTq46dS",
      "pubsub": null,
      "tpuQuic": "64.130.53.11:5010",
      "tpuVote": "192.41.71.180:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "192.41.71.180:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.11:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.88.233.89:8001",
      "gossip": "103.88.233.89:8000",
      "pubkey": "8ZQg3K1V1Z2BVJkjmnxpi43WKhjPGXphzu5QmBkJibSP",
      "pubsub": null,
      "tpuQuic": "103.88.233.89:11228",
      "tpuVote": "103.88.233.89:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.88.233.89:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.88.233.89:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "107.182.163.250:8003",
      "gossip": "107.182.163.250:8001",
      "pubkey": "32jCuWyy4aJjyv4gd4DSGBHmFU5KUSSfqbmPb9GpMin6",
      "pubsub": null,
      "tpuQuic": "107.182.163.250:9007",
      "tpuVote": "107.182.163.250:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "107.182.163.250:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "107.182.163.250:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.119.103:38001",
      "gossip": "67.213.119.103:38000",
      "pubkey": "7EzbSahSfSjeRexHcNDLDpzHBAGBLjLKtjbmuoQnEtjE",
      "pubsub": null,
      "tpuQuic": "64.130.54.221:5010",
      "tpuVote": "67.213.119.103:38004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "67.213.119.103:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.221:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "95.179.161.157:8001",
      "gossip": "95.179.161.157:8000",
      "pubkey": "EN5F2BU5juUEWr9zRNNqKuQMi9zBUY1YLPHV5EyMrvnW",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "95.179.161.157:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "95.179.161.157:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "83.143.84.46:8001",
      "gossip": "83.143.84.46:8000",
      "pubkey": "NordEHiwa6wT5TCjdeWJzpsA7DSmWQPqfSS7m2b6cv3",
      "pubsub": null,
      "tpuQuic": "88.216.192.50:5010",
      "tpuVote": "83.143.84.46:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "83.143.84.46:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.192.50:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.204.110.131:8001",
      "gossip": "15.204.110.131:8000",
      "pubkey": "38zm5bBgDaNRSQBDUAL72kMH3RsX4UKmZiNmmrjuTq8W",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "15.204.110.131:8004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "15.204.110.131:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "95.179.216.68:6001",
      "gossip": "95.179.216.68:6000",
      "pubkey": "6gnbmed7kzwQVQ7ghsjgEuCoYmGeWciV2qCwni6WS6HU",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "95.179.216.68:6004",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "95.179.216.68:6009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.50.101.21:8001",
      "gossip": "149.50.101.21:8000",
      "pubkey": "7knvB4bbqHCKuNp3ef2hJWdwqoH6WAUi55NQt6LdRfkx",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "149.50.101.21:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "149.50.101.21:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.238.223.198:8001",
      "gossip": "89.238.223.198:8000",
      "pubkey": "CVRr5oHCAAooVbYze7CvXtRp4FUtkMCSqBZU7MVu8v8e",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "89.238.223.198:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "89.238.223.198:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.32.230.164:8000",
      "gossip": "45.32.230.164:8001",
      "pubkey": "FdH9QEQBxPQfaF2JpcjgdfcMnDb7rjZkCDRCWLRjTQwj",
      "pubsub": null,
      "tpuQuic": "64.130.53.11:5010",
      "tpuVote": "45.32.230.164:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.32.230.164:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.11:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.132.173:8001",
      "gossip": "45.139.132.173:8000",
      "pubkey": "3WDh9HgusCujDmXCVhophLrHvoKHQd1Sd4uFHz1Awo35",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "45.139.132.173:8004",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.139.132.173:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "107.155.95.154:28901",
      "gossip": "107.155.95.154:28900",
      "pubkey": "HnwMGBAw5PxaX56eSYc969MorEy2NzEMPLkmBkdnJmeq",
      "pubsub": null,
      "tpuQuic": "198.13.131.139:5010",
      "tpuVote": "107.155.95.154:28904",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "107.155.95.154:28909",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.131.139:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.62:8888",
      "gossip": "198.13.133.46:8000",
      "pubkey": "8ipHRKiYZU8MqzarjCKom44f2v8ijGuJ8KsU3DdQ4Rvk",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.162.153:8001",
      "gossip": "63.254.162.153:8000",
      "pubkey": "9AyqW5yUmVp3sy4QxiBpv41jgMUgVvicCaUCoCRDrYnp",
      "pubsub": null,
      "tpuQuic": "63.254.162.153:8002",
      "tpuVote": "63.254.162.153:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "63.254.162.153:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.162.153:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.149:8002",
      "gossip": "64.130.52.149:8001",
      "pubkey": "9jmMKMkUz2NQFimT5hByYoU3hMHSTyK2nnKGVemCxFwJ",
      "pubsub": null,
      "tpuQuic": "64.130.52.149:8003",
      "tpuVote": "64.130.52.149:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.149:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.149:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.153:8002",
      "gossip": "51.38.95.153:8001",
      "pubkey": "5Y7Znz69wF8vmDWHL79fwSAiUSKUBentGn9gdA8mbsfS",
      "pubsub": null,
      "tpuQuic": "51.38.95.153:8003",
      "tpuVote": "51.38.95.153:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.95.153:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.95.153:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.10:8002",
      "gossip": "64.130.58.10:8001",
      "pubkey": "5y4KZPDsMjpSrmHRNsdGsmbKmXU9kWGAdCBpJiJSEaQ8",
      "pubsub": null,
      "tpuQuic": "64.130.58.10:8003",
      "tpuVote": "64.130.58.10:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.58.10:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.10:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.160:8888",
      "gossip": "45.250.253.5:8000",
      "pubkey": "HXA7V6BQWUQErpr5hCehqArxuaWA5cAKCB3f7mbqbgAX",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.86:8000",
      "pubkey": "GaEjqb9KceFvUSLZ2vUtao74zKxWpChjasKicGJYwV2B",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.66.181.159:10002",
      "gossip": "103.66.181.159:8001",
      "pubkey": "AnzyjWyEnte4LADB9J9ht5QF4qQHLcDT7B86nrdaUV4i",
      "pubsub": null,
      "tpuQuic": "103.66.181.159:10003",
      "tpuVote": "103.66.181.159:10005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "103.66.181.159:10010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.66.181.159:10004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.118:8000",
      "pubkey": "AEivKm6S2uXg4YV6KjiX2bWVbk9v5RXJAcCBiaFaLawc",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.140:8002",
      "gossip": "51.38.76.204:8001",
      "pubkey": "DiGHJhNym3QGwqBykMadqmbWGYHAFBWxNmw3RaLoviP5",
      "pubsub": null,
      "tpuQuic": "51.38.76.204:8003",
      "tpuVote": "51.38.76.204:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.76.204:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.76.204:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.142.185:8002",
      "gossip": "74.118.142.185:8001",
      "pubkey": "GEubru2ydZsJJ9weyUZuy1QEKeKzSQznnSWezWSQd8JW",
      "pubsub": null,
      "tpuQuic": "74.118.142.185:8003",
      "tpuVote": "74.118.142.185:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.142.185:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.142.185:8004"
    },
    {
      "rpc": "67.213.126.167:8899",
      "tpu": null,
      "tvu": "67.213.126.167:8001",
      "gossip": "67.213.126.167:8000",
      "pubkey": "9UM8wQ8F5oMiRcP5YdqD6Lr4krpBWCD8LtgQYoisJd9i",
      "pubsub": "67.213.126.167:8900",
      "tpuQuic": "64.130.63.16:9007",
      "tpuVote": "67.213.126.167:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.126.167:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.16:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.177:8888",
      "gossip": "198.13.136.209:8000",
      "pubkey": "FCQ1yaUPKjWoU41iA4xneng5CUA1eJSDzREq2NbVTL3L",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.242.175:8002",
      "gossip": "204.16.242.175:8001",
      "pubkey": "3Q6hc6AEUpgDdCffwoDuRwRA2JDmZbus4ZJKSCVNrXeF",
      "pubsub": null,
      "tpuQuic": "204.16.242.175:8003",
      "tpuVote": "204.16.242.175:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.242.175:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.242.175:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.247.242:8002",
      "gossip": "204.16.247.242:8001",
      "pubkey": "2L4mpwrshsChfszTbXanQF4X1YqPwdCP9Pp9EHAxKYMa",
      "pubsub": null,
      "tpuQuic": "204.16.247.242:8010",
      "tpuVote": "204.16.247.242:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "204.16.247.242:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.247.242:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.79:8002",
      "gossip": "51.222.146.245:8001",
      "pubkey": "f56Kzw3dJtfd3Z8VZygZaPtU2m2yqNyz3xQGKnQmEhb",
      "pubsub": null,
      "tpuQuic": "51.222.146.245:8003",
      "tpuVote": "51.222.146.245:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.146.245:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.146.245:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.57:8003",
      "gossip": "64.130.40.57:8001",
      "pubkey": "AeU9GcsE6uCt8gwzPyQtUfjgSEhGPYyqfsH3FYkBL4EA",
      "pubsub": null,
      "tpuQuic": "64.130.40.57:9007",
      "tpuVote": "64.130.40.57:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.57:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.57:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.220:8002",
      "gossip": "64.130.43.220:8001",
      "pubkey": "HnVNed7gA4jhS4Yv9rhw44ZD6JKFFppvpJ12yuTep1ER",
      "pubsub": null,
      "tpuQuic": "64.130.43.220:8003",
      "tpuVote": "64.130.43.220:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.220:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.220:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.183:8001",
      "gossip": "67.213.121.183:8000",
      "pubkey": "AyvCsTYbRRMCjRNsFcN2nqCcKkNSu2bkrGBqB63RefDJ",
      "pubsub": null,
      "tpuQuic": "67.213.121.183:8009",
      "tpuVote": "67.213.121.183:8005",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "67.213.121.183:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.183:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "165.254.143.124:8001",
      "gossip": "165.254.143.124:8000",
      "pubkey": "4moLWhPvc3nr9Nipzfn1erkpu7JVZWR7BxX6iUVhVjHC",
      "pubsub": null,
      "tpuQuic": "165.254.143.124:8002",
      "tpuVote": "165.254.143.124:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "165.254.143.124:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "165.254.143.124:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.202:8002",
      "gossip": "198.13.138.183:9004",
      "pubkey": "Dz3ik2fnZiKYFbSK8YCMsEZCWQYd2g6MvHvkN27KuVoT",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 1718981463,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.142:8001",
      "gossip": "64.130.61.142:8000",
      "pubkey": "4LGr18Jwdv9XKqgKaFQHAsZyu3Z4k7PxZ6CMLerSmj6m",
      "pubsub": null,
      "tpuQuic": "64.130.61.142:8002",
      "tpuVote": "64.130.61.142:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.61.142:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.142:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.166:8002",
      "gossip": "51.81.39.60:8001",
      "pubkey": "3ejtqCALk7zTmZtVEftJfQwmGNALVkmUmxUTpVHZLc9K",
      "pubsub": null,
      "tpuQuic": "51.81.39.60:8003",
      "tpuVote": "51.81.39.60:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.39.60:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.39.60:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.70:8002",
      "gossip": "141.98.219.70:8001",
      "pubkey": "9Wku8rQdWrqQzBm1mz58HbAb1aYQdQs8xxyhE1CPq8W4",
      "pubsub": null,
      "tpuQuic": "141.98.219.70:8003",
      "tpuVote": "141.98.219.70:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.219.70:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.70:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.98.121:8001",
      "gossip": "109.94.98.121:8000",
      "pubkey": "3e6T2fouFWVTib8PVfh4qxMqGXfihj1njRGbkzi9UBhb",
      "pubsub": null,
      "tpuQuic": "109.94.98.121:8002",
      "tpuVote": "109.94.98.121:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "109.94.98.121:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.98.121:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.165:8002",
      "gossip": "64.130.32.165:8001",
      "pubkey": "8A5z1UCrLgAZnSeWibmYiiykCuuHgyziWa7XLRXnHKGc",
      "pubsub": null,
      "tpuQuic": "64.130.32.165:8003",
      "tpuVote": "64.130.32.165:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.165:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.165:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.142.188:8001",
      "gossip": "104.204.142.188:8000",
      "pubkey": "6nBxtZbhX7DV4ckoKJB9bg3UbDeTBnjwGbpSf6Yxcp2R",
      "pubsub": null,
      "tpuQuic": "104.204.142.188:8009",
      "tpuVote": "104.204.142.188:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.204.142.188:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.142.188:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.83.155:8000",
      "pubkey": "HDqYtBxGV2CPSQsbBNxVkDuxDPPjpbtLVNWo6r3U8YuL",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "72.251.11.56:8000",
      "pubkey": "GXb7mGcyDnjS7TxX3eoanyQWP7DcAfsWKKk4xyLb4BVu",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.188:8000",
      "pubkey": "ZB5Yenv8a6bQSUQAXqu7mUdePWLTsARZ3hsWbCN91X6",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.19.218.3:8001",
      "gossip": "185.19.218.3:8000",
      "pubkey": "2D1Mm3Y2LZMXMym9VNrbixmstkzrS8V1RWmagNsmdqmu",
      "pubsub": null,
      "tpuQuic": "185.19.218.3:8002",
      "tpuVote": "185.19.218.3:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.19.218.3:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.19.218.3:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.27:8888",
      "gossip": "63.254.161.187:8000",
      "pubkey": "7ihGVUg9Xqs5TFNEtEK9QVEoT6nG1jAU1ZBHJ4Sb2eLn",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "75.119.148.110:8001",
      "gossip": "75.119.148.110:8000",
      "pubkey": "FjjM3n6svsFhWnyDBDD38RGgu2FGEdreLcBT5185pppG",
      "pubsub": null,
      "tpuQuic": "75.119.148.110:8009",
      "tpuVote": "75.119.148.110:8005",
      "version": "3.1.15",
      "clientId": "Agave",
      "featureSet": 687058115,
      "serveRepair": "75.119.148.110:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "75.119.148.110:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.209:8002",
      "gossip": "51.81.195.97:8001",
      "pubkey": "FqbyHCrbuduEz56yATLiQxrWsviSc9QiSq5mkSz7zeM4",
      "pubsub": null,
      "tpuQuic": "51.81.195.97:8003",
      "tpuVote": "51.81.195.97:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.195.97:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.195.97:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.11:8002",
      "gossip": "64.130.32.11:8001",
      "pubkey": "DiqTGmY5nLnG9pYKsRGKc4iU7ZwAYwXLwuVgKEpn2w1p",
      "pubsub": null,
      "tpuQuic": "64.130.32.11:8003",
      "tpuVote": "64.130.32.11:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.11:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.11:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.124:8000",
      "pubkey": "FCL7aWBoRjWvvmHEQzEZerHNkp6MVq43EvSpocnRHgJu",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.96:8002",
      "gossip": "51.89.25.96:8001",
      "pubkey": "418E1hNEbVPAcWwvfcT84wxSkcEGq9F8UP2XMyw96Q4G",
      "pubsub": null,
      "tpuQuic": "51.89.25.96:8003",
      "tpuVote": "51.89.25.96:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.96:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.96:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.196:8002",
      "gossip": "202.8.11.196:8001",
      "pubkey": "6gMCpBX7YUSd6mzK3p7kpk2Jh5cm1gP9oWSgrom2iiHd",
      "pubsub": null,
      "tpuQuic": "202.8.11.196:8003",
      "tpuVote": "202.8.11.196:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.196:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.196:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "92.63.224.36:8001",
      "gossip": "92.63.224.36:8000",
      "pubkey": "HFBnb3AUcDAzNqXeoNSBGEvkK39PMGVvgnfi1mPfA7gL",
      "pubsub": null,
      "tpuQuic": "92.63.224.36:8002",
      "tpuVote": "92.63.224.36:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "92.63.224.36:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "92.63.224.36:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.16:8002",
      "gossip": "51.68.135.200:8001",
      "pubkey": "9sqHdKZm7GGRqrVhF6YA5HAT7N76MtqyovjNjQS3SY6h",
      "pubsub": null,
      "tpuQuic": "51.68.135.200:8003",
      "tpuVote": "51.68.135.200:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.135.200:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.135.200:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.246.62:8002",
      "gossip": "204.16.246.62:8001",
      "pubkey": "HvXRdD8GqTz5apQ4ETnB7YSnCZYbxgc3bhVsvnz2tDMs",
      "pubsub": null,
      "tpuQuic": "204.16.246.62:8003",
      "tpuVote": "204.16.246.62:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "204.16.246.62:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.246.62:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.209:8001",
      "gossip": "198.13.130.209:8000",
      "pubkey": "2KvtKuBvPNygYcpPmEimHcdVh5dziZ89TwjmYuqptz3a",
      "pubsub": null,
      "tpuQuic": "198.13.130.209:8002",
      "tpuVote": "198.13.130.209:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.209:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.209:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.59:8888",
      "gossip": "198.13.136.236:8000",
      "pubkey": "4qmKouHxU6qFrdqG74DDCaRW1aPGXZzbfcHbH9xLhqGh",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.209.178.89:8991",
      "gossip": "185.209.178.89:8000",
      "pubkey": "3gjA3wBfSq1SqXbjqVe2FXJLUm3RDboF8DNAMngwMzf8",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.1.13",
      "clientId": "Agave",
      "featureSet": 1725507508,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.138.107:8001",
      "gossip": "198.13.138.107:8000",
      "pubkey": "7ZufMVQn9Kj55anPJccGm9aMKW1onBeA6ALEKox9HfSB",
      "pubsub": null,
      "tpuQuic": "198.13.138.107:8002",
      "tpuVote": "198.13.138.107:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "198.13.138.107:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.138.107:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.211:8002",
      "gossip": "64.130.42.211:8001",
      "pubkey": "mce43sNQBBYGMYY7am4yqyaQPYSrpZrY8wBJS8dQ2DH",
      "pubsub": null,
      "tpuQuic": "64.130.42.211:8003",
      "tpuVote": "64.130.42.211:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "64.130.42.211:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.211:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "141.148.227.200:8001",
      "pubkey": "Bo6BHmw46y3Zz8VxhjssekKkhKjzwx5AFK8RhcU6BbGV",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.212:8002",
      "gossip": "51.81.229.138:8001",
      "pubkey": "BJk9rev8yhsDDDVtZYqGhrYtxg15BTcqfdinHeQPooJH",
      "pubsub": null,
      "tpuQuic": "51.81.229.138:8003",
      "tpuVote": "51.81.229.138:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.229.138:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.229.138:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "94.158.242.112:60201",
      "gossip": "94.158.242.112:60200",
      "pubkey": "BQmNLGy9dp77QTF8AmjqF7Yac9oEw6DjK3PTy8rWLLPc",
      "pubsub": null,
      "tpuQuic": "94.158.242.112:60202",
      "tpuVote": "94.158.242.112:60204",
      "version": "4.0.0-beta.6",
      "clientId": "Agave",
      "featureSet": 2475355604,
      "serveRepair": "94.158.242.112:60209",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "94.158.242.112:60203"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.205.46:8000",
      "gossip": "208.115.205.46:8801",
      "pubkey": "8M2dCzYegJhu6zrB3nEcwtfmsGJQWm9KCkvH9RETrZd7",
      "pubsub": null,
      "tpuQuic": "208.115.205.46:8001",
      "tpuVote": "208.115.205.46:8003",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "208.115.205.46:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.205.46:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.151:8002",
      "gossip": "51.81.28.193:8001",
      "pubkey": "57TVEFtrRphheAntuAXF93nXFuP2Sjv2krHw2Zchv2eD",
      "pubsub": null,
      "tpuQuic": "51.81.28.193:8003",
      "tpuVote": "51.81.28.193:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.28.193:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.28.193:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.145:8002",
      "gossip": "51.81.26.35:8001",
      "pubkey": "E6pHCKf3xW3mKosSnH1VY72MWKg3yVFKeQK9iryA4gyL",
      "pubsub": null,
      "tpuQuic": "51.81.26.35:8003",
      "tpuVote": "51.81.26.35:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.26.35:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.26.35:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.136:8002",
      "gossip": "51.81.25.246:8001",
      "pubkey": "9ETFAVtzLfvKue3Ub7QKQRvwTdwE4yGvXZghdLZZTTwu",
      "pubsub": null,
      "tpuQuic": "51.81.25.246:8003",
      "tpuVote": "51.81.25.246:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.25.246:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.25.246:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.77.28.184:8001",
      "gossip": "45.77.28.184:8000",
      "pubkey": "8aAt1RTSxCw3ZqXwityS6gqW32PvMJJp5DPGUwtdwJQk",
      "pubsub": null,
      "tpuQuic": "45.77.28.184:8002",
      "tpuVote": "45.77.28.184:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "45.77.28.184:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.77.28.184:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.176:8002",
      "gossip": "202.8.11.176:8001",
      "pubkey": "2FphjQsCwfL9pMaBNpvbTsNu7ufHxBmsZCbtDsQ1XSw8",
      "pubsub": null,
      "tpuQuic": "202.8.11.176:8003",
      "tpuVote": "202.8.11.176:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.176:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.176:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.82.62.245:8001",
      "gossip": "208.82.62.245:8000",
      "pubkey": "CGcfcKegbjscmtRBKzruwNTFidNcBC8cfW17sku9VudA",
      "pubsub": null,
      "tpuQuic": "208.82.62.245:8002",
      "tpuVote": "208.82.62.245:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.82.62.245:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.82.62.245:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.186.123:8001",
      "gossip": "84.32.186.123:8000",
      "pubkey": "86QfX8SSnTo54e4jVxiaZJRna9i1vYV6AApJebd5bdiP",
      "pubsub": null,
      "tpuQuic": "84.32.186.123:8002",
      "tpuVote": "84.32.186.123:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "84.32.186.123:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.186.123:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.130.59.132:8001",
      "pubkey": "AZhfu5cyBsvSi6xJvve53pycKAc6NWb5trimmg2GZ2Go",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.112.229:8001",
      "gossip": "67.213.112.229:8000",
      "pubkey": "HFPw2zrRAmRhrntyBXsVNWZBRenJkWJFQHi7vPj3UCBW",
      "pubsub": null,
      "tpuQuic": "67.213.112.229:8002",
      "tpuVote": "67.213.112.229:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.213.112.229:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.112.229:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.151:8001",
      "gossip": "208.91.110.151:8000",
      "pubkey": "Au9C3Nsc5AeoQJhvt3J2pJXAvVVhq97MoQYXayzwcVw4",
      "pubsub": null,
      "tpuQuic": "208.91.110.151:8002",
      "tpuVote": "208.91.110.151:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.151:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.151:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.61.209.207:8001",
      "gossip": "5.61.209.207:8000",
      "pubkey": "JE31dyBE3e48giCYuxKuHDtEy4xX99zjV1VK5YRddScr",
      "pubsub": null,
      "tpuQuic": "5.61.209.207:8002",
      "tpuVote": "5.61.209.207:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.61.209.207:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.61.209.207:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.46.86.171:8001",
      "gossip": "72.46.86.171:8000",
      "pubkey": "4VKGtxBbQXAGa25tPWVJfc2dmfSi3ivxANYcj8wW9ELV",
      "pubsub": null,
      "tpuQuic": "72.46.86.171:8002",
      "tpuVote": "72.46.86.171:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "72.46.86.171:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.46.86.171:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "67.209.54.25:7002",
      "pubkey": "GbcJfFbtdgGb9KaA1o9jaXoMvGdhsGBMZ2dEkCLb9JQK",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.162:8888",
      "gossip": "45.250.253.7:8000",
      "pubkey": "CkBTLsY5tREq6qK1Lxy92hjFW9K7Kh8MhBB2jAnHJKqj",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "146.19.172.9:8000",
      "gossip": "146.19.172.9:8001",
      "pubkey": "7Sgxzs68EhVZaxsBd1BfHumBcqjkoGhfTM71mqJX6YCq",
      "pubsub": null,
      "tpuQuic": "146.19.172.9:8002",
      "tpuVote": "146.19.172.9:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "146.19.172.9:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.19.172.9:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.72:8002",
      "gossip": "64.130.44.72:8001",
      "pubkey": "kAhD8EvVkueBmGm57DvDdBFHnzKNtJz9jxjYNFJPNEK",
      "pubsub": null,
      "tpuQuic": "64.130.44.72:8003",
      "tpuVote": "64.130.44.72:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.72:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.72:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.77:8002",
      "gossip": "64.130.42.77:8001",
      "pubkey": "Fr7ha6qpf9MoGsT75XMeVdhozixJdZthhdYCEu81Cwi8",
      "pubsub": null,
      "tpuQuic": "64.130.42.77:8003",
      "tpuVote": "64.130.42.77:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.77:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.77:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "82.22.51.11:8001",
      "gossip": "145.239.149.108:8000",
      "pubkey": "5waLchzicyTfVjzoWuBi1hnvTuDLBhwhHUzBa2C8zrGs",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.103:8002",
      "gossip": "51.222.162.253:8001",
      "pubkey": "Bwj6PDzUJ87QbG1UyFCMBdpKCPJ5XSU8S5nBRqUYz3qs",
      "pubsub": null,
      "tpuQuic": "51.222.162.253:8003",
      "tpuVote": "51.222.162.253:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.253:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.253:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.158:8001",
      "gossip": "202.8.11.158:8000",
      "pubkey": "GvLprMWvVuYXzy6Tz3RJ5EpwCRtSycAygALbdGRRYtxJ",
      "pubsub": null,
      "tpuQuic": "202.8.11.158:8002",
      "tpuVote": "202.8.11.158:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.158:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.158:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "40.160.13.161:8001",
      "gossip": "40.160.13.161:8000",
      "pubkey": "AWYxxvWnvVWXg766KEKHuqzfJqSSPaQfvkfkcCPN8BGs",
      "pubsub": null,
      "tpuQuic": "40.160.13.161:8002",
      "tpuVote": "40.160.13.161:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "40.160.13.161:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "40.160.13.161:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.124:8002",
      "gossip": "51.222.171.26:8001",
      "pubkey": "HNt223LW2aQgVwpXhUp2ijTYJ12uoX18aQPbPhDd5jhF",
      "pubsub": null,
      "tpuQuic": "51.222.171.26:8003",
      "tpuVote": "51.222.171.26:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.171.26:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.171.26:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.63:8002",
      "gossip": "64.31.54.63:8001",
      "pubkey": "F9mphBHQGiscQfgjRaCf8ZUwTjLaaoDAREiV3sqQA58c",
      "pubsub": null,
      "tpuQuic": "64.31.54.63:8003",
      "tpuVote": "64.31.54.63:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.63:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.63:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.61:8888",
      "gossip": "198.13.133.45:8000",
      "pubkey": "E3u4gLDgZHKQtiDKNpdEYRuSNHS6YKeqNtco8mLjwrPn",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "185.26.11.119:8899",
      "tpu": null,
      "tvu": "185.26.11.119:8001",
      "gossip": "185.26.11.119:8000",
      "pubkey": "85Sdw5ULMbXaZATGiNz99DAK5V1e9xjz5pAhwxZDbTJd",
      "pubsub": "185.26.11.119:8900",
      "tpuQuic": "185.26.11.119:8002",
      "tpuVote": "185.26.11.119:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "185.26.11.119:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.11.119:8003"
    },
    {
      "rpc": "185.26.10.183:8899",
      "tpu": null,
      "tvu": "185.26.10.183:8001",
      "gossip": "185.26.10.183:8000",
      "pubkey": "63Fzyx7o931TQGPRata3WzMT3zVzwYRCyHgpqV81QSpD",
      "pubsub": "185.26.10.183:8900",
      "tpuQuic": "185.26.10.183:8002",
      "tpuVote": "185.26.10.183:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.26.10.183:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.10.183:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "40.160.23.152:8001",
      "gossip": "40.160.23.152:8000",
      "pubkey": "9WwmTgkioJuosbKBxgYTNah2cyfFRtpAMcfFmvRF9pz6",
      "pubsub": null,
      "tpuQuic": "40.160.23.152:8002",
      "tpuVote": "40.160.23.152:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "40.160.23.152:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "40.160.23.152:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.135:8002",
      "gossip": "64.130.59.135:8001",
      "pubkey": "FCtYfMeA2LZ1ZK54kopVKK6w9cvf7o519eziDpQ8AaUd",
      "pubsub": null,
      "tpuQuic": "64.130.59.135:8003",
      "tpuVote": "64.130.59.135:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.135:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.135:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.178:8002",
      "gossip": "202.8.11.178:8001",
      "pubkey": "8mx5JJTaQ6Koa7WSeSaGSzFntNcJr3uaSGiyPbeMy1pV",
      "pubsub": null,
      "tpuQuic": "202.8.11.178:8003",
      "tpuVote": "202.8.11.178:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.178:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.178:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.250:8002",
      "gossip": "51.81.214.68:8001",
      "pubkey": "CQhA6HQDprsRAi2kNVXLNtmhGzjMHQVubPjjZgGJAcNx",
      "pubsub": null,
      "tpuQuic": "51.81.214.68:8003",
      "tpuVote": "51.81.214.68:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.214.68:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.214.68:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.155:8000",
      "pubkey": "34cNn8m93CANVMYT9qNZ32nxJ9Bqu1hiGa38MFEMC71X",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.61:8002",
      "gossip": "64.31.54.61:8001",
      "pubkey": "BqfSZyg5AdStYpHN2ZEBD1xqG3VP1JRLKQ8MMNxEhT8F",
      "pubsub": null,
      "tpuQuic": "64.31.54.61:8003",
      "tpuVote": "64.31.54.61:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.61:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.61:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.203:8888",
      "gossip": "63.254.169.27:8000",
      "pubkey": "DVEk5RZMt8j1V2oFckekkWpPhV8m47jKLx8NmELfEYkV",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "170.23.209.132:8001",
      "gossip": "170.23.209.132:8000",
      "pubkey": "379FmBWnP868j3GUqhCCX53V4R3w4pm99FSCrpKXoBZm",
      "pubsub": null,
      "tpuQuic": "170.23.209.132:8002",
      "tpuVote": "170.23.209.132:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "170.23.209.132:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "170.23.209.132:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.244:8002",
      "gossip": "5.135.194.219:8001",
      "pubkey": "7PXzH6nqY6L1wq9n34ufCa8DRuiKdpJYdUkUrfJjXHi3",
      "pubsub": null,
      "tpuQuic": "5.135.194.219:8003",
      "tpuVote": "5.135.194.219:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.194.219:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.194.219:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.47:8888",
      "gossip": "198.13.136.207:8000",
      "pubkey": "HLgtScDXR9jMMTSjqCg2YJdRpyAp2Ta11Sv8NZFFVxsH",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.142.60:8000",
      "gossip": "104.204.142.60:8001",
      "pubkey": "CMTKtgW9uMnEiwiAw26sEyTbSYPjDebQXF5To3ED4gq7",
      "pubsub": null,
      "tpuQuic": "104.204.142.60:8002",
      "tpuVote": "104.204.142.60:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "104.204.142.60:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.142.60:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.169:8002",
      "gossip": "64.130.42.169:8001",
      "pubkey": "3vkgPc3sopUZTQgT6mzb8d9D9iov8ymo8cX6KswuqNDU",
      "pubsub": null,
      "tpuQuic": "64.130.42.169:8003",
      "tpuVote": "64.130.42.169:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.42.169:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.169:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.250:8001",
      "gossip": "198.13.134.250:8000",
      "pubkey": "Hr8Tu22xJx7J4sA23rqbhuQQnHr8f37u3eWMDD2EyJHv",
      "pubsub": null,
      "tpuQuic": "198.13.134.250:8002",
      "tpuVote": "198.13.134.250:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.134.250:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.250:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.80:8002",
      "gossip": "64.130.59.80:8001",
      "pubkey": "DTKVVY1MNsaW1Hb3Ager1HmHQSuDU9ySHTRLAcVmVPcJ",
      "pubsub": null,
      "tpuQuic": "64.130.59.80:8003",
      "tpuVote": "64.130.59.80:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.80:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.80:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.68:8002",
      "gossip": "178.32.184.118:8001",
      "pubkey": "odEmmhYWnR1vDe5uimZYz1DHabKwPmPX4LDZZqXGjL5",
      "pubsub": null,
      "tpuQuic": "178.32.184.118:8003",
      "tpuVote": "178.32.184.118:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "178.32.184.118:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "178.32.184.118:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.7:8001",
      "gossip": "64.130.63.7:8000",
      "pubkey": "GdVTfx6Lq1omgZVjBdK9cgdmwBexJJQTz2ytBNR5PCgZ",
      "pubsub": null,
      "tpuQuic": "64.130.63.7:8002",
      "tpuVote": "64.130.63.7:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.63.7:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.7:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "192.69.194.34:8000",
      "gossip": "192.69.194.34:8026",
      "pubkey": "6VzdzBzn8L4cGtqE86X5FhE3T7YevDEEHNTXKnKLxkcZ",
      "pubsub": null,
      "tpuQuic": "192.69.194.34:8001",
      "tpuVote": "192.69.194.34:8003",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "192.69.194.34:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "192.69.194.34:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.157:8002",
      "gossip": "64.130.44.157:8001",
      "pubkey": "mcbXZTjSXaEVfCEqheYeTSA7EzHz5cE7gaFZvh4ubQV",
      "pubsub": null,
      "tpuQuic": "64.130.44.157:8003",
      "tpuVote": "64.130.44.157:8005",
      "version": "4.1.0-beta.3",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.44.157:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.157:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.62.230:8002",
      "gossip": "64.130.62.230:8001",
      "pubkey": "DXbCs6trUZNBW5Rta6txtAdkB1Qhn3bRNY6fXu9E28Wh",
      "pubsub": null,
      "tpuQuic": "64.130.62.230:8003",
      "tpuVote": "64.130.62.230:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.62.230:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.62.230:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.212:8000",
      "gossip": "208.91.110.212:8001",
      "pubkey": "HQRTmmgR7KWnVcL7jCKacwCNpMicyWmHAZzbFG9ET2Za",
      "pubsub": null,
      "tpuQuic": "208.91.110.212:8002",
      "tpuVote": "208.91.110.212:8004",
      "version": "4.0.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "208.91.110.212:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.212:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.88.89.78:8001",
      "gossip": "45.88.89.78:8002",
      "pubkey": "GyqxuMr3rP6ZwmHqY4QaCTG4UqyqeZ7YcQ7HdbrtoLqU",
      "pubsub": null,
      "tpuQuic": "45.88.89.78:8003",
      "tpuVote": "45.88.89.78:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.88.89.78:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.88.89.78:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.21:8002",
      "gossip": "5.135.119.115:8001",
      "pubkey": "FkJ5TYT6cpSaEG9f4rymd2fLZx6UNZPYwbqxZgeiijre",
      "pubsub": null,
      "tpuQuic": "5.135.119.115:8003",
      "tpuVote": "5.135.119.115:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.119.115:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.119.115:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.131:8888",
      "gossip": "198.13.141.35:8000",
      "pubkey": "DTy4pgx3h8V1vpwxh1kJuDWJvmUwoASEaKcpk1hHTCHo",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.107.71:8001",
      "gossip": "208.91.107.71:8000",
      "pubkey": "J3xMr5ewCitdXfW18K8mLsiCz68oeKvAoZ14hyFQgjJA",
      "pubsub": null,
      "tpuQuic": "208.91.107.71:8002",
      "tpuVote": "208.91.107.71:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "208.91.107.71:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.107.71:8003"
    },
    {
      "rpc": "64.130.47.152:8899",
      "tpu": null,
      "tvu": "64.130.47.152:8001",
      "gossip": "64.130.47.152:8000",
      "pubkey": "DCYP2QzNTHb889Q11a5DoMPdEChPk3976of6ba1Kc4Mf",
      "pubsub": "64.130.47.152:8900",
      "tpuQuic": "64.130.47.152:8002",
      "tpuVote": "64.130.47.152:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.47.152:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.152:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "45.250.253.98:8000",
      "pubkey": "8pdZX617j3HzXWAGViTdy7NKw458SwAnhFKdrTDyP43g",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.203:8002",
      "gossip": "64.130.47.203:8001",
      "pubkey": "B6vdpyM3mi7EkjCatneknZr7ui6A4LCv3pETr6iEcNHc",
      "pubsub": null,
      "tpuQuic": "64.130.47.203:8003",
      "tpuVote": "64.130.47.203:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.47.203:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.203:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.154:8002",
      "gossip": "51.81.30.20:8001",
      "pubkey": "9cmt3LpfB8RXsvVLk5EusfqWoc6RxHThcKcXhhxSbH2y",
      "pubsub": null,
      "tpuQuic": "51.81.30.20:8003",
      "tpuVote": "51.81.30.20:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.30.20:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.30.20:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.74:8002",
      "gossip": "51.222.146.136:8001",
      "pubkey": "HxhFHyTMoYtbkXHq9VPskm9kFXAvWr1axgTDcELoH9Xk",
      "pubsub": null,
      "tpuQuic": "51.222.146.136:8003",
      "tpuVote": "51.222.146.136:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.146.136:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.146.136:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.148:8002",
      "gossip": "64.130.52.148:8001",
      "pubkey": "6wRbBrXBoKs9amtU8Bfo3YKWtuPoq53xLZ2yZ3HRWcjQ",
      "pubsub": null,
      "tpuQuic": "64.130.52.148:8010",
      "tpuVote": "64.130.52.148:8006",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "64.130.52.148:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.148:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.2:8888",
      "gossip": "198.13.140.162:8000",
      "pubkey": "Gk9UPFdbm7nmFhzK3EAk3AbRpyM5WfvEG11khYPd858T",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.169:8002",
      "gossip": "64.130.50.169:8001",
      "pubkey": "71ZE5soDqR2jZvVvcHKfsVRngUSNW1oHaBXmViVY6GA8",
      "pubsub": null,
      "tpuQuic": "64.130.50.169:8003",
      "tpuVote": "64.130.50.169:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.169:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.169:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "212.117.166.140:8001",
      "gossip": "212.117.166.140:8000",
      "pubkey": "Cfqty7b8z8jwpsMUqX5rKyAa4FuiMoRCn4BaEgdzkGzN",
      "pubsub": null,
      "tpuQuic": "212.117.166.140:8002",
      "tpuVote": "212.117.166.140:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "212.117.166.140:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "212.117.166.140:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.235.219.252:9002",
      "gossip": "15.235.219.252:9001",
      "pubkey": "6dTrETEuMZTpUNQJ7TT1FRxPc5BSTPAofwZ5zCQsbMu6",
      "pubsub": null,
      "tpuQuic": "15.235.219.252:9003",
      "tpuVote": "15.235.219.252:9005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "15.235.219.252:9010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.235.219.252:9004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "144.24.34.37:8002",
      "gossip": "144.24.34.37:8001",
      "pubkey": "Er3cbKPFCkhXPvB1TxeR4dF7UNHsA9xoG7AGw5xacSgp",
      "pubsub": null,
      "tpuQuic": "144.24.34.37:8010",
      "tpuVote": "144.24.34.37:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "144.24.34.37:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "144.24.34.37:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.136:8002",
      "gossip": "64.130.42.136:8001",
      "pubkey": "FjetETrrbrwX2eyN6SNy1yh1FbsrakxRyUTpgDjzrapX",
      "pubsub": null,
      "tpuQuic": "64.130.42.136:8010",
      "tpuVote": "64.130.42.136:8006",
      "version": "3.1.14",
      "clientId": "JitoLabs",
      "featureSet": 534737035,
      "serveRepair": "64.130.42.136:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.136:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.110.15:8003",
      "gossip": "85.195.110.15:8001",
      "pubkey": "5oDRdAwSMyvNWZaiENWiThxifPGsB3WcVkfVz5uswK2G",
      "pubsub": null,
      "tpuQuic": "85.195.110.15:9007",
      "tpuVote": "85.195.110.15:9001",
      "version": "0.911.40002",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "85.195.110.15:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.110.15:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.28:8001",
      "gossip": "64.130.43.28:8000",
      "pubkey": "E6KK3gkU8mVi7UcLwnyYEep7iqpXJvZs7tkAtXjA8rSV",
      "pubsub": null,
      "tpuQuic": "64.130.43.28:8002",
      "tpuVote": "64.130.43.28:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.43.28:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.28:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.225.135:8002",
      "gossip": "74.63.225.135:8001",
      "pubkey": "B1EeBdHu9YZEXVk4sZDqNMPB3wB5mADPh2LKxwGza946",
      "pubsub": null,
      "tpuQuic": "74.63.225.135:8003",
      "tpuVote": "74.63.225.135:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.225.135:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.225.135:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.208.143:8001",
      "gossip": "85.195.208.143:8000",
      "pubkey": "DqFVGfd25QoY95HHcUhvGGYYiPjRf5wM8KnQjn8LtDd7",
      "pubsub": null,
      "tpuQuic": "85.195.208.143:8002",
      "tpuVote": "85.195.208.143:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "85.195.208.143:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.208.143:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.120:8002",
      "gossip": "64.130.50.120:8001",
      "pubkey": "GU8gqp1KXKrRfkkkSqPV2rXCa6Aj8ZhPE5eNBkyViZx5",
      "pubsub": null,
      "tpuQuic": "64.130.50.120:8003",
      "tpuVote": "64.130.50.120:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.120:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.120:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "169.155.171.83:8002",
      "gossip": "169.155.171.83:8001",
      "pubkey": "37D17K5wLJa4pCCoL98VrMxG2BcRJ3RXXqNK9RDmiyoC",
      "pubsub": null,
      "tpuQuic": "169.155.171.83:8003",
      "tpuVote": "169.155.171.83:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "169.155.171.83:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "169.155.171.83:8004"
    },
    {
      "rpc": "116.202.235.122:27001",
      "tpu": null,
      "tvu": "116.202.235.122:27200",
      "gossip": "116.202.235.122:27000",
      "pubkey": "4hjNqW3RGUQKnY9Ctor4eKcZZGh5Uy1cf2pdbzVZGBJF",
      "pubsub": null,
      "tpuQuic": "116.202.235.122:27106",
      "tpuVote": null,
      "version": "3.1.5",
      "clientId": "Agave",
      "featureSet": 2086771155,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "185.26.11.107:8899",
      "tpu": null,
      "tvu": "185.26.11.107:8001",
      "gossip": "185.26.11.107:8000",
      "pubkey": "82SJcKhXzo99dyNEZVgFhQZzWBHe9PseB74GvEJTSEDc",
      "pubsub": "185.26.11.107:8900",
      "tpuQuic": "185.26.11.107:8002",
      "tpuVote": "185.26.11.107:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.26.11.107:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.11.107:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "8.221.136.213:8000",
      "gossip": "8.221.136.213:8001",
      "pubkey": "5JZFUpmVyvgLQmE7cfRB5vdb6KJCAM72RxJDLSeu3UGv",
      "pubsub": null,
      "tpuQuic": "8.221.136.213:8002",
      "tpuVote": "8.221.136.213:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "8.221.136.213:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "8.221.136.213:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.30:8001",
      "gossip": "64.130.43.30:8000",
      "pubkey": "HL3GxbpM7obdUQxs2dc15iDRGmu17wU8YEgEjrw22Vfc",
      "pubsub": null,
      "tpuQuic": "64.130.43.30:8009",
      "tpuVote": "64.130.43.30:8005",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "64.130.43.30:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.30:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.109.63.60:8001",
      "gossip": "23.109.63.60:8000",
      "pubkey": "4Q61ck9T7i2kRXXEPEALZaPnNo7CDoRv8Y1zvRh3QAip",
      "pubsub": null,
      "tpuQuic": "23.109.63.60:8002",
      "tpuVote": "23.109.63.60:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "23.109.63.60:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.109.63.60:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.55.42:8001",
      "gossip": "64.130.55.42:8000",
      "pubkey": "D11Uw6c1EYVCG6Xi5abdPmbrDm3Y1RKH4ukWYe9gXLVP",
      "pubsub": null,
      "tpuQuic": "64.130.55.42:8002",
      "tpuVote": "64.130.55.42:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.55.42:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.55.42:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.61:8001",
      "gossip": "64.130.61.61:8000",
      "pubkey": "H6UtiRXQQvTtk2vwMUXNp6wqxYe1uD7diPWCsnqBWdDZ",
      "pubsub": null,
      "tpuQuic": "64.130.61.61:8002",
      "tpuVote": "64.130.61.61:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.61.61:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.61:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.157:8888",
      "gossip": "198.13.141.61:8000",
      "pubkey": "FHwDs78jhXdXKQHbr3TMFZh3iaLRLodSxgyzjEkgz1vn",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.150:8002",
      "gossip": "51.38.92.202:8001",
      "pubkey": "CayoBb3fx9gydP4Js4QT2msQyayTNtQiE3ZbTrgTiMei",
      "pubsub": null,
      "tpuQuic": "51.38.92.202:8003",
      "tpuVote": "51.38.92.202:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.92.202:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.92.202:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.88.5.19:39561",
      "gossip": "23.88.5.19:39560",
      "pubkey": "J9bbA5RPxoLbuidGmv9jboB9TYsnxSTaicYuZVBdpr1E",
      "pubsub": null,
      "tpuQuic": "23.88.5.19:39562",
      "tpuVote": "23.88.5.19:39564",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "23.88.5.19:39569",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.88.5.19:39563"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "164.152.161.83:8002",
      "gossip": "164.152.161.83:8001",
      "pubkey": "HCRFuxSRtHVKTMHYYf5QMBfjQxMYW9QnwWnjwK7XyEV6",
      "pubsub": null,
      "tpuQuic": "164.152.161.83:8003",
      "tpuVote": "164.152.161.83:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "164.152.161.83:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "164.152.161.83:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.49:8002",
      "gossip": "64.31.54.49:8001",
      "pubkey": "4au3QsqKYrhKGK6eQQYfZFWA8bBVdHGhGq51NzZXfiFL",
      "pubsub": null,
      "tpuQuic": "64.31.54.49:8003",
      "tpuVote": "64.31.54.49:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.49:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.49:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "132.226.112.70:8002",
      "gossip": "132.226.112.70:8001",
      "pubkey": "3nv4yQqp9bGYNrSLnpTDzPcntzybwjArzzefzvCzGh3Y",
      "pubsub": null,
      "tpuQuic": "132.226.112.70:8010",
      "tpuVote": "132.226.112.70:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "132.226.112.70:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "132.226.112.70:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.1:8002",
      "gossip": "51.38.146.233:8001",
      "pubkey": "2caqAnFrU2uGQV9Aqy9ivBVp12zWBiSpTCFJPfW1ZbyT",
      "pubsub": null,
      "tpuQuic": "51.38.146.233:8003",
      "tpuVote": "51.38.146.233:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.146.233:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.146.233:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.21:8002",
      "gossip": "51.68.149.245:8001",
      "pubkey": "CcgHB6cnnTiku8Nokkr7vtfo1o9mmyuo7Qw54ALL3fVi",
      "pubsub": null,
      "tpuQuic": "51.68.149.245:8003",
      "tpuVote": "51.68.149.245:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.149.245:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.149.245:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "177.54.154.43:8000",
      "gossip": "177.54.154.43:8801",
      "pubkey": "9m6aAnqve9ryErw2Mq4BykxgdGuuU6RGvysfKc9h94Vg",
      "pubsub": null,
      "tpuQuic": "177.54.154.43:8001",
      "tpuVote": "177.54.154.43:8003",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "177.54.154.43:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "177.54.154.43:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.80:8001",
      "gossip": "64.130.37.80:8000",
      "pubkey": "Fmk5EfZMYkd2Cx8jqUvEyMReQ6CRpc1pELJEaihWnKdD",
      "pubsub": null,
      "tpuQuic": "64.130.37.80:8002",
      "tpuVote": "64.130.37.80:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.37.80:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.80:8003"
    },
    {
      "rpc": "84.32.49.237:8899",
      "tpu": null,
      "tvu": "84.32.49.237:8000",
      "gossip": "84.32.49.237:8001",
      "pubkey": "7S22CYpfBRV1p8cTqWXFD4HwfqfNx3hAhfpdj8E2bYvJ",
      "pubsub": "84.32.49.237:8900",
      "tpuQuic": "84.32.49.237:8002",
      "tpuVote": "84.32.49.237:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "84.32.49.237:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.49.237:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "198.13.130.83:7002",
      "pubkey": "HJJ9SYWueMWWwhPzXvwQFdqsZcjtKLTaeSAAroveyVRd",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.212.239:8002",
      "gossip": "208.115.212.239:8001",
      "pubkey": "BHi6EGUbia9dNTAG1oQkwHRvUdu33WFV5WnuHry7NGXg",
      "pubsub": null,
      "tpuQuic": "208.115.212.239:8003",
      "tpuVote": "208.115.212.239:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.212.239:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.212.239:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.24:8002",
      "gossip": "64.130.32.24:8001",
      "pubkey": "3rWNNrkRZdu8EQrNygUkTuCiHH3vgNbhVxpJas9px2ae",
      "pubsub": null,
      "tpuQuic": "64.130.32.24:8003",
      "tpuVote": "64.130.32.24:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.32.24:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.24:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.83.107:8000",
      "pubkey": "B18ur4E7wHwbVMC97BWr11dwFiStfkXCM6zbfHo4bja8",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.83.159:8000",
      "pubkey": "G2B42xhEfzuidehbqin75jyJCUbnstAXhHJ6eGPy7NMN",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "3.80.248.158:8000",
      "pubkey": "ARMjiMwgaUKUTzJDhGBrDUKN5LXY5Etns52uL45ntWCQ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "3.112.204.6:38001",
      "gossip": "3.112.204.6:38000",
      "pubkey": "3sAiA9FN4R8ytTYAYb5vpXNB9XEcj19SnvdH88884cJ8",
      "pubsub": null,
      "tpuQuic": "3.112.204.6:38002",
      "tpuVote": "3.112.204.6:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "3.112.204.6:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "3.112.204.6:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.75:8000",
      "pubkey": "LoCc1rYsnq3nX6Fh1oqH6JJTSYv5vQmgigeWH3xjDb9",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.170:8002",
      "gossip": "51.75.164.182:8001",
      "pubkey": "3myrxtfm9HNqDMJct1UojMd5jkiDY7rhjgB8Ux15XA1N",
      "pubsub": null,
      "tpuQuic": "51.75.164.182:8003",
      "tpuVote": "51.75.164.182:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.75.164.182:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.75.164.182:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.201.138:8000",
      "gossip": "208.115.201.138:8801",
      "pubkey": "4sMTn6DJE75D8MXTR1ZEWLqGCAugnZXMFyqdTACGgtxA",
      "pubsub": null,
      "tpuQuic": "208.115.201.138:8001",
      "tpuVote": "208.115.201.138:8003",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "208.115.201.138:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.201.138:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.50:8002",
      "gossip": "64.130.40.50:8001",
      "pubkey": "Ez3VtraC3aNK2VZaEMs1BM2Q3Qvxzgicy4H3gTaFGFaG",
      "pubsub": null,
      "tpuQuic": "64.130.40.50:8003",
      "tpuVote": "64.130.40.50:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.50:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.50:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.186.143:8002",
      "gossip": "84.32.186.143:8001",
      "pubkey": "3m6mVhNDeXHauNwHuc3Lj7J8X15PmQpKYbjBNDoswiCA",
      "pubsub": null,
      "tpuQuic": "84.32.186.143:8003",
      "tpuVote": "84.32.186.143:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "84.32.186.143:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.186.143:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.225.139:8002",
      "gossip": "74.63.225.139:8001",
      "pubkey": "9g6FVu8AYzCK6w41sKoCGmHw2DcmJb5oo7FyGg1YjTsF",
      "pubsub": null,
      "tpuQuic": "74.63.225.139:8003",
      "tpuVote": "74.63.225.139:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.225.139:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.225.139:8004"
    },
    {
      "rpc": "64.130.62.43:8899",
      "tpu": null,
      "tvu": "64.130.62.43:8000",
      "gossip": "64.130.62.43:8001",
      "pubkey": "H8HvxcULYezaUTbaTBkUYXbNjvEQaRi4aww8muSVVWUV",
      "pubsub": "64.130.62.43:8900",
      "tpuQuic": "64.130.62.43:8002",
      "tpuVote": "64.130.62.43:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.62.43:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.62.43:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.148:8002",
      "gossip": "51.38.92.200:8001",
      "pubkey": "9evXCLizKJxPVzSHhN8jB1wsH7SfgmbMaQcun18vTXrs",
      "pubsub": null,
      "tpuQuic": "51.38.92.200:8003",
      "tpuVote": "51.38.92.200:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.92.200:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.92.200:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.157:8000",
      "pubkey": "iPkdDndecwPnEibKKDkkeKYskLhRipoPjBvuSCALjHn",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "137.239.202.122:8003",
      "gossip": "137.239.202.122:8001",
      "pubkey": "BxJrZ9X1aPsekovQbmKvnLdYeemZ7tHwtDJYSwi7TRqb",
      "pubsub": null,
      "tpuQuic": "137.239.202.122:8037",
      "tpuVote": "137.239.202.122:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "137.239.202.122:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "137.239.202.122:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.15.240.15:18503",
      "gossip": "204.15.240.15:18502",
      "pubkey": "AqYo6pyTHb5athn9kHfK8RA41Zjai2WDibVXiXUuFo6C",
      "pubsub": null,
      "tpuQuic": "204.15.240.15:18504",
      "tpuVote": "204.15.240.15:18506",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "204.15.240.15:18511",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.15.240.15:18505"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.211:8002",
      "gossip": "51.81.206.244:8001",
      "pubkey": "CNpsd3mjDKuBCZRNLcXpcrfu9MyfcVB7PedBoTvo4Nci",
      "pubsub": null,
      "tpuQuic": "51.81.206.244:8003",
      "tpuVote": "51.81.206.244:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.206.244:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.206.244:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.164:8002",
      "gossip": "51.68.222.124:8001",
      "pubkey": "GNdd3Pf6YijHkr7UMdj4QdMZRN2wBS3xjK4XTWiS7cx8",
      "pubsub": null,
      "tpuQuic": "51.68.222.124:8003",
      "tpuVote": "51.68.222.124:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.222.124:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.222.124:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.246.171:8002",
      "gossip": "204.16.246.171:8001",
      "pubkey": "J1tP59SDF1XWigKydfLPthD1tX1ATCPRJJpLajZF7NsD",
      "pubsub": null,
      "tpuQuic": "204.16.246.171:8003",
      "tpuVote": "204.16.246.171:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.246.171:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.246.171:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "107.155.102.114:8001",
      "gossip": "107.155.102.114:8000",
      "pubkey": "EAQXxjP11gpZLbgTeNFk27BAnCQqYHW8iDctwxvh9zDe",
      "pubsub": null,
      "tpuQuic": "107.155.102.114:8002",
      "tpuVote": "107.155.102.114:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "107.155.102.114:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "107.155.102.114:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.196:8002",
      "gossip": "51.81.137.176:8001",
      "pubkey": "66BMjbkyXiJjafpaH8jdBq5WHEhay8p6AecFxW8NTpWN",
      "pubsub": null,
      "tpuQuic": "51.81.137.176:8003",
      "tpuVote": "51.81.137.176:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.137.176:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.137.176:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.123:8002",
      "gossip": "64.130.51.123:8001",
      "pubkey": "7AoJZdjrrrAmHsQGShidDHacrBCPnGLky7hPKGbEoVfm",
      "pubsub": null,
      "tpuQuic": "64.130.51.123:8003",
      "tpuVote": "64.130.51.123:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.123:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.123:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.36:8888",
      "gossip": "63.254.162.84:8000",
      "pubkey": "6iiB1YGD8eGM26t4Jg9UuHG3A2MTtoAD4hDEvqrQcntJ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.60:8000",
      "pubkey": "SzHQpYC7W5XSUsxeDp8TWER9XkQcpF7NvTPccgPL69v",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "131.186.38.236:8002",
      "gossip": "131.186.38.236:8001",
      "pubkey": "3D2YbmVdxzgmHAkwrgYNsfg3ZwQD2w4QiWam7Vj1Pbh8",
      "pubsub": null,
      "tpuQuic": "131.186.38.236:8010",
      "tpuVote": "131.186.38.236:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "131.186.38.236:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "131.186.38.236:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.58.209:8002",
      "gossip": "64.31.58.209:8001",
      "pubkey": "Fviu8yChtMHo2XKxWwvv8L7DrrPMC6jW2woa7TTzR9HX",
      "pubsub": null,
      "tpuQuic": "64.31.58.209:8003",
      "tpuVote": "64.31.58.209:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.58.209:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.58.209:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.201:8002",
      "gossip": "176.31.67.93:8001",
      "pubkey": "4AxaSCd5npxo6TqSm9epJJHfZJBzLayP1JTftEtP4ABs",
      "pubsub": null,
      "tpuQuic": "176.31.67.93:8003",
      "tpuVote": "176.31.67.93:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "176.31.67.93:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "176.31.67.93:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.94.157.153:8001",
      "gossip": "141.94.157.153:8000",
      "pubkey": "48yLAUzs5v1a28oKWHMJSGw73GcQASajAx9aisDe2ayv",
      "pubsub": null,
      "tpuQuic": "141.94.157.153:8002",
      "tpuVote": "141.94.157.153:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "141.94.157.153:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.94.157.153:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.30:8002",
      "gossip": "208.91.110.30:8001",
      "pubkey": "HT3xwTGd4fv5C7Lu5s634joNKbigsxB1WrZvPc7e6FN",
      "pubsub": null,
      "tpuQuic": "208.91.110.30:8010",
      "tpuVote": "208.91.110.30:8006",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "208.91.110.30:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.30:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.118.106:8002",
      "gossip": "185.191.118.106:8001",
      "pubkey": "EMdrwshNoCbGoNqzM9swwBxRDZdfsGHzS9UkKkxeQeBA",
      "pubsub": null,
      "tpuQuic": "185.191.118.106:8003",
      "tpuVote": "185.191.118.106:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.191.118.106:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.118.106:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.25:9001",
      "gossip": "198.13.130.25:9000",
      "pubkey": "HVv42TrT3TtzsGnM4GvMHZsa6Q3KFmd7iB8fHJpqkE3V",
      "pubsub": null,
      "tpuQuic": "198.13.130.25:9002",
      "tpuVote": "198.13.130.25:9004",
      "version": "4.0.0-beta.0",
      "clientId": "Agave",
      "featureSet": 1848246519,
      "serveRepair": "198.13.130.25:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.25:9003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.55.156:8001",
      "gossip": "64.130.55.156:8000",
      "pubkey": "7adh14R5htNCxPVrssrFcdfTys2d8XMey7wJ4NGVvp1s",
      "pubsub": null,
      "tpuQuic": "64.130.55.156:8002",
      "tpuVote": "64.130.55.156:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.55.156:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.55.156:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.105.224.24:8001",
      "gossip": "86.105.224.24:8000",
      "pubkey": "GoRebkiFvdTpmFNJ4KCB18BkG3bAVYRmuHeFUUbbMrcw",
      "pubsub": null,
      "tpuQuic": "86.105.224.24:8002",
      "tpuVote": "86.105.224.24:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "86.105.224.24:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.105.224.24:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.249:8000",
      "pubkey": "3sHvgB2NigtXfYxhKTBuBod7bWG59fpjkR8ZYaaGHpxN",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.62:8002",
      "gossip": "145.239.18.170:8001",
      "pubkey": "2mmmzdFLJzn6swjqXmH6C5azcW4R9JE53LbQpM52nb9M",
      "pubsub": null,
      "tpuQuic": "145.239.18.170:8003",
      "tpuVote": "145.239.18.170:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "145.239.18.170:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "145.239.18.170:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.189:8002",
      "gossip": "57.128.146.13:8001",
      "pubkey": "9Uesty69DUi2xi3qDHgq9BaxKj4fvfMPEzvy4PkFvS5b",
      "pubsub": null,
      "tpuQuic": "57.128.146.13:8003",
      "tpuVote": "57.128.146.13:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "57.128.146.13:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.128.146.13:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.19.168.80:8001",
      "gossip": "162.19.168.80:8000",
      "pubkey": "DCkN8LrcEN4zv58meonxeYDiUxjXCvPhYWMFLSsLXw6f",
      "pubsub": null,
      "tpuQuic": "162.19.168.80:8002",
      "tpuVote": "162.19.168.80:8004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "162.19.168.80:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.168.80:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "150.109.95.155:8001",
      "gossip": "150.109.95.155:8000",
      "pubkey": "CPKv1uiaXxnMGdpYFeVhaznwTqV9kWQmoPpxaR2xz3uC",
      "pubsub": null,
      "tpuQuic": "150.109.95.155:8002",
      "tpuVote": "150.109.95.155:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "150.109.95.155:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "150.109.95.155:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.180:8000",
      "pubkey": "B4XktVe6JdVUFoHFZm4k9LcggArmWpZnM7sNF1zrsPt6",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.223:8888",
      "gossip": "64.130.46.223:8000",
      "pubkey": "7sefTpxFgCzdAAbb6VWJrGRPvkcVjPaieanmjV5eBdCP",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.88.64.84:18503",
      "gossip": "38.88.64.84:18502",
      "pubkey": "BdyUHfU1A5voqN5ipqPTkaD9w9U7cuFmyuYPCLvBukQK",
      "pubsub": null,
      "tpuQuic": "38.88.64.84:18504",
      "tpuVote": "38.88.64.84:18506",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "38.88.64.84:18511",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.88.64.84:18505"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.126.205:8000",
      "gossip": "67.213.126.205:8801",
      "pubkey": "7tnpdy9X5bXginXmH8EWQJPPTeSGDpEsjide3xVtKHNE",
      "pubsub": null,
      "tpuQuic": "67.213.126.205:8001",
      "tpuVote": "67.213.126.205:8003",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "67.213.126.205:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.126.205:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.225:8001",
      "gossip": "64.130.37.225:8000",
      "pubkey": "CATdHBHnRDSYRrx2LqZ4DyoC6ExTbHCUPJLQDxdPCaKb",
      "pubsub": null,
      "tpuQuic": "64.130.37.225:8002",
      "tpuVote": "64.130.37.225:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.225:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.225:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "168.119.65.91:8001",
      "gossip": "168.119.65.91:8000",
      "pubkey": "Fn5YgtCM16o6DZhpqTSh2dEVTKzUGLux1Jjc3nr5gB5T",
      "pubsub": null,
      "tpuQuic": "168.119.65.91:8009",
      "tpuVote": "168.119.65.91:8005",
      "version": "3.1.9",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "168.119.65.91:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "168.119.65.91:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.214:8002",
      "gossip": "51.81.229.149:8001",
      "pubkey": "FfadrMhTkKoMPhVeFP47pa6E2J2Aqi97SeFPJ2TrmPgE",
      "pubsub": null,
      "tpuQuic": "51.81.229.149:8003",
      "tpuVote": "51.81.229.149:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.229.149:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.229.149:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.49.240:8003",
      "gossip": "84.32.49.240:8001",
      "pubkey": "9KwcYwZFvA5hBGxt28gusZ6oZ1p2oTzJxtmxk7vWvRZt",
      "pubsub": null,
      "tpuQuic": "84.32.49.240:9007",
      "tpuVote": "84.32.49.240:9001",
      "version": "0.909.0-rc.40001",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "84.32.49.240:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.49.240:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.30:8002",
      "gossip": "51.75.32.26:8001",
      "pubkey": "BTXajxPm8y3p4MT9imfUWYesiaFnDVLaFz7pv9cK7Vc4",
      "pubsub": null,
      "tpuQuic": "51.75.32.26:8003",
      "tpuVote": "51.75.32.26:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.75.32.26:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.75.32.26:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.134.108.87:8001",
      "gossip": "45.134.108.87:8000",
      "pubkey": "2bgkq9aBbqpxxzAye97f8XoSZ5cqmDrhS3ShWbeG6a2z",
      "pubsub": null,
      "tpuQuic": "45.134.108.87:8002",
      "tpuVote": "45.134.108.87:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.134.108.87:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.134.108.87:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.80:8002",
      "gossip": "64.130.51.80:8001",
      "pubkey": "ELd7HMjNgVAWSoMYgKC5QHXfcDvyqxtRK5ZW9r89k1tX",
      "pubsub": null,
      "tpuQuic": "64.130.51.80:8010",
      "tpuVote": "64.130.51.80:8006",
      "version": "3.0.14",
      "clientId": "Agave",
      "featureSet": 3604001754,
      "serveRepair": "64.130.51.80:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.80:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.110:8002",
      "gossip": "51.222.167.240:8001",
      "pubkey": "4vZFBpQdBM8fcicqcLKA4dCnmnUU52g3zhTqyFNexb7D",
      "pubsub": null,
      "tpuQuic": "51.222.167.240:8003",
      "tpuVote": "51.222.167.240:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.167.240:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.167.240:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.55.205:8002",
      "gossip": "64.130.55.205:8001",
      "pubkey": "28Gtae27ZgiiSWGeJ286efaNymARk1Njqpzz5QwSg1G2",
      "pubsub": null,
      "tpuQuic": "64.130.55.205:8003",
      "tpuVote": "64.130.55.205:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.55.205:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.55.205:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.139.70:8002",
      "gossip": "74.118.139.70:8001",
      "pubkey": "45kARiJS9uru6RCBE4cbEVUFKUHkz76hqJQSmRkbuFwT",
      "pubsub": null,
      "tpuQuic": "74.118.139.70:8010",
      "tpuVote": "74.118.139.70:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "74.118.139.70:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.139.70:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "163.114.159.18:11202",
      "gossip": "163.114.159.18:11201",
      "pubkey": "7KibSFKt7eoGHE8EfkhktT9WpU5KmWcHiauHaSc9cyLT",
      "pubsub": null,
      "tpuQuic": "163.114.159.18:11203",
      "tpuVote": "163.114.159.18:11205",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "163.114.159.18:11210",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "163.114.159.18:11204"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.45:8888",
      "gossip": "63.254.162.93:8000",
      "pubkey": "66wsyZcsFqKgLryY88bU5U2EHKRXASihXNYKM6k4hqEJ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.46.86.123:8002",
      "gossip": "72.46.86.123:8001",
      "pubkey": "45HJsRqmHyfxbkN19XCo69J9epcmLBywy2rLc7x6w6BT",
      "pubsub": null,
      "tpuQuic": "72.46.86.123:8003",
      "tpuVote": "72.46.86.123:8005",
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 398636002,
      "serveRepair": "72.46.86.123:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.46.86.123:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.206.147.36:8000",
      "gossip": "109.206.147.36:8001",
      "pubkey": "74rDxCdn8xe7UGnYyTFQgMJFbYe1SuVVzrKhY51NjtWG",
      "pubsub": null,
      "tpuQuic": "109.206.147.36:8002",
      "tpuVote": "109.206.147.36:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.206.147.36:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.206.147.36:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.203:8002",
      "gossip": "176.31.67.95:8001",
      "pubkey": "2Z2XjuQiEr5U1MRemgyeqhBAf8NjzCg4irikwdYFhhp4",
      "pubsub": null,
      "tpuQuic": "176.31.67.95:8003",
      "tpuVote": "176.31.67.95:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "176.31.67.95:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "176.31.67.95:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.143:8888",
      "gossip": "198.13.141.47:8000",
      "pubkey": "8VMaBhejhFSEcdvNr9kBUa9WUDNwUi3QPFdhV5GLdJVE",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "54.176.148.237:8000",
      "pubkey": "6aYSJTovNbTVaCkiSPYRknde7J5eRkXGFztU6hcK4zsk",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.34.52:8996",
      "gossip": "64.130.34.52:8995",
      "pubkey": "7JgwbLRfvzLWt89Agbayx4t65raCbDfKFSYEDJg7WD16",
      "pubsub": null,
      "tpuQuic": "64.130.34.52:8997",
      "tpuVote": "64.130.34.52:8999",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.34.52:9004",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.34.52:8998"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.247.67:8002",
      "gossip": "204.16.247.67:8001",
      "pubkey": "Bcfb95KLUTbJ6Jku8WaU2CuqSeagDeuUKyV4r95LbMUk",
      "pubsub": null,
      "tpuQuic": "204.16.247.67:8003",
      "tpuVote": "204.16.247.67:8005",
      "version": "4.0.0",
      "clientId": "HarmonicAgave",
      "featureSet": 3718597879,
      "serveRepair": "204.16.247.67:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.247.67:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "81.29.134.74:6001",
      "gossip": "81.29.134.74:6000",
      "pubkey": "G3KFVu5J8to65ZvLitmZ5cYZ8kvfnivmUKqHHs9CSpcJ",
      "pubsub": null,
      "tpuQuic": "81.29.134.74:6002",
      "tpuVote": "81.29.134.74:6004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "81.29.134.74:6008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "81.29.134.74:6003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.248:8002",
      "gossip": "51.81.207.2:8001",
      "pubkey": "GWFqgfBTUKLHq2QHYa3KD7Z7y1JA7c94VcdmebJq3GhM",
      "pubsub": null,
      "tpuQuic": "51.81.207.2:8003",
      "tpuVote": "51.81.207.2:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.207.2:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.207.2:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.143.249:8002",
      "gossip": "74.118.143.249:8001",
      "pubkey": "CUzcPNqeomkChquWYjGEi5FQpTsoYFgmTt1etpXKL8Tc",
      "pubsub": null,
      "tpuQuic": "74.118.143.249:8010",
      "tpuVote": "74.118.143.249:8006",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "74.118.143.249:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.143.249:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.39:8001",
      "gossip": "84.32.103.39:8000",
      "pubkey": "rxWN5ApiDQEyysQVPVJQSD7fzwttpmwVveZY21CgDMQ",
      "pubsub": null,
      "tpuQuic": "84.32.103.39:8002",
      "tpuVote": "84.32.103.39:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "84.32.103.39:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.39:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.237:8002",
      "gossip": "64.130.52.237:8001",
      "pubkey": "2JSxXzwLVHb9Y9Pmi9V9TDRRMqPgpGYV1pHoYx3B7fhb",
      "pubsub": null,
      "tpuQuic": "64.130.52.237:8003",
      "tpuVote": "64.130.52.237:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.52.237:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.237:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.97.4:8002",
      "gossip": "84.32.97.4:8001",
      "pubkey": "GofVHVgf3FtEcMUASpdoy8N8zL2pg1p7czvUSUeaT9dh",
      "pubsub": null,
      "tpuQuic": "84.32.97.4:8003",
      "tpuVote": "84.32.97.4:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "84.32.97.4:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.97.4:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.204.105.192:8001",
      "gossip": "15.204.105.192:8000",
      "pubkey": "ApuYfwSzuMSdRNGe9g45Z5HfuMxmXayPaewqhKJK2R5U",
      "pubsub": null,
      "tpuQuic": "15.204.105.192:8002",
      "tpuVote": "15.204.105.192:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "15.204.105.192:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.105.192:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "188.241.53.20:8001",
      "gossip": "45.250.25.158:8000",
      "pubkey": "F9Rpc3ZNzRGbVs1cGu973fuBnAC8DvtkCiopi5XeP1rq",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "150.109.16.87:8001",
      "gossip": "150.109.16.87:8000",
      "pubkey": "5a1uqE1R7PosUTLrYiSfDVJuFuFFiuTJajvh52qyTJeM",
      "pubsub": null,
      "tpuQuic": "150.109.16.87:8002",
      "tpuVote": "150.109.16.87:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "150.109.16.87:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "150.109.16.87:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "186.233.187.31:8001",
      "gossip": "186.233.187.31:8000",
      "pubkey": "32UjiRMCp7SErRHhLMjX7sSFica7Fm9Fe6HwNFSR3S7m",
      "pubsub": null,
      "tpuQuic": "186.233.187.31:8002",
      "tpuVote": "186.233.187.31:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "186.233.187.31:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "186.233.187.31:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.95:8000",
      "gossip": "45.152.160.95:8001",
      "pubkey": "GNeU7zYdhKihEH7amPpFbuT3dvWhNpFJcs8vUGyRd6pZ",
      "pubsub": null,
      "tpuQuic": "45.152.160.95:8002",
      "tpuVote": "45.152.160.95:8004",
      "version": "4.0.0-beta.7",
      "clientId": "JitoLabs",
      "featureSet": 1253319928,
      "serveRepair": "45.152.160.95:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.95:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "177.54.154.27:8001",
      "gossip": "177.54.154.27:8000",
      "pubkey": "HpEJCVFS23pRhQNXRUcfpYr8zHQm4G9RKKoNPM35v7tr",
      "pubsub": null,
      "tpuQuic": "177.54.154.27:8002",
      "tpuVote": "177.54.154.27:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "177.54.154.27:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "177.54.154.27:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.84:8002",
      "gossip": "51.222.160.138:8001",
      "pubkey": "Hke58psbt31f3mF6SNNksgS5adg5mZxDJDGmxUE8WL5x",
      "pubsub": null,
      "tpuQuic": "51.222.160.138:8003",
      "tpuVote": "51.222.160.138:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.160.138:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.160.138:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "95.179.135.155:8001",
      "gossip": "95.179.135.155:8000",
      "pubkey": "4bJqDUskQ1VWHdvZYr4w6gYGHM67f99tqpRHgVh4M6UH",
      "pubsub": null,
      "tpuQuic": "95.179.135.155:8002",
      "tpuVote": "95.179.135.155:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "95.179.135.155:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "95.179.135.155:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.16:8888",
      "gossip": "63.254.161.176:8000",
      "pubkey": "49JfNZrbfgUYqLk5eAJZKGRRfpbLqsTRM5VNNzUyCAyv",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.55:8888",
      "gossip": "198.13.136.232:8000",
      "pubkey": "dUkALy1bcZBRbjbh34VtB1NqMeHgSrLyvjnWhVvXHNC",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.75:8001",
      "gossip": "198.13.130.75:8000",
      "pubkey": "5S538CNRZ2ocy5JSr75mFJ1bpdhnmJFUUwby12Fw7gsT",
      "pubsub": null,
      "tpuQuic": "198.13.130.75:8002",
      "tpuVote": "198.13.130.75:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.130.75:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.75:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.197.104:8002",
      "gossip": "88.216.197.104:8001",
      "pubkey": "85SYFjKyWDF9ef3QWvshNPQAbFJ4QzvZ1yubpU4KbbLB",
      "pubsub": null,
      "tpuQuic": "88.216.197.104:8003",
      "tpuVote": "88.216.197.104:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "88.216.197.104:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.197.104:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "51.44.169.100:8000",
      "pubkey": "A6nE2fidPN4MEKFoJHFVfKwnob432RCqVkgmqZyK4DUU",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.125:8003",
      "gossip": "64.130.50.125:8001",
      "pubkey": "EoWpeTFfmRZu2A9XFmHaAMzkWPhy1Zk79azRPMoCRbYM",
      "pubsub": null,
      "tpuQuic": "64.130.50.125:8037",
      "tpuVote": "64.130.50.125:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.125:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.125:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.197.28:8100",
      "gossip": "88.216.197.28:8001",
      "pubkey": "539VJsiHsSvLayQSGMwgwQsY7qfqoXuK1cNfuTBTY4K4",
      "pubsub": null,
      "tpuQuic": "88.216.197.28:8101",
      "tpuVote": "88.216.197.28:8103",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "88.216.197.28:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.197.28:8102"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.75:8002",
      "gossip": "51.89.18.35:8001",
      "pubkey": "F7KujxR2D5SPVj7QLJF7riGuu4REYA2bQPMFNsLD1Vfc",
      "pubsub": null,
      "tpuQuic": "51.89.18.35:8003",
      "tpuVote": "51.89.18.35:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.18.35:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.18.35:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.16:8002",
      "gossip": "5.135.116.70:8001",
      "pubkey": "5v3psY3pXmQf1znpMqj8GoAqTLpx25T1iQqntUP2Ee4w",
      "pubsub": null,
      "tpuQuic": "5.135.116.70:8003",
      "tpuVote": "5.135.116.70:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.116.70:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.116.70:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.139:8002",
      "gossip": "51.81.26.45:8001",
      "pubkey": "HYvcEfoPGU8H1Ksf3F5hkWbBe1UvBBQEdqS9Y8KtqWQq",
      "pubsub": null,
      "tpuQuic": "51.81.26.45:8003",
      "tpuVote": "51.81.26.45:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.26.45:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.26.45:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.78:8002",
      "gossip": "64.130.61.78:8001",
      "pubkey": "GWZWKeU4SCsuAgkEy2Anz12i8opGERABvADJZiPdDHMH",
      "pubsub": null,
      "tpuQuic": "64.130.61.78:8003",
      "tpuVote": "64.130.61.78:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.61.78:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.78:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.19:8002",
      "gossip": "64.130.51.19:8001",
      "pubkey": "dmycoyQrZsMbW3xUtAUkRVTQVDUsBMbjruvmoX5b9v6",
      "pubsub": null,
      "tpuQuic": "64.130.51.19:8003",
      "tpuVote": "64.130.51.19:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.19:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.19:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.118.181:8000",
      "gossip": "185.191.118.181:8001",
      "pubkey": "BMKpfnRU9GjrP4ExGxSbUriSj1k5jfST6Kw9FPQc3C3Y",
      "pubsub": null,
      "tpuQuic": "185.191.118.181:8002",
      "tpuVote": "185.191.118.181:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.191.118.181:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.118.181:8003"
    },
    {
      "rpc": "134.65.192.208:8895",
      "tpu": null,
      "tvu": "134.65.192.208:8002",
      "gossip": "134.65.192.208:8001",
      "pubkey": "EVza6WyZusWifc6U4Vu58zK6fPuTRajTrR7xGeSzHuMs",
      "pubsub": "134.65.192.208:8895",
      "tpuQuic": "134.65.192.208:8003",
      "tpuVote": "134.65.192.208:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "134.65.192.208:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "134.65.192.208:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.207.199:8002",
      "gossip": "74.63.207.199:8001",
      "pubkey": "ULPLeSEGjDnDyZepSRxmY7JMZPvZogbjYxf4zQssSu1",
      "pubsub": null,
      "tpuQuic": "74.63.207.199:8003",
      "tpuVote": "74.63.207.199:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.207.199:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.207.199:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.217:8888",
      "gossip": "64.130.46.217:8000",
      "pubkey": "HXQTNTmNWhtXLevnWmqi7ZrgvKUKq72Ck798yAZ6XP9Y",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.54:8888",
      "gossip": "198.13.133.38:8000",
      "pubkey": "HopdQnPTFeu2rFGu2QX6coSN5rnvshpcNp2ZhMAG3Zrq",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.251:8002",
      "gossip": "51.255.148.98:8001",
      "pubkey": "EUrKH5UvZgKv7gHzvs5o8GDR78KW5ohL4XUs8t8fn74q",
      "pubsub": null,
      "tpuQuic": "51.255.148.98:8003",
      "tpuVote": "51.255.148.98:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.255.148.98:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.255.148.98:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.64:8002",
      "gossip": "176.31.30.22:8001",
      "pubkey": "E5jxBauWZss1ejp7FUfdYuTTzAr9G1QqqMG6wAJmM373",
      "pubsub": null,
      "tpuQuic": "176.31.30.22:8003",
      "tpuVote": "176.31.30.22:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "176.31.30.22:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "176.31.30.22:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.35:8888",
      "gossip": "198.13.136.195:8000",
      "pubkey": "4dq2gTfyjYxwjnuc7Vsoz2mGH9bsiYsmjoZjPjpcqv4k",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.90:8002",
      "gossip": "51.222.162.48:8001",
      "pubkey": "CPcahh2USv8uX2etz1LuQ5UojALFWxNfGxf3awMfV7YW",
      "pubsub": null,
      "tpuQuic": "51.222.162.48:8003",
      "tpuVote": "51.222.162.48:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.48:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.48:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.51.111:8002",
      "gossip": "64.31.51.111:8001",
      "pubkey": "3FsRNTRPqNswCUQsD2knad7ePkvx7jPMyrxyo2V3cSbd",
      "pubsub": null,
      "tpuQuic": "64.31.51.111:8003",
      "tpuVote": "64.31.51.111:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.51.111:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.51.111:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.28.238.4:8001",
      "gossip": "149.28.238.4:8000",
      "pubkey": "6MpguSyYJwZSRBvaRCYNk2qgwVawUNutJ8EmzaVKqU7V",
      "pubsub": null,
      "tpuQuic": "149.28.238.4:8002",
      "tpuVote": "149.28.238.4:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "149.28.238.4:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "149.28.238.4:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.91:8002",
      "gossip": "51.222.162.49:8001",
      "pubkey": "FjYQuYmPkr4WFfZTrJG4Dr6cbhCPFxgtcJm95WH1YCKZ",
      "pubsub": null,
      "tpuQuic": "51.222.162.49:8003",
      "tpuVote": "51.222.162.49:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.49:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.49:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.163:8888",
      "gossip": "45.250.253.10:8000",
      "pubkey": "BFk6U8WySfXeJi467B5XEoBE93rkBgTVm7AoT3vmpgMC",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.48:8001",
      "gossip": "64.130.44.48:8000",
      "pubkey": "C2PALbvgieYsQK9EvDXCo2JwZjRju8FjKMVrh4nQXoQb",
      "pubsub": null,
      "tpuQuic": "64.130.44.48:8002",
      "tpuVote": "64.130.44.48:8004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "64.130.44.48:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.48:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.239:8002",
      "gossip": "51.81.190.1:8001",
      "pubkey": "8uWe4pym7TRMWTa7RG2dVhLCa4v4Q7wvJQ4XmwVxzcNk",
      "pubsub": null,
      "tpuQuic": "51.81.190.1:8003",
      "tpuVote": "51.81.190.1:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.190.1:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.190.1:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.218:8888",
      "gossip": "64.130.46.218:8000",
      "pubkey": "DL1P4egmE9TJNDxigXAXWid3LbrBxBHjaFD2VWnmHrUC",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.34:8888",
      "gossip": "198.13.136.194:8000",
      "pubkey": "7EsC63Y8m5oUYbueZHN99S29s4WtgQKdzh8Lb5ngra1M",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.205:8002",
      "gossip": "5.135.168.161:8001",
      "pubkey": "7rLMrU4ecmYT73YK871dpZDr5DKUTKuDN94ep3wPWKMk",
      "pubsub": null,
      "tpuQuic": "5.135.168.161:8003",
      "tpuVote": "5.135.168.161:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.168.161:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.168.161:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.140:8888",
      "gossip": "198.13.141.44:8000",
      "pubkey": "5qS3suDFAXZ3SAC5L9mRiMPMsqCmBkYcpUfPEGkRiEeT",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.102:8001",
      "gossip": "64.130.52.102:8000",
      "pubkey": "Aox4eGGDYeteZuNuK8CWbcGcJaM1hi1MUUNzac3dLZDs",
      "pubsub": null,
      "tpuQuic": "64.130.52.102:8002",
      "tpuVote": "64.130.52.102:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.102:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.102:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.122.235:8000",
      "gossip": "67.213.122.235:8801",
      "pubkey": "E1eWXKEfJxUt1UT2eNRkbLSaBUmiKukyKnrhztgovkBp",
      "pubsub": null,
      "tpuQuic": "67.213.122.235:8001",
      "tpuVote": "67.213.122.235:8003",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "67.213.122.235:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.122.235:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "54.179.168.152:8000",
      "pubkey": "9U8qwPUB5h5wMUY2wjeqCKa7EEooybAyaacTA2m5rVxw",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "45.250.253.254:8000",
      "pubkey": "HcrS4p9MbyZeJc8dTVdApR9c9Gfp1yV3TVjNfiTMmLJ9",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.52:8888",
      "gossip": "198.13.136.229:8000",
      "pubkey": "6qRB7CP58sUFwRKPMGqHc4hRPhxSqAw3WfFD5FTYuTyM",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.6:8002",
      "gossip": "51.68.133.50:8001",
      "pubkey": "ay7FbqU1Mp7aZAAfNfg1GAwm8cgMuGF3Yn1m5dRSuV2",
      "pubsub": null,
      "tpuQuic": "51.68.133.50:8003",
      "tpuVote": "51.68.133.50:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.133.50:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.133.50:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.136.44:8002",
      "gossip": "74.118.136.44:8001",
      "pubkey": "BEaoC3SJUPTxeHEtoRmKtpbeSkUEFjFtgQbQZ6BggwX2",
      "pubsub": null,
      "tpuQuic": "74.118.136.44:8003",
      "tpuVote": "74.118.136.44:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.136.44:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.136.44:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "146.0.229.109:10000",
      "gossip": "146.0.229.109:10001",
      "pubkey": "29cupdgZbBxcFgdgNt6r9icxBuY1bYkwkPAmqamTBuUL",
      "pubsub": null,
      "tpuQuic": "146.0.229.109:10009",
      "tpuVote": "146.0.229.109:10005",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "146.0.229.109:10012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.0.229.109:10010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.122:8002",
      "gossip": "51.222.171.24:8001",
      "pubkey": "5RefGbCFs2trXaXmwDgQi2DkER4dM2899ZBFdLT3hGPB",
      "pubsub": null,
      "tpuQuic": "51.222.171.24:8003",
      "tpuVote": "51.222.171.24:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.171.24:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.171.24:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.198:8000",
      "gossip": "64.130.52.198:8001",
      "pubkey": "ALM4CcmpUSNA3xM29ffemQ7Hrz1NkWhrxKJo4LkBXCQh",
      "pubsub": null,
      "tpuQuic": "64.130.52.198:8002",
      "tpuVote": "64.130.52.198:8004",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "64.130.52.198:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.198:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.49:8000",
      "pubkey": "FDxL946y5Xv566kQAudYfn9FfumrzD3bN9AHpjKTD8Xt",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.83.162:8000",
      "pubkey": "CkQVBx1hsNVpWJ1fNTpgADqdWmNb8miu84PoHHxkAjUS",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "3.223.135.77:38001",
      "gossip": "3.223.135.77:38000",
      "pubkey": "HC74nSuikXdnFN7C6rfkNZEiupbEVHfQxJcsLetXDU5H",
      "pubsub": null,
      "tpuQuic": "3.223.135.77:38002",
      "tpuVote": "3.223.135.77:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "3.223.135.77:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "3.223.135.77:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.202:8888",
      "gossip": "63.254.169.26:8000",
      "pubkey": "3PBhMwMZaDek38cGqLJkfJcXKuHQycx5x2jMTASXXJaq",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.72:8000",
      "pubkey": "9TJdSk7LRDjor4ZLRKQRbwCB7poBhBfoTCGsG7PkGvLp",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.38:8002",
      "gossip": "51.77.35.90:8001",
      "pubkey": "GSPb1MnPxLTHJZsefBSqeomaT2B8Unk9gu1GYDR1R7fX",
      "pubsub": null,
      "tpuQuic": "51.77.35.90:8003",
      "tpuVote": "51.77.35.90:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.77.35.90:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.77.35.90:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.126:8000",
      "pubkey": "8J5vdMbAdG4iX8L1Pwz2iH3MPdmWdrdZQu6wGrmi4xvP",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "3.101.140.38:8000",
      "pubkey": "5Ai1wh1xwrp1MHZuvVMNgMpB6EfBcsMgtqLsvfWdEmWQ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.9:8002",
      "gossip": "91.121.240.43:8001",
      "pubkey": "Gcv4LGQpfcnMUTcNfpHW1Zibck4NeCAkMBp3uf6Nnvux",
      "pubsub": null,
      "tpuQuic": "91.121.240.43:8003",
      "tpuVote": "91.121.240.43:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "91.121.240.43:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.121.240.43:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.53.176:8000",
      "gossip": "57.129.53.176:8001",
      "pubkey": "CinbbRm5fCQCua9z3BN3KcwZHw2ycF2mkDgjSF1Ph9Nf",
      "pubsub": null,
      "tpuQuic": "57.129.53.176:8002",
      "tpuVote": "57.129.53.176:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "57.129.53.176:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.53.176:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "157.180.4.206:8000",
      "gossip": "157.180.4.206:8001",
      "pubkey": "Cpu1kd2LCLkRw5cMu4xXf3MRa7FcXP39yA94xejvK5Ho",
      "pubsub": null,
      "tpuQuic": "157.180.4.206:8002",
      "tpuVote": "157.180.4.206:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "157.180.4.206:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "157.180.4.206:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.105.224.8:8001",
      "gossip": "86.105.224.8:8000",
      "pubkey": "DNE5By5x37X5FB3zLrkUsDZYVWaG5uRNcKbgCQd5jUvJ",
      "pubsub": null,
      "tpuQuic": "86.105.224.8:8002",
      "tpuVote": "86.105.224.8:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "86.105.224.8:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.105.224.8:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.203.31:8002",
      "gossip": "208.115.203.31:8001",
      "pubkey": "Dsrf1oSSBTTPLSMg6X73NAJKpFWwy4wcQ97wJWwXHfMq",
      "pubsub": null,
      "tpuQuic": "208.115.203.31:8003",
      "tpuVote": "208.115.203.31:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.203.31:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.203.31:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.86:8001",
      "gossip": "84.32.103.86:8000",
      "pubkey": "7JZBWYMJ3vgym1bCUFsTvN1MbiYnur8sNX4gciqejK36",
      "pubsub": null,
      "tpuQuic": "84.32.103.86:8002",
      "tpuVote": "84.32.103.86:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "84.32.103.86:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.86:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.184.37:8001",
      "gossip": "70.40.184.37:8000",
      "pubkey": "5b7BrnhpEz73ftg7vbG4suttL8kN5Pwb3Tch6BRDQVzX",
      "pubsub": null,
      "tpuQuic": "70.40.184.37:8002",
      "tpuVote": "70.40.184.37:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "70.40.184.37:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.184.37:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.161:8888",
      "gossip": "45.250.253.6:8000",
      "pubkey": "9jqYAKCTmGijcEcD8MYLdSYDRGJn5xbpTH7xVGcuiXfv",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.41:8888",
      "gossip": "198.13.136.201:8000",
      "pubkey": "CWifsMDhqKXF1PDxZjqktFWimFVGms2WJ6Exa3YTZzbi",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.50.212.84:8001",
      "gossip": "149.50.212.84:8000",
      "pubkey": "AvvxQG415MH7qww9V854bfTEMKKQZz5RQDajuW1uF77N",
      "pubsub": null,
      "tpuQuic": "149.50.212.84:8002",
      "tpuVote": "149.50.212.84:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "149.50.212.84:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "149.50.212.84:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.69:8001",
      "gossip": "64.130.58.69:8000",
      "pubkey": "2kzR19hybDdRmh1RcjUx6wkiNAUWvwcLxUE4houEP5ka",
      "pubsub": null,
      "tpuQuic": "64.130.58.69:8002",
      "tpuVote": "64.130.58.69:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.58.69:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.69:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.116:8002",
      "gossip": "54.37.90.196:8001",
      "pubkey": "6vQgUS2VzCrtLftDKdksegdeHr7qwe1BxjUHL1QmZPrh",
      "pubsub": null,
      "tpuQuic": "54.37.90.196:8003",
      "tpuVote": "54.37.90.196:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.37.90.196:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.37.90.196:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.142.140:8000",
      "gossip": "104.204.142.140:8001",
      "pubkey": "E2FHj6LsECFv1DqYoGq6PovRimwaKzWemEmVYXx5aLhv",
      "pubsub": null,
      "tpuQuic": "104.204.142.140:8002",
      "tpuVote": "104.204.142.140:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.204.142.140:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.142.140:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.83.152:8000",
      "pubkey": "7GEKx4G43tC24CQvw9KgYdVj9uRm94ESrzGeWjRY24kV",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.101:8000",
      "pubkey": "FzTRtxr6q4YdbY8TmWEwy1AhutgTCUpmtrcd9ZhyKiTR",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.228:8002",
      "gossip": "5.135.193.159:8001",
      "pubkey": "AUJb7QpfKWZZAqrcFBxsmKRwfHaBvj8BcAes5uLaKbCj",
      "pubsub": null,
      "tpuQuic": "5.135.193.159:8003",
      "tpuVote": "5.135.193.159:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.193.159:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.193.159:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.73.56.217:8001",
      "gossip": "198.73.56.217:8000",
      "pubkey": "5VsH7132DDhVaHzLYUgPWkVPpRqbnTuRznBUBxxtHiSn",
      "pubsub": null,
      "tpuQuic": "198.73.56.217:8009",
      "tpuVote": "198.73.56.217:8005",
      "version": "3.1.13",
      "clientId": "HarmonicAgave",
      "featureSet": 534737035,
      "serveRepair": "198.73.56.217:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.73.56.217:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.49:8888",
      "gossip": "198.13.136.226:8000",
      "pubkey": "HF2NoPqeuMSAUyHQGS8VQiW4uL5Vg42yX1mq8YTwfFvN",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.55:8002",
      "gossip": "137.74.50.1:8001",
      "pubkey": "BSqZXe7Fc5pUGY7UUk9N82x7D1s8tuLPAsgnauRpHg9k",
      "pubsub": null,
      "tpuQuic": "137.74.50.1:8003",
      "tpuVote": "137.74.50.1:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "137.74.50.1:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "137.74.50.1:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.239:8002",
      "gossip": "64.130.52.239:8001",
      "pubkey": "CK7KT7Mvs9utkpy1Nfhz2axi5DrtogMEiy4Tq7sGX1qU",
      "pubsub": null,
      "tpuQuic": "64.130.52.239:8003",
      "tpuVote": "64.130.52.239:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.239:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.239:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.242:8000",
      "pubkey": "8SPViiKD9GK5roS3NpGjqcKx5mVNqVh6mZ5W84oBGyCJ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.17:8888",
      "gossip": "63.254.161.177:8000",
      "pubkey": "FdHLFDhjusmUNNEKBa8L8SNAeNKa6bBGw2WCfPSmZBGU",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "3.84.88.2:8000",
      "pubkey": "EC8gZXsksCbDbedxW1ZMAwjhvtyuJx4diuL2NZ9GnARQ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.54.246:8002",
      "gossip": "67.209.54.246:8001",
      "pubkey": "E2BbGNKfQCtqSHdibc29pSbDsytNY3NaZqknowLZoZGs",
      "pubsub": null,
      "tpuQuic": "67.209.54.246:8003",
      "tpuVote": "67.209.54.246:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.209.54.246:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.54.246:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.63.68.231:8001",
      "gossip": "45.63.68.231:8000",
      "pubkey": "5Y91NZawHirGAh9VUUpoSqYVFak4Tg999Www3nfnpi5G",
      "pubsub": null,
      "tpuQuic": "45.63.68.231:8002",
      "tpuVote": "45.63.68.231:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.63.68.231:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.63.68.231:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.234:8002",
      "gossip": "51.81.182.80:8001",
      "pubkey": "GJ3hS9qEKaTghu1qXkNB9VedsvMeqL6LEpWS8iktRvss",
      "pubsub": null,
      "tpuQuic": "51.81.182.80:8003",
      "tpuVote": "51.81.182.80:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.182.80:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.182.80:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.115:8002",
      "gossip": "64.130.42.115:8001",
      "pubkey": "GCEAUvTPFqPH6y5GaNsZVK3vsDrcnnmGCzYXp132Yyxu",
      "pubsub": null,
      "tpuQuic": "64.130.42.115:8003",
      "tpuVote": "64.130.42.115:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.115:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.115:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "51.44.82.16:8000",
      "pubkey": "E9s6P7roZ7ARhgcVPuL5rd5HpZz3aqtKjPT1gqKfhSci",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "91.242.214.149:8002",
      "gossip": "91.242.214.149:8001",
      "pubkey": "sce3TfT81rxYYcdbP1kBFMcTK3ZBc8hvHVeXD6WLSzE",
      "pubsub": null,
      "tpuQuic": "91.242.214.149:8003",
      "tpuVote": "91.242.214.149:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "91.242.214.149:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.242.214.149:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.34:8000",
      "pubkey": "64pm3GBaVRoDMBjvP1ykVtWfQTNMZuahtn6iHzowrNzB",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.103:8002",
      "gossip": "208.91.110.103:8001",
      "pubkey": "FriYGSHPHNaqsy37sio3vapAiVtNXtZQgM6mP83um6xc",
      "pubsub": null,
      "tpuQuic": "208.91.110.103:8003",
      "tpuVote": "208.91.110.103:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.103:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.103:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "107.155.108.162:8001",
      "gossip": "107.155.108.162:8000",
      "pubkey": "6WVsgUozMTWAS6HuxqRMJAQNiBfMJrwQg5nuWEzvFBb1",
      "pubsub": null,
      "tpuQuic": "107.155.108.162:8002",
      "tpuVote": "107.155.108.162:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "107.155.108.162:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "107.155.108.162:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.34.155:8001",
      "gossip": "64.130.34.155:8000",
      "pubkey": "ADXUz4wzYwkxkwsszs1DU46YsnHqatgjVcoxGjNEPomp",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-beta.1",
      "clientId": "JitoLabs",
      "featureSet": 713536442,
      "serveRepair": "64.130.34.155:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.208.234.130:8003",
      "gossip": "67.208.234.130:8002",
      "pubkey": "4Wev9yHy4jDkf7iiN1w1c5xs82oi83Ss5Lfm1uqoJyDw",
      "pubsub": null,
      "tpuQuic": "67.208.234.130:8004",
      "tpuVote": "67.208.234.130:8006",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.208.234.130:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.208.234.130:8005"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.46.70:8001",
      "gossip": "64.130.46.70:8000",
      "pubkey": "E1Mba345CEy4pQvJD5mMKCzPVAFMz5SQe87pW2sarCSV",
      "pubsub": null,
      "tpuQuic": "64.130.46.70:8002",
      "tpuVote": "64.130.46.70:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.46.70:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.70:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.17:8002",
      "gossip": "185.191.117.17:8001",
      "pubkey": "82rmPeA4NQktjJjocCXVhCLZU5qJRA7YJmixgxiF6oDV",
      "pubsub": null,
      "tpuQuic": "185.191.117.17:8003",
      "tpuVote": "185.191.117.17:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.17:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.17:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "54.194.158.10:38001",
      "gossip": "54.194.158.10:38000",
      "pubkey": "GWEbBrvfVm5E6GL5BrhHeqSPVhepgLmVsoW5njywJ4ga",
      "pubsub": null,
      "tpuQuic": "54.194.158.10:38002",
      "tpuVote": "54.194.158.10:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "54.194.158.10:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.194.158.10:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.187.238:8003",
      "gossip": "70.40.187.238:8001",
      "pubkey": "2FBKqRXJRk7L33GgyQtANtCzqxcnDgZsnXuz5R1u2tXs",
      "pubsub": null,
      "tpuQuic": "70.40.187.238:9007",
      "tpuVote": "70.40.187.238:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "70.40.187.238:8910",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.187.238:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.61.209.80:8001",
      "gossip": "5.61.209.80:8000",
      "pubkey": "4dEQnpgusPRNQrA4FBWdzW8wZzDPppAEEKqdv8mh8ew1",
      "pubsub": null,
      "tpuQuic": "5.61.209.80:8002",
      "tpuVote": "5.61.209.80:8004",
      "version": "4.0.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.61.209.80:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.61.209.80:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.225:8002",
      "gossip": "67.213.121.225:8001",
      "pubkey": "AhJ2EGV55D2b8Suqd89ra78RgjXH321ytsJSW5VbrxzN",
      "pubsub": null,
      "tpuQuic": "67.213.121.225:8003",
      "tpuVote": "67.213.121.225:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.121.225:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.225:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.82:8000",
      "pubkey": "CmhREgetJxDkw7TRYPHvijhtY2V39k38ykrAKA3MtNP5",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.213:8888",
      "gossip": "64.130.46.213:8000",
      "pubkey": "A568yusUkbsD5XM7REZHiDA9nRVABzpLJy5NsvPsJWvy",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.100:8002",
      "gossip": "64.130.42.100:8001",
      "pubkey": "D74AzeULRdnnfct6cgFoayUhzBswvvzecyyHq5YegJpz",
      "pubsub": null,
      "tpuQuic": "64.130.42.100:8003",
      "tpuVote": "64.130.42.100:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.100:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.100:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "45.250.253.85:8000",
      "pubkey": "3xUmpARBThKkyKgFFZGN7GSE81Qhj396sfrSiD6CDi2T",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.183:8002",
      "gossip": "64.130.57.183:8001",
      "pubkey": "M9h7u2qerMZ8r5cnZSxSPiNgJdzW4zXW4sMZSiG4Yhf",
      "pubsub": null,
      "tpuQuic": "64.130.57.183:8010",
      "tpuVote": "64.130.57.183:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "64.130.57.183:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.183:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.185:8888",
      "gossip": "198.13.136.217:8000",
      "pubkey": "81Ab8XkyuBhjvxrvqrSRdVS4DH2AswsopkVkmXDwtMLv",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.189:8002",
      "gossip": "15.204.20.194:8001",
      "pubkey": "BDU4MkwgHxfoULxir4W3MVwRVGWpDtqP2rK6kvng2hqY",
      "pubsub": null,
      "tpuQuic": "15.204.20.194:8003",
      "tpuVote": "15.204.20.194:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "15.204.20.194:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.20.194:8004"
    },
    {
      "rpc": "64.130.47.151:8899",
      "tpu": null,
      "tvu": "64.130.47.151:8001",
      "gossip": "64.130.47.151:8000",
      "pubkey": "Cm3pNKwc8d5LUhgUMdkyyFTcYnLgwS9zR6kyx5u7gUxY",
      "pubsub": "64.130.47.151:8900",
      "tpuQuic": "64.130.47.151:8002",
      "tpuVote": "64.130.47.151:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.47.151:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.151:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "158.51.13.10:8001",
      "gossip": "158.51.13.10:8000",
      "pubkey": "8MpsafHyprFYZvVEyPwaa58T6bPf2X3cX7vabyHqysBp",
      "pubsub": null,
      "tpuQuic": "158.51.13.10:8002",
      "tpuVote": "158.51.13.10:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "158.51.13.10:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "158.51.13.10:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.137.184:8001",
      "gossip": "198.13.137.184:8000",
      "pubkey": "EFazZZgGPotCszT1x7b8RyLLUjudCzzj8UixwKvaV1SV",
      "pubsub": null,
      "tpuQuic": "198.13.137.184:8002",
      "tpuVote": "198.13.137.184:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.137.184:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.137.184:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.41:8002",
      "gossip": "5.135.192.211:8001",
      "pubkey": "oxeMpvjnWR2RrNhUES5UjjNALMNq2p3238h7UYQ3s2i",
      "pubsub": null,
      "tpuQuic": "5.135.192.211:8003",
      "tpuVote": "5.135.192.211:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.192.211:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.192.211:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.250.25.158:8001",
      "gossip": "45.250.25.158:8000",
      "pubkey": "BBg5twzZAsUHzuj7QKdEsy4LrA8x53C27eKCG9ZM4bTu",
      "pubsub": null,
      "tpuQuic": "45.250.25.158:8002",
      "tpuVote": "45.250.25.158:8004",
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": "45.250.25.158:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.250.25.158:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.44:8002",
      "gossip": "5.135.196.122:8001",
      "pubkey": "BKp4T36K9iMDoeAt3jyVQvSq2r6k61BmxHhCsuCVTRJs",
      "pubsub": null,
      "tpuQuic": "5.135.196.122:8003",
      "tpuVote": "5.135.196.122:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.196.122:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.196.122:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.183:8888",
      "gossip": "198.13.136.215:8000",
      "pubkey": "3EQGYRsLY8ptZ9nDWHEd9X5jm71oqKKo5pnQ6VzP8Bn5",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.56:8001",
      "gossip": "64.130.33.56:8000",
      "pubkey": "MgzixEoAj2sdThrPczkuhjH39mkgzGYyxerHCptoZnx",
      "pubsub": null,
      "tpuQuic": "64.130.33.56:8002",
      "tpuVote": "64.130.33.56:8004",
      "version": "4.0.0-rc.0",
      "clientId": "JitoLabs",
      "featureSet": 767961353,
      "serveRepair": "64.130.33.56:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.56:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "157.90.104.62:8001",
      "gossip": "157.90.104.62:8000",
      "pubkey": "G7XUCB4cv9YWCDtKoZHV4G7fD5YhLVDCsDT2jBSkmaJV",
      "pubsub": null,
      "tpuQuic": "157.90.104.62:8002",
      "tpuVote": "157.90.104.62:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "157.90.104.62:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "157.90.104.62:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.47:8002",
      "gossip": "5.135.243.149:8001",
      "pubkey": "D8fCNB37wuqAVRrwiVmtniVuCejjKqWe4TpMqaiBobNJ",
      "pubsub": null,
      "tpuQuic": "5.135.243.149:8003",
      "tpuVote": "5.135.243.149:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.243.149:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.243.149:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.240:8002",
      "gossip": "5.135.193.219:8001",
      "pubkey": "3RX6JkQNnUj9o4mSdW1BD4pU5wQ15vxibeJwgFmFG62R",
      "pubsub": null,
      "tpuQuic": "5.135.193.219:8003",
      "tpuVote": "5.135.193.219:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.193.219:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.193.219:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.64:8002",
      "gossip": "51.89.15.48:8001",
      "pubkey": "FDCoTJJcTmVDN9MMZBqXP9o4EpfZD4qnq6a4vf8wyZR7",
      "pubsub": null,
      "tpuQuic": "51.89.15.48:8003",
      "tpuVote": "51.89.15.48:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.15.48:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.15.48:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "45.250.253.239:8000",
      "pubkey": "7e6TAnWMAAzfDZ7k6Bs3kWphcTtUfCfE1GJnApsqmmWo",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.131.139:8001",
      "gossip": "198.13.131.139:8000",
      "pubkey": "63NnhU6PfYWPbxjp4B5teqXnttWuekCNfbV2Dpydiba9",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.42:8002",
      "gossip": "51.83.137.118:8001",
      "pubkey": "6uxk7np4RbyrsLnGx1ceCDd54uLZy6J5oVLq3yoG1YQW",
      "pubsub": null,
      "tpuQuic": "51.83.137.118:8003",
      "tpuVote": "51.83.137.118:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.83.137.118:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.83.137.118:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.186:8001",
      "gossip": "64.130.47.186:8000",
      "pubkey": "HoJP1d7JoGM9cfke3ZhpxkvFVKEjzcrWPZ5AkjdefhwM",
      "pubsub": null,
      "tpuQuic": "64.130.47.186:8002",
      "tpuVote": "64.130.47.186:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.47.186:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.186:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.4:8888",
      "gossip": "198.13.140.164:8000",
      "pubkey": "9GyXwGJDtZhYMWYV8QiuQBkEHqQCCVLq48oWqv8tLCL3",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.191:8888",
      "gossip": "198.13.136.223:8000",
      "pubkey": "8ysunjkq3hkFtgXc75diSsUyaZ3C14bKKVP2tvufPR1B",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.24:8002",
      "gossip": "64.130.58.24:8001",
      "pubkey": "4wFwSvqEbiHwciQxze1UAoCqqRUaPC2dHRVZENiobPWU",
      "pubsub": null,
      "tpuQuic": "64.130.58.24:8003",
      "tpuVote": "64.130.58.24:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.58.24:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.24:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.251.3.182:8001",
      "gossip": "72.251.3.182:8000",
      "pubkey": "BK2Sa1ZwshnF3aowBm9dA2uJC6NVT6KvfRzyVMu4iehk",
      "pubsub": null,
      "tpuQuic": "72.251.3.182:8002",
      "tpuVote": "72.251.3.182:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "72.251.3.182:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.251.3.182:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.32.250:8002",
      "gossip": "64.31.32.250:8001",
      "pubkey": "4hW6SubNfDQnYDGGUPL23RavSVxK7LBQdVCgRQj6R8JQ",
      "pubsub": null,
      "tpuQuic": "64.31.32.250:8003",
      "tpuVote": "64.31.32.250:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.32.250:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.32.250:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.124:8002",
      "gossip": "64.130.40.124:8001",
      "pubkey": "H4TCC7HNnsSV7G4KFkcWrdkTd5434eEqiQxrVSHgt7AE",
      "pubsub": null,
      "tpuQuic": "64.130.40.124:8003",
      "tpuVote": "64.130.40.124:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.124:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.124:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "161.97.132.4:8001",
      "gossip": "161.97.132.4:8000",
      "pubkey": "J81ZLQnUMa7KEUtYgqrgMyjFw6VCXDvGpXknnCgvDku8",
      "pubsub": null,
      "tpuQuic": "161.97.132.4:8002",
      "tpuVote": "161.97.132.4:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "161.97.132.4:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "161.97.132.4:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.32:8888",
      "gossip": "63.254.162.80:8000",
      "pubkey": "FEJdDTo6gdncStvChrSdNhBZBdYHCFFQUPhbmv68CvYr",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.176.121:8000",
      "gossip": "84.32.176.121:8001",
      "pubkey": "B2mTciW46jmXehhZkbmiDNtJLyA2sGTi4qucLvfXSKZc",
      "pubsub": null,
      "tpuQuic": "84.32.176.121:8002",
      "tpuVote": "84.32.176.121:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "84.32.176.121:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.176.121:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "173.233.132.23:8002",
      "gossip": "173.233.132.23:8001",
      "pubkey": "3QDpywqKW33Mdu3i6ESsu9eBueHfaDaguhaQuChbGmuJ",
      "pubsub": null,
      "tpuQuic": "173.233.132.23:8003",
      "tpuVote": "173.233.132.23:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "173.233.132.23:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "173.233.132.23:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.241:8002",
      "gossip": "51.81.190.3:8001",
      "pubkey": "7BjNjNFHZsJ1sNjLqs1CbcUtDRVap1R4pHeCE2nhd4ju",
      "pubsub": null,
      "tpuQuic": "51.81.190.3:8003",
      "tpuVote": "51.81.190.3:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.190.3:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.190.3:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.203:8002",
      "gossip": "51.81.149.179:8001",
      "pubkey": "6QE1oStWDgKZCatRFAbVanZnMtue6JoJXt7kbBxWvWsc",
      "pubsub": null,
      "tpuQuic": "51.81.149.179:8003",
      "tpuVote": "51.81.149.179:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.149.179:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.149.179:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.124.111:8001",
      "gossip": "67.213.124.111:8000",
      "pubkey": "5WUZ3Z3Vi92P2iNrG45CQvy5kpwRwj6oZ7Ro9TJZtw8A",
      "pubsub": null,
      "tpuQuic": "67.213.124.111:8002",
      "tpuVote": "67.213.124.111:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.213.124.111:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.124.111:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.10:8002",
      "gossip": "5.39.106.28:8001",
      "pubkey": "BmCFAssU3dTkVfUqFwyvTVZMHd2F28fctPeV2ZgVaiPw",
      "pubsub": null,
      "tpuQuic": "5.39.106.28:8003",
      "tpuVote": "5.39.106.28:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.39.106.28:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.39.106.28:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.126:8002",
      "gossip": "141.98.219.126:8001",
      "pubkey": "5wT6eBSyLARd6YYncxniTTRr8KEG6jFd1mEHwoUu9Vfz",
      "pubsub": null,
      "tpuQuic": "141.98.219.126:8003",
      "tpuVote": "141.98.219.126:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.219.126:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.126:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "193.123.58.10:8001",
      "pubkey": "BS4kG15VCR1exzxxFrpVe2fcUhEQCM6FQApvgk4FA3GB",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.170:8000",
      "pubkey": "Fmm8FRTsqJC2Fiwe7m4D89RqTfJomcp4BM6EDVrDzXEZ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.109.82:8002",
      "gossip": "208.91.109.82:8001",
      "pubkey": "2XRUMe613xvjvk4TdRQVvJ2eu6sJEfr2vYhAmmzdsorH",
      "pubsub": null,
      "tpuQuic": "208.91.109.82:8003",
      "tpuVote": "208.91.109.82:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.109.82:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.82:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.83.154:8000",
      "pubkey": "8Tz7bZL2iXt2eu4LFjpq9x6hYAkhEyK4fPXbD9zHCaX8",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "31.204.159.131:8001",
      "gossip": "31.204.159.131:8000",
      "pubkey": "FuykHXVdyuEReNmWMxpcwvdc9xwcCcyC8XDfHKqAgRFF",
      "pubsub": null,
      "tpuQuic": "31.204.159.131:8002",
      "tpuVote": "31.204.159.131:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "31.204.159.131:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "31.204.159.131:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.95:8002",
      "gossip": "51.89.25.71:8001",
      "pubkey": "8P9nrxhNpEbs7Gc4WdTuJQHywpy3uo5KL99Fh1LQmG7r",
      "pubsub": null,
      "tpuQuic": "51.89.25.71:8003",
      "tpuVote": "51.89.25.71:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.71:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.71:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.236:8000",
      "pubkey": "FJA6CPJ3syfxsnmHVQgJnAa86U5cJcpdoFzydYebsyjY",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.45:8000",
      "pubkey": "6QpxwuC1Li5a5njsLLuQumRWi2Ca79E7McVsBQBHPzKx",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.96:8002",
      "gossip": "51.222.162.202:8001",
      "pubkey": "BL6sfmn9gW8WcRGR8Unar8EHPagJKK1i9bhfRJR3ssrn",
      "pubsub": null,
      "tpuQuic": "51.222.162.202:8003",
      "tpuVote": "51.222.162.202:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.202:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.202:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.89:8000",
      "pubkey": "D2Nb87tAV3Hwbr8ko5ME5ci5tn1426tXWpEJsnGsTeSr",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.189.46.50:8001",
      "gossip": "185.189.46.50:8000",
      "pubkey": "3PZSgErg4p6iFiVwjfpK27pC38rPUaGYLjryZ7RPAwUn",
      "pubsub": null,
      "tpuQuic": "185.189.46.50:8002",
      "tpuVote": "185.189.46.50:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.189.46.50:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.189.46.50:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.133:8002",
      "gossip": "162.19.167.137:8001",
      "pubkey": "ABMWFsK5ZBRnXrT2RD4sGsWSf3N36RuEjaemcuE5MchG",
      "pubsub": null,
      "tpuQuic": "162.19.167.137:8003",
      "tpuVote": "162.19.167.137:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "162.19.167.137:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.167.137:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.134:8888",
      "gossip": "198.13.141.38:8000",
      "pubkey": "FULExyAYs1CzSPN5p526MynpuVFsDEyXxyPhg5TUJRX8",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "45.250.253.72:8000",
      "pubkey": "C8PbNKJEcj8nRTkWsw2MJL9GmSXLMMM9p4yfBEQDHN5D",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.55.20:8002",
      "gossip": "64.130.55.20:8001",
      "pubkey": "F3UNFGCD9zemDd4qryCTvaMDgjJmkSwJdfU2taZYGcs8",
      "pubsub": null,
      "tpuQuic": "64.130.55.20:8003",
      "tpuVote": "64.130.55.20:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.55.20:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.55.20:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.244:8000",
      "pubkey": "rYYxbRLy3pAhCQmuKxi2mdtEwxMrXbwsUwy9QtSZnME",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.210:8888",
      "gossip": "64.130.46.210:8000",
      "pubkey": "AH7tE6Fqqkwtpci6RaX72PTZA4wCEWF8hY5Y3pQmFJjT",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.34.23:8000",
      "gossip": "64.130.34.23:8001",
      "pubkey": "8We5Dine4BFH1eAgocwkf9YmR56H7BKYM4cHd2PurjYm",
      "pubsub": null,
      "tpuQuic": "64.130.34.23:8002",
      "tpuVote": "64.130.34.23:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.34.23:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.34.23:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.203.83.117:8001",
      "gossip": "64.203.83.117:8000",
      "pubkey": "23BGhzUMNxfc1aYQ9Pjr5TUQDd4eyZ9qym1MqjkjA62h",
      "pubsub": null,
      "tpuQuic": "64.203.83.117:8002",
      "tpuVote": "64.203.83.117:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.203.83.117:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.203.83.117:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.118.180.37:8001",
      "gossip": "88.118.180.37:8000",
      "pubkey": "A31WuVEAoDTweygeHBqGRMRQgKH2jWFJKtUjY4uT4Rrg",
      "pubsub": null,
      "tpuQuic": "88.118.180.37:8003",
      "tpuVote": "88.118.180.37:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "88.118.180.37:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.118.180.37:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.223.131:8002",
      "gossip": "208.115.223.131:8001",
      "pubkey": "AJeayczecRyiC23mS2bG9zd1uRCf82w1LiqDrVZybnSu",
      "pubsub": null,
      "tpuQuic": "208.115.223.131:8003",
      "tpuVote": "208.115.223.131:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.223.131:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.223.131:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "204.130.133.233:8050",
      "pubkey": "7s2SrhCQ5wQAL6qy729h8v5o9kH85uvVZ9UtUzPBWbiW",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "3.1.10",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.18:8001",
      "gossip": "198.13.134.18:8000",
      "pubkey": "C3MwhRTGNtZ7ZdoAquERuJhro5aavCAUYAhYEkEd6Fxz",
      "pubsub": null,
      "tpuQuic": "198.13.134.18:8002",
      "tpuVote": "198.13.134.18:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.18:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.18:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.104:8002",
      "gossip": "208.91.110.104:8001",
      "pubkey": "CifKhzxH7H4aS65fv4ktJdSxG5c7GYjTGzWg6UcRP8VW",
      "pubsub": null,
      "tpuQuic": "208.91.110.104:8003",
      "tpuVote": "208.91.110.104:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.104:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.104:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.101.32.94:8001",
      "gossip": "185.101.32.94:8000",
      "pubkey": "G1rimRnvVV2n19om6Un2wukQbgh6ifSG7ABQru7jUHX1",
      "pubsub": null,
      "tpuQuic": "185.101.32.94:8002",
      "tpuVote": "185.101.32.94:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.101.32.94:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.101.32.94:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.111:8001",
      "gossip": "64.130.44.111:8000",
      "pubkey": "3gExmgUcgpWzfYSsj6pqSYqqEJ6iA31KC82om27jp6iq",
      "pubsub": null,
      "tpuQuic": "64.130.44.111:8002",
      "tpuVote": "64.130.44.111:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.44.111:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.111:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.67.150.94:8001",
      "gossip": "69.67.150.94:8000",
      "pubkey": "8ebMFmqPLcUAnH4TapixpxAYq3iVdJtaS1LCaWHJCHPm",
      "pubsub": null,
      "tpuQuic": "69.67.150.94:8002",
      "tpuVote": "69.67.150.94:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "69.67.150.94:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.67.150.94:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "173.231.15.82:8003",
      "gossip": "173.231.15.82:8001",
      "pubkey": "H1PrUnxhi1jpmXenL61Ej62nzuNE3JSYhecFcXopYhQ5",
      "pubsub": null,
      "tpuQuic": "173.231.15.82:9007",
      "tpuVote": "173.231.15.82:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "173.231.15.82:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "173.231.15.82:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.141.165:8000",
      "gossip": "104.204.141.165:8001",
      "pubkey": "MicobNSLg56V1PYTuKcbxnjfBa7Cqqq9pS6zvTF3cno",
      "pubsub": null,
      "tpuQuic": "104.204.141.165:8002",
      "tpuVote": "104.204.141.165:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.204.141.165:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.141.165:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.55.13:8001",
      "gossip": "64.130.55.13:8000",
      "pubkey": "FXP4v5fp3Z2HaXRPaxabAq91K6FHMzcvtHP7UCxXWiBn",
      "pubsub": null,
      "tpuQuic": "64.130.55.13:8002",
      "tpuVote": "64.130.55.13:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.55.13:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.55.13:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "67.213.123.116:8000",
      "pubkey": "9rWaiS97U7uD4ziT5RqPpS1NzLvhLbVb46LHfLXcs5ex",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.76:8002",
      "gossip": "51.222.146.138:8001",
      "pubkey": "FftiDUVcxszHXPzXyjMnLuvXbxBqyGmFE7buZWWHbNvd",
      "pubsub": null,
      "tpuQuic": "51.222.146.138:8003",
      "tpuVote": "51.222.146.138:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.146.138:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.146.138:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.46.222.136:8001",
      "gossip": "38.46.222.136:8000",
      "pubkey": "DuMbLwZZA3qFaiw5j4NTUjLRScvgP2LBFyseW1Qpmvjy",
      "pubsub": null,
      "tpuQuic": "38.46.222.136:8002",
      "tpuVote": "38.46.222.136:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "38.46.222.136:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.46.222.136:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.214:8002",
      "gossip": "5.135.172.138:8001",
      "pubkey": "6fTXZPanbePJBson6pN5uP49L6FsXZpFtDdacG8BP35u",
      "pubsub": null,
      "tpuQuic": "5.135.172.138:8003",
      "tpuVote": "5.135.172.138:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.172.138:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.172.138:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.198:8001",
      "gossip": "70.40.185.198:8000",
      "pubkey": "9F9kd95osxKccA2BYtUU6Qpfe8KBqRymskQkKY3EyKLm",
      "pubsub": null,
      "tpuQuic": "70.40.185.198:8002",
      "tpuVote": "70.40.185.198:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.198:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.198:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.210:8002",
      "gossip": "5.135.171.254:8001",
      "pubkey": "sKW58jhhwyXd16phZFfsUfwrNEGDfiERnofzWm6QfKg",
      "pubsub": null,
      "tpuQuic": "5.135.171.254:8003",
      "tpuVote": "5.135.171.254:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.171.254:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.171.254:8004"
    },
    {
      "rpc": "86.105.224.7:8899",
      "tpu": null,
      "tvu": "86.105.224.7:8001",
      "gossip": "86.105.224.7:8000",
      "pubkey": "4qib2LMvgCeP71diAtaDAM4PQGXFagayZ9KMKWiZdXGQ",
      "pubsub": "86.105.224.7:8900",
      "tpuQuic": "86.105.224.7:8002",
      "tpuVote": "86.105.224.7:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "86.105.224.7:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.105.224.7:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.35:8002",
      "gossip": "64.130.44.35:8001",
      "pubkey": "DqChPr1h78MKuDtvrSYJfuNPY38r9qqZ248XLw5j4Vac",
      "pubsub": null,
      "tpuQuic": "64.130.44.35:8003",
      "tpuVote": "64.130.44.35:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.35:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.35:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.130.52.58:8001",
      "gossip": "185.130.52.58:8000",
      "pubkey": "5Br48tyhrcjmPFoiQizJWgYAP2A5zupZ7zHbptrvP63u",
      "pubsub": null,
      "tpuQuic": "185.130.52.58:8002",
      "tpuVote": "185.130.52.58:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.130.52.58:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.130.52.58:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.4.190.26:8001",
      "gossip": "46.4.190.26:8000",
      "pubkey": "6C81abW9uzfNz8Xz6z46UT6Wok241aU8LTf29rRyjrhy",
      "pubsub": null,
      "tpuQuic": "46.4.190.26:8009",
      "tpuVote": "46.4.190.26:8005",
      "version": "3.1.12",
      "clientId": "JitoLabs",
      "featureSet": 4140108451,
      "serveRepair": "46.4.190.26:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "46.4.190.26:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.70:8002",
      "gossip": "213.32.63.24:8001",
      "pubkey": "7cLbat6bv4hves631yCcAXm1mej4gUMej7P8scsCnw6k",
      "pubsub": null,
      "tpuQuic": "213.32.63.24:8003",
      "tpuVote": "213.32.63.24:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "213.32.63.24:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "213.32.63.24:8004"
    },
    {
      "rpc": "51.162.162.231:8899",
      "tpu": null,
      "tvu": "51.162.162.231:8000",
      "gossip": "51.162.162.231:8901",
      "pubkey": "A22UyzeYUKuL9oiAQ5E9G81obRNJBKwmD1tfgVbqATS4",
      "pubsub": "51.162.162.231:8900",
      "tpuQuic": "51.162.162.231:8002",
      "tpuVote": "51.162.162.231:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "51.162.162.231:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.162.162.231:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.111.240.231:25000",
      "gossip": "23.111.240.231:8000",
      "pubkey": "74MzXStH8pLPZjbNxZKdtDGJehur2JgjZNeTPqSn37nE",
      "pubsub": null,
      "tpuQuic": "23.111.240.231:25001",
      "tpuVote": "23.111.240.231:25003",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "23.111.240.231:25008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.111.240.231:25002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.167:8888",
      "gossip": "45.250.253.45:8000",
      "pubkey": "ASoKWPdz33ouGYsAGbFJBTVwAgoJ4m4b3X7BhrphEoxG",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.142:8002",
      "gossip": "51.81.26.32:8001",
      "pubkey": "J8MTUQ5XXKqohQCghCxjSKzGnWzjzcKQpFCeXrnrYZrr",
      "pubsub": null,
      "tpuQuic": "51.81.26.32:8003",
      "tpuVote": "51.81.26.32:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.26.32:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.26.32:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.37:8002",
      "gossip": "51.77.35.89:8001",
      "pubkey": "GrqpuxYr9pwVsZ5rAL6tQTBK4xg3YotoPZvSyizCzBRt",
      "pubsub": null,
      "tpuQuic": "51.77.35.89:8003",
      "tpuVote": "51.77.35.89:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.77.35.89:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.77.35.89:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.106:8000",
      "pubkey": "41y6RSdh5KywW7qLNb6Ng31z2C2PT4SBe2kvomTYGaDv",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.17:8002",
      "gossip": "64.130.40.17:8001",
      "pubkey": "AczTBmzsQ42ku6vfTHz4d6iU7TGgb9bd94Mb2gkBaQMg",
      "pubsub": null,
      "tpuQuic": "64.130.40.17:8003",
      "tpuVote": "64.130.40.17:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.17:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.17:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.167:8003",
      "gossip": "64.130.41.167:8001",
      "pubkey": "BdSXjvXXHKRAmHNnywQpigmrCWFWuHVDGgywoVxT7sPm",
      "pubsub": null,
      "tpuQuic": "64.130.41.167:9007",
      "tpuVote": "64.130.41.167:9001",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 1429815730,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.167:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.67.149.81:8001",
      "gossip": "69.67.149.81:8000",
      "pubkey": "CMPSSdrTnRQBiBGTyFpdCc3VMNuLWYWaSkE8Zh5z6gbd",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "69.67.149.81:8004",
      "version": "4.1.0-rc.1",
      "clientId": "AgaveBam",
      "featureSet": 3345198602,
      "serveRepair": "69.67.149.81:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.167:8002",
      "gossip": "51.81.39.61:8001",
      "pubkey": "FjeT8dCU287TkVogaT3GJzi3g3dADvs28dhLFwa36qyp",
      "pubsub": null,
      "tpuQuic": "51.81.39.61:8003",
      "tpuVote": "51.81.39.61:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.39.61:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.39.61:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.178:8002",
      "gossip": "51.81.42.232:8001",
      "pubkey": "HS7JxB4XHxnuAnzdzuJbC1FPfXQnh1TbqSxi4ofVNGrc",
      "pubsub": null,
      "tpuQuic": "51.81.42.232:8003",
      "tpuVote": "51.81.42.232:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.42.232:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.42.232:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "138.2.174.124:8002",
      "gossip": "138.2.174.124:8001",
      "pubkey": "Coch77Rd74s82ABvYoXZywuch9k85ZRdX83HAWZU2Noa",
      "pubsub": null,
      "tpuQuic": "138.2.174.124:8010",
      "tpuVote": "138.2.174.124:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "138.2.174.124:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "138.2.174.124:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "72.46.86.15:8000",
      "pubkey": "6JETHEug51Yt5WMsqDbZkuuis3HWwdMneXu5bKyTaCuB",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.166:8001",
      "gossip": "64.130.43.166:8000",
      "pubkey": "6p8r5ZLMfJV2kDsbEbMpzPuXRqzS6dkk2CCqWGoAmHhV",
      "pubsub": null,
      "tpuQuic": "64.130.43.166:8002",
      "tpuVote": "64.130.43.166:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.43.166:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.166:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.222:8001",
      "gossip": "64.130.43.222:8000",
      "pubkey": "CygYQ1NQpvTSHHKcWYriiZEFbMg4PsiWYPYHxShpVHkW",
      "pubsub": null,
      "tpuQuic": "64.130.43.222:8002",
      "tpuVote": "64.130.43.222:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.222:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.222:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.201:8002",
      "gossip": "51.81.140.31:8001",
      "pubkey": "6DkYNjmsDrPQ4jz8maJurSmzWPWRqV9uRqg7RtfNDnRB",
      "pubsub": null,
      "tpuQuic": "51.81.140.31:8003",
      "tpuVote": "51.81.140.31:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.140.31:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.140.31:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.136:8000",
      "gossip": "208.91.110.136:8001",
      "pubkey": "65nfPXUyM5cfpMiGtC6ULeWfE3gjc7K7ZqZHb9eyQc4n",
      "pubsub": null,
      "tpuQuic": "208.91.110.136:8002",
      "tpuVote": "208.91.110.136:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.136:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.136:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.52.190:8002",
      "gossip": "64.31.52.190:8001",
      "pubkey": "FPBVTcUUgLAq7bNmS7mdT2trqEhB3hZuxV3eYuhJMP6k",
      "pubsub": null,
      "tpuQuic": "64.31.52.190:8003",
      "tpuVote": "64.31.52.190:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.52.190:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.52.190:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.175:8000",
      "gossip": "64.130.42.175:8001",
      "pubkey": "ELgKZCjL2pYMHgrWegTb8vKeGqMcnGCS7NFzK9J8P1SV",
      "pubsub": null,
      "tpuQuic": "64.130.42.175:8002",
      "tpuVote": "64.130.42.175:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.175:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.175:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.236:8996",
      "gossip": "64.130.63.236:8995",
      "pubkey": "DE8hjGgKMWJbdjYWfgHztfHdzihn4vjnVRCQeKBpr5WA",
      "pubsub": null,
      "tpuQuic": "64.130.63.236:8997",
      "tpuVote": "64.130.63.236:8999",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.63.236:9004",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.236:8998"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.145:8002",
      "gossip": "64.130.51.145:8001",
      "pubkey": "31GFo55aUwHgx8PWkTsiPspiQhMYQmeoEv9Cwy7aEuyd",
      "pubsub": null,
      "tpuQuic": "64.130.51.145:8003",
      "tpuVote": "64.130.51.145:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.145:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.145:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.204.106.123:8001",
      "gossip": "15.204.106.123:8000",
      "pubkey": "CFJxKnx9SiuL7pS9qqkc7rtyyqWM6J1NsZK1SDons1po",
      "pubsub": null,
      "tpuQuic": "15.204.106.123:8002",
      "tpuVote": "15.204.106.123:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "15.204.106.123:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.106.123:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.215:8001",
      "gossip": "64.130.40.215:8000",
      "pubkey": "EFS4kb5kytLY1PxbeJy7ifzpSALwS1CTMCDAXh4ABXSV",
      "pubsub": null,
      "tpuQuic": "64.130.40.215:8003",
      "tpuVote": "64.130.40.215:8005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.40.215:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.215:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.184.237.84:8000",
      "gossip": "185.184.237.84:8001",
      "pubkey": "BfoneLeP612eFJ6AvE9NPjk9sA5tHQYf7xsGpEhBhFtg",
      "pubsub": null,
      "tpuQuic": "185.184.237.84:8009",
      "tpuVote": "185.184.237.84:8005",
      "version": "3.0.12",
      "clientId": "JitoLabs",
      "featureSet": 3604001754,
      "serveRepair": "185.184.237.84:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.184.237.84:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "37.27.231.22:8001",
      "gossip": "37.27.231.22:8000",
      "pubkey": "9RzpUi7fm6rriSbbvrrVcV6wCjrRy9T9K8XR4oNGXmjL",
      "pubsub": null,
      "tpuQuic": "37.27.231.22:8002",
      "tpuVote": "37.27.231.22:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "37.27.231.22:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "37.27.231.22:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.186.206:8001",
      "gossip": "84.32.186.206:8000",
      "pubkey": "DYTJyMUYucoia2sRELgdegTrZS9mpyyiJ6DPn4MUMeva",
      "pubsub": null,
      "tpuQuic": "84.32.186.206:8002",
      "tpuVote": "84.32.186.206:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "84.32.186.206:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.186.206:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "199.247.2.59:8002",
      "gossip": "199.247.2.59:8001",
      "pubkey": "2qz4p87JzvRTSTN6fDd17HErUCyBeURe6nrXGJbLnjw3",
      "pubsub": null,
      "tpuQuic": "199.247.2.59:8003",
      "tpuVote": "199.247.2.59:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "199.247.2.59:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "199.247.2.59:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.182:8002",
      "gossip": "51.195.128.242:8001",
      "pubkey": "9KgV9NQmsHcAyZ9bmvsiCNaryNwpANYrWRBwHiYsyg2Y",
      "pubsub": null,
      "tpuQuic": "51.195.128.242:8003",
      "tpuVote": "51.195.128.242:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.195.128.242:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.195.128.242:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.35:8000",
      "gossip": "64.130.41.35:8001",
      "pubkey": "49kAsgjiDVN1LAKBcxJs3oSxMHb83U2m8xWd9N2AoCxf",
      "pubsub": null,
      "tpuQuic": "64.130.41.35:8002",
      "tpuVote": "64.130.41.35:8004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "64.130.41.35:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.35:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.148:8001",
      "gossip": "45.154.33.148:8000",
      "pubkey": "ABmACoMe4JT7jnuihFGSGXvC6wCtNyunFfnNeCF6aEpx",
      "pubsub": null,
      "tpuQuic": "45.154.33.148:8002",
      "tpuVote": "45.154.33.148:8004",
      "version": "4.1.0-alpha.0",
      "clientId": "JitoLabs",
      "featureSet": 2543003515,
      "serveRepair": "45.154.33.148:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.148:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.104:8002",
      "gossip": "51.222.162.254:8001",
      "pubkey": "87Lyej1UgJEbyyFKTmeZrFBv83WrC2oacZNgbFbXdja",
      "pubsub": null,
      "tpuQuic": "51.222.162.254:8003",
      "tpuVote": "51.222.162.254:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.254:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.254:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.138:8002",
      "gossip": "51.81.26.44:8001",
      "pubkey": "C5exXTcA9zNXKUynWM73NETs4jegcwfPpzG5js3R4N6M",
      "pubsub": null,
      "tpuQuic": "51.81.26.44:8003",
      "tpuVote": "51.81.26.44:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.26.44:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.26.44:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.59:8002",
      "gossip": "198.13.130.59:8001",
      "pubkey": "ERwrPpSJbHP1vjxka8xeANojV5Cd34qhXEH3qYmBt3EA",
      "pubsub": null,
      "tpuQuic": "198.13.130.59:8003",
      "tpuVote": "198.13.130.59:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.59:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.59:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "165.1.73.223:8002",
      "gossip": "165.1.73.223:8001",
      "pubkey": "2WYBg9FkrucQhyccLBdPJ1EUJ6vH1CNRGFoZdKFZNTiw",
      "pubsub": null,
      "tpuQuic": "165.1.73.223:8010",
      "tpuVote": "165.1.73.223:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "165.1.73.223:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "165.1.73.223:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.156:8001",
      "gossip": "202.8.11.156:8000",
      "pubkey": "DgTrKyibwWYTSn8UkYr1T2cgL5gxEBSMU9XwxoSshoQH",
      "pubsub": null,
      "tpuQuic": "202.8.11.156:8002",
      "tpuVote": "202.8.11.156:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.156:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.156:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.102:8002",
      "gossip": "141.98.219.102:8001",
      "pubkey": "5iLbWUvQVVkBsY46uZA7fiDqEjJaujMArmBxTVoNfoRG",
      "pubsub": null,
      "tpuQuic": "141.98.219.102:8003",
      "tpuVote": "141.98.219.102:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.219.102:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.102:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.91:8000",
      "pubkey": "CKfS36x51qzDC6zQGSs4UKeFX6dceqW38uyBoXsqQ8fe",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.33:8888",
      "gossip": "198.13.136.193:8000",
      "pubkey": "AAVKikS4o5smmb8w6brD9gDvqP9q9StDeqakCQH3g4E8",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.223:8002",
      "gossip": "51.81.149.101:8001",
      "pubkey": "2CGXZhUHUWVg4PE9hygWbygfVw64c7Nn71kS1DFVqYsu",
      "pubsub": null,
      "tpuQuic": "51.81.149.101:8003",
      "tpuVote": "51.81.149.101:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.149.101:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.149.101:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.94:8000",
      "pubkey": "46NgNSehmHzG6iYhZQbiq9bZwCPhgg6mfUzmDKdqi51a",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "64.130.63.122:8899",
      "tpu": null,
      "tvu": "64.130.63.122:8001",
      "gossip": "64.130.63.122:8000",
      "pubkey": "E7FKd2b5gqaG7M1Ywga4QzVwbKpxgrq5CAYfpuwSA3n4",
      "pubsub": "64.130.63.122:8900",
      "tpuQuic": "64.130.63.122:8002",
      "tpuVote": "64.130.63.122:8004",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "64.130.63.122:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.122:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.111.195:8002",
      "gossip": "208.91.111.195:8001",
      "pubkey": "8KsLxSS7CEg6ZXysNEH2VKf3xauZyuV7ZTCPuaPYtWrc",
      "pubsub": null,
      "tpuQuic": "208.91.111.195:8003",
      "tpuVote": "208.91.111.195:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.111.195:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.111.195:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.109.58:8002",
      "gossip": "208.91.109.58:8001",
      "pubkey": "HKsoL4tB81cduuFiEZGxgKzUxv1tkJ8jT9h4zLn6vUi9",
      "pubsub": null,
      "tpuQuic": "208.91.109.58:8003",
      "tpuVote": "208.91.109.58:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.109.58:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.58:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.213:8002",
      "gossip": "64.130.49.213:8001",
      "pubkey": "GynsL13RHzDgXhwPu8NP3nfBLuS9wqdaCAxPnrsGPg3D",
      "pubsub": null,
      "tpuQuic": "64.130.49.213:8003",
      "tpuVote": "64.130.49.213:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.49.213:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.213:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.217:8002",
      "gossip": "5.135.174.17:8001",
      "pubkey": "RqMWyXNUUYboa5VQ8xo8JSgBnRcr9PWSFhn5mNpTSWG",
      "pubsub": null,
      "tpuQuic": "5.135.174.17:8003",
      "tpuVote": "5.135.174.17:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.174.17:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.174.17:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.212:8000",
      "gossip": "198.13.130.212:8001",
      "pubkey": "EAJ5PJi3Tp1EmwYvCoFFprffcGFX2eof6D1mpNu1pzuQ",
      "pubsub": null,
      "tpuQuic": "198.13.130.212:8002",
      "tpuVote": "198.13.130.212:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.212:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.212:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.146:8888",
      "gossip": "198.13.141.50:8000",
      "pubkey": "7jm7WNWq1aRW2S3y3u6Vb3ENX5kJUdDYFvfaKVbofzzp",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.53.235:8002",
      "gossip": "64.130.53.235:8001",
      "pubkey": "8EbaQjsvqPLY42ovbcZLGroj2saAuuPN5TNodaJMa9ai",
      "pubsub": null,
      "tpuQuic": "64.130.53.235:8003",
      "tpuVote": "64.130.53.235:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.53.235:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.235:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.42.231.75:50001",
      "gossip": "89.42.231.75:50000",
      "pubkey": "HkLZ1zWZ47w23Mo3Tu6FBQu3E3tCAVcW8oTdt87TursF",
      "pubsub": null,
      "tpuQuic": "89.42.231.75:50002",
      "tpuVote": "89.42.231.75:50004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "89.42.231.75:50009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.42.231.75:50003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.9:8002",
      "gossip": "51.68.133.205:8001",
      "pubkey": "3qmL6zeRuei6m7LfPrYUvcMfMdLF1X57xE4f3mo3RMHS",
      "pubsub": null,
      "tpuQuic": "51.68.133.205:8003",
      "tpuVote": "51.68.133.205:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.133.205:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.133.205:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.158:8888",
      "gossip": "198.13.141.62:8000",
      "pubkey": "5c758URXdDwxRPWrm68WiRytypPCU5ARKFnpgqcTCDUm",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "188.241.53.18:8001",
      "gossip": "45.250.25.158:8000",
      "pubkey": "7SrP3ng8F7ti4NyLanMzHgzq9wZWETzDqUxX19k96ego",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "145.239.149.108:8001",
      "gossip": "145.239.149.108:8000",
      "pubkey": "GTdJycoWSb2qfQKHsywFxh5K9vQDzruiRuKBZ5ZGE5rY",
      "pubsub": null,
      "tpuQuic": "145.239.149.108:8002",
      "tpuVote": "145.239.149.108:8004",
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": "145.239.149.108:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "145.239.149.108:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.123:8002",
      "gossip": "135.125.166.239:8001",
      "pubkey": "F6pYnGbwiphouvn1PXFJmWcSyVgqq5R19uZSoxHoox2N",
      "pubsub": null,
      "tpuQuic": "135.125.166.239:8003",
      "tpuVote": "135.125.166.239:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "135.125.166.239:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "135.125.166.239:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.118.112:8001",
      "gossip": "185.191.118.112:9001",
      "pubkey": "fraWvsqdkDDXZ4YxUjM7XRi4fTGxN6JBXYy9dKLWi4r",
      "pubsub": null,
      "tpuQuic": "185.191.118.112:9008",
      "tpuVote": "185.191.118.112:9002",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "185.191.118.112:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.118.112:9008"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.22:8888",
      "gossip": "63.254.161.182:8000",
      "pubkey": "4BrN6Vm78wEBB22ks2dd3MMYA2ZheDzs1kYChMeYGpjk",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.175:8000",
      "gossip": "202.8.11.175:8001",
      "pubkey": "DntrBbRYnN77Fb3QNqKTr5sr5rordMZH1VzpxfJjwyVw",
      "pubsub": null,
      "tpuQuic": "202.8.11.175:8002",
      "tpuVote": "202.8.11.175:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "202.8.11.175:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.175:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.99.167:8002",
      "gossip": "109.94.99.167:8001",
      "pubkey": "scs1NCSTafrUX6RBx113B9YDCepo1QdEzU8WwEkf25i",
      "pubsub": null,
      "tpuQuic": "109.94.99.167:8003",
      "tpuVote": "109.94.99.167:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.94.99.167:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.99.167:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "189.1.171.3:8021",
      "gossip": "189.1.171.3:8001",
      "pubkey": "k9JLCK9iV7MKp6x5fHwbtsSfGeJxNQAFQpLdzJB9AsJ",
      "pubsub": null,
      "tpuQuic": "189.1.171.3:8022",
      "tpuVote": "189.1.171.3:8024",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "189.1.171.3:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "189.1.171.3:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.85:8001",
      "gossip": "45.152.160.85:8000",
      "pubkey": "7RHZsRcQfWp9Xu1HkVm1nnrmg57f9jUnZrU2K5ieawoA",
      "pubsub": null,
      "tpuQuic": "45.152.160.85:8002",
      "tpuVote": "45.152.160.85:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.152.160.85:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.85:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "142.215.211.35:8001",
      "gossip": "142.215.211.35:8000",
      "pubkey": "EpvHPywg4H9fYM7zgiCen4yEyVwgQkp2jjwUUonc1GRb",
      "pubsub": null,
      "tpuQuic": "142.215.211.35:8002",
      "tpuVote": "142.215.211.35:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "142.215.211.35:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "142.215.211.35:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.245:8002",
      "gossip": "5.135.196.156:8001",
      "pubkey": "CKi5rykR59zgMq7oET9DZ8YFCBFn3zfcKJUVtXn93utv",
      "pubsub": null,
      "tpuQuic": "5.135.196.156:8003",
      "tpuVote": "5.135.196.156:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.196.156:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.196.156:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.49.41:8001",
      "gossip": "84.32.49.41:8000",
      "pubkey": "2pFx8zRLgKdRhFnFKFkpBA6u6QHP5hGxxecHQjkTqVjr",
      "pubsub": null,
      "tpuQuic": "84.32.49.41:8002",
      "tpuVote": "84.32.49.41:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "84.32.49.41:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.49.41:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.14.11:8002",
      "gossip": "64.31.14.11:8001",
      "pubkey": "EhxuodLhwucB2yYRJbnNjAQfmMJbVjxxZu2RSsiA876E",
      "pubsub": null,
      "tpuQuic": "64.31.14.11:8003",
      "tpuVote": "64.31.14.11:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.14.11:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.14.11:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.224:8002",
      "gossip": "5.135.174.159:8001",
      "pubkey": "8nthX5KmiGSySj1ZdtdZ2Tpm8VnfwJZU7tNoReLQt9Vd",
      "pubsub": null,
      "tpuQuic": "5.135.174.159:8003",
      "tpuVote": "5.135.174.159:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.174.159:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.174.159:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.222:8002",
      "gossip": "64.130.59.222:8001",
      "pubkey": "JAnHiDWfnuPZwUM9wmDm2Tme7FKdNRVMCyn7bVrxiZe5",
      "pubsub": null,
      "tpuQuic": "64.130.59.222:8003",
      "tpuVote": "64.130.59.222:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.222:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.222:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.138.196:8001",
      "gossip": "198.13.138.196:8000",
      "pubkey": "87PmdAav5C42vTi24rNyhebQEEC89BuFEFDRsXKtSF3z",
      "pubsub": null,
      "tpuQuic": "198.13.138.196:8002",
      "tpuVote": "198.13.138.196:8004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "198.13.138.196:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.138.196:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.130.59.77:8001",
      "pubkey": "3a3WbgMg9vLswnibQMBUwojn3u56ETywCqRKaUEvhSLG",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.190:8002",
      "gossip": "15.204.20.250:8001",
      "pubkey": "7gLUBMqQnWcFwDAbM6M1UnJShqGm3bJvjQzPuXRAzjYJ",
      "pubsub": null,
      "tpuQuic": "15.204.20.250:8003",
      "tpuVote": "15.204.20.250:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "15.204.20.250:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.20.250:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.90:8000",
      "pubkey": "6gnCRJ44Tymw8TAYkPwC9D45HZTm6qWffN9B2VTC2Qut",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "67.213.123.117:8000",
      "pubkey": "EMraBAP5EDscr6Sr4SHT9bciEmqAjQppxVVCHHSyz2Bt",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.247:8001",
      "gossip": "198.13.134.247:8000",
      "pubkey": "HLJTsSZHHSqZ6WSAbkT2gKhzWCESAmZuEzPoEHsfkfNF",
      "pubsub": null,
      "tpuQuic": "198.13.134.247:8002",
      "tpuVote": "198.13.134.247:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.247:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.247:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.62.219:8002",
      "gossip": "64.130.62.219:8001",
      "pubkey": "6gSrG8hRNJmuAKQqasohyi7qbbErVcazUjhZRxhvK7g6",
      "pubsub": null,
      "tpuQuic": "64.130.62.219:8003",
      "tpuVote": "64.130.62.219:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.62.219:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.62.219:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.58:8002",
      "gossip": "54.38.48.190:8001",
      "pubkey": "5SvxnefLBQPH1HfDcE2C9BFt15bSwPLUhpgGqYGT4tch",
      "pubsub": null,
      "tpuQuic": "54.38.48.190:8003",
      "tpuVote": "54.38.48.190:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.38.48.190:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.38.48.190:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.215:8002",
      "gossip": "51.81.232.195:8001",
      "pubkey": "4StTkSaKRiP1VZLJiSxAP8enpqnaDtaaismmGVDN8Ef9",
      "pubsub": null,
      "tpuQuic": "51.81.232.195:8003",
      "tpuVote": "51.81.232.195:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.232.195:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.232.195:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.137.45.186:8001",
      "gossip": "64.137.45.186:8000",
      "pubkey": "4LZJtRnnRLfZMcVueRDjbva5viaJUjVTT2M3u4semihG",
      "pubsub": null,
      "tpuQuic": "64.137.45.186:8002",
      "tpuVote": "64.137.45.186:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.137.45.186:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.137.45.186:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "160.202.128.97:8991",
      "gossip": "160.202.128.97:8000",
      "pubkey": "FpFT6zqP1hiYjvweZgdUskvk3ZEm8XipYRnQptmBJz8a",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.1.13",
      "clientId": "Agave",
      "featureSet": 1725507508,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.68:8002",
      "gossip": "64.130.63.68:8001",
      "pubkey": "9xqYNpss1uVL1pxDQSxg3HZyN12a25S8ijGrXdFifWYD",
      "pubsub": null,
      "tpuQuic": "64.130.63.68:8003",
      "tpuVote": "64.130.63.68:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.68:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.68:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.57:8888",
      "gossip": "198.13.136.234:8000",
      "pubkey": "98isQUAZUrszmUna4EccKpVwcPGHPGxY61DB3XdLtruw",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "209.249.216.181:8001",
      "gossip": "209.249.216.181:8000",
      "pubkey": "B46deziQmjC3VuPikrdZsizfvptPEkxWmByk2Fqdnak9",
      "pubsub": null,
      "tpuQuic": "209.249.216.181:8002",
      "tpuVote": "209.249.216.181:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "209.249.216.181:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "209.249.216.181:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.187:8002",
      "gossip": "64.130.51.187:8001",
      "pubkey": "2NJKzRK2d7Ve7Qe6eA86g9WMANr5C5verguSisZdaTsz",
      "pubsub": null,
      "tpuQuic": "64.130.51.187:8003",
      "tpuVote": "64.130.51.187:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.187:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.187:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "67.209.52.202:8000",
      "pubkey": "GG1BAc4QVCYfhicB5BQBjJWZmkH6DamAwk71WVoyg2yA",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.211:10001",
      "gossip": "67.213.121.211:10000",
      "pubkey": "6K5vR1PnEy69fts7UqZQdvgWAwe9U7Y68qneLZF66Fmr",
      "pubsub": null,
      "tpuQuic": "67.213.121.211:10002",
      "tpuVote": "67.213.121.211:10004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.121.211:10009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.211:10003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.186.138:8002",
      "gossip": "84.32.186.138:8001",
      "pubkey": "5V9ELxu31S7rDUF4rSDU7yA59miLRn9ZFsEQA3fTtcda",
      "pubsub": null,
      "tpuQuic": "84.32.186.138:8003",
      "tpuVote": "84.32.186.138:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "84.32.186.138:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.186.138:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.112:8002",
      "gossip": "51.195.124.108:8001",
      "pubkey": "7tjyi6NSDabqZU7GwLwzdkh5JhbxmnTNu3CCSB3Yng3R",
      "pubsub": null,
      "tpuQuic": "51.195.124.108:8003",
      "tpuVote": "51.195.124.108:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.195.124.108:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.195.124.108:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.56:8002",
      "gossip": "64.130.44.56:8001",
      "pubkey": "HUwbNuTyvzFLXMh1ftepD9w84qmw6PXj7h24ivaFYUwM",
      "pubsub": null,
      "tpuQuic": "64.130.44.56:8003",
      "tpuVote": "64.130.44.56:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.56:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.56:8004"
    },
    {
      "rpc": "5.9.81.152:27001",
      "tpu": null,
      "tvu": "5.9.81.152:27200",
      "gossip": "5.9.81.152:27000",
      "pubkey": "3wRVHxzKVkd8d2T122UJ9PRNJPVRBMUXYEtgrSiAjvL7",
      "pubsub": null,
      "tpuQuic": "5.9.81.152:27106",
      "tpuVote": null,
      "version": "3.1.5",
      "clientId": "Agave",
      "featureSet": 2086771155,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.115:8002",
      "gossip": "208.115.227.115:8001",
      "pubkey": "4XJae8kDnZTGkZqbkfZ81nPyeokPG5wssGANG4Krhxyj",
      "pubsub": null,
      "tpuQuic": "208.115.227.115:8003",
      "tpuVote": "208.115.227.115:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.115:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.115:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.148:8000",
      "pubkey": "6EtXbwwyjFEWsqzjwW7F7fS4LRk9aSiRiD1G5H9FwjNZ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "94.31.53.45:8031",
      "gossip": "94.31.53.45:8030",
      "pubkey": "ATVhQQS5ZFLyNQoRpkP9y4SHrws5MzV9NNBckymUrejX",
      "pubsub": null,
      "tpuQuic": "94.31.53.45:8032",
      "tpuVote": "94.31.53.45:8034",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "94.31.53.45:8039",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "94.31.53.45:8033"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.118.215:9100",
      "gossip": "185.191.118.215:8001",
      "pubkey": "5b2nkGhcGJcJEpMvUKEg9QEMHXEwvkB3oyQQ4n52vj72",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": "185.191.118.215:9103",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "185.191.118.215:9108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.142.175:8002",
      "gossip": "74.118.142.175:8001",
      "pubkey": "vq5Yxoa3NZqjcLiT6JNi9NS1ND3iQ5WEMvKimHZ4naq",
      "pubsub": null,
      "tpuQuic": "74.118.142.175:8003",
      "tpuVote": "74.118.142.175:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.142.175:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.142.175:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.204:8888",
      "gossip": "63.254.169.28:8000",
      "pubkey": "94DqsVLr8gkh1Jh3YF8i9fd2QdQFKpU3FKEKCxr2o1Bn",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "152.70.56.126:8002",
      "gossip": "152.70.56.126:8001",
      "pubkey": "DSiZCrKP2oFpg9np9YazDAM89FWn1yQ5WnpqG85u38Uy",
      "pubsub": null,
      "tpuQuic": "152.70.56.126:8010",
      "tpuVote": "152.70.56.126:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "152.70.56.126:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "152.70.56.126:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.220:8002",
      "gossip": "5.135.174.156:8001",
      "pubkey": "36MEjd5PbPYExCCZdHT5jTgs3ZtCTHVrC1EbMAwAj7jU",
      "pubsub": null,
      "tpuQuic": "5.135.174.156:8003",
      "tpuVote": "5.135.174.156:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.174.156:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.174.156:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.57:8002",
      "gossip": "54.38.48.189:8001",
      "pubkey": "CwsDNkX8BWRKhWZC3kJDuVG2pPoCNRZg1CiGfAqxs69g",
      "pubsub": null,
      "tpuQuic": "54.38.48.189:8003",
      "tpuVote": "54.38.48.189:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.38.48.189:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.38.48.189:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.48:8000",
      "pubkey": "3Gmr12SA3dZE1jubykx6K7V34v6KChUcVAnQksfK5gdr",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.206:8002",
      "gossip": "51.81.195.17:8001",
      "pubkey": "CgkdRuKfLyMEBaSpDSwesjsrZFtnvnbCyd6dvs2r5WdE",
      "pubsub": null,
      "tpuQuic": "51.81.195.17:8003",
      "tpuVote": "51.81.195.17:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.195.17:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.195.17:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.170:8000",
      "gossip": "70.40.185.170:8001",
      "pubkey": "Bp7fDhhMz8ibWHv7fEHDJ46v9P4S3osPtKncACoidJF1",
      "pubsub": null,
      "tpuQuic": "70.40.185.170:8009",
      "tpuVote": "70.40.185.170:8005",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "70.40.185.170:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.170:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.135:8002",
      "gossip": "64.130.37.135:8001",
      "pubkey": "4YBA4EmVGtNrY2QqWNcznTbZgtx6V9bbBbEV3vRoxxJ6",
      "pubsub": null,
      "tpuQuic": "64.130.37.135:8003",
      "tpuVote": "64.130.37.135:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.135:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.135:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "31.170.22.161:8000",
      "gossip": "31.170.22.161:8001",
      "pubkey": "9acgpa8vKCdFYM2yZfSh4WkFzuhZWU411ZfrVZaLuiZp",
      "pubsub": null,
      "tpuQuic": "31.170.22.161:8002",
      "tpuVote": "31.170.22.161:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "31.170.22.161:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "31.170.22.161:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.167:8001",
      "gossip": "64.130.61.167:8000",
      "pubkey": "dubGo6zxEA5u3vgx7pKV27bL2n2nLzmfSP4BJS1pTSf",
      "pubsub": null,
      "tpuQuic": "64.130.61.167:8002",
      "tpuVote": "64.130.61.167:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.61.167:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.167:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "54.168.66.77:8000",
      "pubkey": "DJz5xxMCMkX3zP7xd66fz7kfDFuqZ91sW4wzTgZ585M4",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.65:8002",
      "gossip": "64.31.54.65:8001",
      "pubkey": "B9wTsPzBP6U3zHix1UguRAReNxyqCQGE5Fc3pBg3rAPc",
      "pubsub": null,
      "tpuQuic": "64.31.54.65:8003",
      "tpuVote": "64.31.54.65:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.65:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.65:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.12:8002",
      "gossip": "51.68.135.60:8001",
      "pubkey": "6a4C7w6Uivq3csv5hxJEFMj2i1XoQq9p9gbFfFkXMRNZ",
      "pubsub": null,
      "tpuQuic": "51.68.135.60:8003",
      "tpuVote": "51.68.135.60:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.135.60:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.135.60:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.192.51:8001",
      "gossip": "88.216.192.51:8000",
      "pubkey": "BYq2N15f6qekjTns7ZkLxiDYWQRux6AixUHUgxkkJPRQ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.56.116:8001",
      "gossip": "64.130.56.116:8000",
      "pubkey": "3BsGNGqAnFdLr2Q324z6HTd6fAKWRkc3jLouUpLaT52X",
      "pubsub": null,
      "tpuQuic": "64.130.56.116:8002",
      "tpuVote": "64.130.56.116:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.56.116:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.56.116:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.243:8000",
      "pubkey": "3b3bXjdnudpowswKCfbvgAAuSXp6vXbSS9h1p9iL14hB",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.249:8002",
      "gossip": "51.81.207.3:8001",
      "pubkey": "GuR7kfpYQBjLSDjtfd6V3bUyjf6zc8zMXGc5zwbFozQF",
      "pubsub": null,
      "tpuQuic": "51.81.207.3:8003",
      "tpuVote": "51.81.207.3:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.207.3:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.207.3:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.86:8002",
      "gossip": "51.89.25.30:8001",
      "pubkey": "74abyE5dtFSHJCMT8N2pG4VK3p2uMBi8TMQqyrxnN4G7",
      "pubsub": null,
      "tpuQuic": "51.89.25.30:8003",
      "tpuVote": "51.89.25.30:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.30:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.30:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.188:8001",
      "gossip": "70.40.185.188:8000",
      "pubkey": "GQ7JFWsmvtNANQwUzNQt2WUjAoD5SmH2NNa7YpdThrh5",
      "pubsub": null,
      "tpuQuic": "70.40.185.188:8002",
      "tpuVote": "70.40.185.188:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.188:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.188:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.238:8001",
      "gossip": "64.130.58.238:8000",
      "pubkey": "A43J56xdVTFzapbwq7gzM3QSyZb3CmCaJ7B13fN1QJRi",
      "pubsub": null,
      "tpuQuic": "64.130.58.238:8002",
      "tpuVote": "64.130.58.238:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.58.238:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.238:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.62.220:8002",
      "gossip": "64.130.62.220:8001",
      "pubkey": "BkpnaXkBSKc2ryG2EyoQnYqZ9WdaUS2nVXF36XaTVxCs",
      "pubsub": null,
      "tpuQuic": "64.130.62.220:8003",
      "tpuVote": "64.130.62.220:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.62.220:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.62.220:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.73.56.214:8001",
      "gossip": "198.73.56.214:8000",
      "pubkey": "7i4EYKjrEPL7Gr5cdvW3e6WyG1o1oky4fAixhvQVSiLG",
      "pubsub": null,
      "tpuQuic": "198.73.56.214:8009",
      "tpuVote": "198.73.56.214:8003",
      "version": "0.906.0-rc.40000",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 767961353,
      "serveRepair": "198.73.56.214:8018",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.73.56.214:8009"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.200:8001",
      "gossip": "64.130.63.200:8000",
      "pubkey": "BmEhEjdsyGUswW1TJwjfbWtYBZqsQEoybJJhqjoGM3KK",
      "pubsub": null,
      "tpuQuic": "64.130.63.200:8002",
      "tpuVote": "64.130.63.200:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.63.200:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.200:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.250.142.234:8000",
      "gossip": "104.250.142.234:8001",
      "pubkey": "7VaNFaPo6TdHTM6BDXNE2PwXbW2K3cigbTsuVq3r5PLY",
      "pubsub": null,
      "tpuQuic": "104.250.142.234:8002",
      "tpuVote": "104.250.142.234:8004",
      "version": "4.0.0-beta.7",
      "clientId": "Agave",
      "featureSet": 1253319928,
      "serveRepair": "104.250.142.234:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.250.142.234:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "80.232.245.184:8000",
      "gossip": "80.232.245.184:8001",
      "pubkey": "7ZPbUin2GHFgf2ZBdRg5D6BL3czubkghvyeyuQ6T24S7",
      "pubsub": null,
      "tpuQuic": "80.232.245.184:8002",
      "tpuVote": "80.232.245.184:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "80.232.245.184:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "80.232.245.184:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.141.139:8000",
      "gossip": "104.204.141.139:8001",
      "pubkey": "9nwJGQvdYnsScPaFvEWjjvDUnk5C631G9YQ5Eh5ZfmDd",
      "pubsub": null,
      "tpuQuic": "104.204.141.139:8002",
      "tpuVote": "104.204.141.139:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.204.141.139:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.141.139:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.5:8888",
      "gossip": "198.13.140.165:8000",
      "pubkey": "27tjEH3SPPXY97idMMPDYrqg262ktHifGhgBGzTrWuWe",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.212:8002",
      "gossip": "5.135.172.136:8001",
      "pubkey": "HbvLyQXu44FiN5QjMsCbXQiYCw4Brxz6LHvnXPJHXyyA",
      "pubsub": null,
      "tpuQuic": "5.135.172.136:8003",
      "tpuVote": "5.135.172.136:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.172.136:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.172.136:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.11:8002",
      "gossip": "51.68.133.207:8001",
      "pubkey": "55ySPyiaEvCS3KLaNfViBpeNUrQNoYLGEmewmRPNWcW1",
      "pubsub": null,
      "tpuQuic": "51.68.133.207:8003",
      "tpuVote": "51.68.133.207:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.133.207:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.133.207:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.15:8002",
      "gossip": "5.135.116.69:8001",
      "pubkey": "Bvsf3ByAt9cFWY4QkkmefBV9SFyMLB19uHsqYVZqGpux",
      "pubsub": null,
      "tpuQuic": "5.135.116.69:8003",
      "tpuVote": "5.135.116.69:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.116.69:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.116.69:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.197.30:8000",
      "gossip": "208.115.197.30:8001",
      "pubkey": "6R1qDptLiJsrZL8Sx6SUynE7cAZp9JgqPZTWCrfufDyG",
      "pubsub": null,
      "tpuQuic": "208.115.197.30:8002",
      "tpuVote": "208.115.197.30:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "208.115.197.30:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.197.30:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.41:8888",
      "gossip": "63.254.162.89:8000",
      "pubkey": "BAGQqEe8qRfmBD99uJPXYPgwoR7FYjWwZov4KNhJyecc",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.26:8002",
      "gossip": "64.130.51.26:8001",
      "pubkey": "2KnFusskX86GKHpAtHeNm8eMZMbCtFLjcVaftS9J5nhW",
      "pubsub": null,
      "tpuQuic": "64.130.51.26:8003",
      "tpuVote": "64.130.51.26:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.26:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.26:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "82.22.51.5:8001",
      "gossip": "145.239.149.108:8000",
      "pubkey": "Whszu7Af2wphWE3N9egQgxhHfFu4VTsQhV5NoHtjU2k",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.81:8000",
      "pubkey": "3o8BsUArqEiS8za5N4JGqtUwdTZea8NnNFj4ctmNNMM4",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "45.250.253.81:8000",
      "pubkey": "GGi9689LK52xmWx5anWoY4625b7deaRwMNqaYCE8kbuS",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.162.122.202:8002",
      "gossip": "69.162.122.202:8001",
      "pubkey": "3dNi6QWMZZRAbGd6Hq4fnrcFDz3TvGRBruEFwqD7GUpH",
      "pubsub": null,
      "tpuQuic": "69.162.122.202:8003",
      "tpuVote": "69.162.122.202:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "69.162.122.202:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.162.122.202:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.32:8000",
      "pubkey": "3uViZtx42K1SxDpWg2PFbaDKUjrsMqfjPVdwku4Ht9nw",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.186.98:8001",
      "gossip": "84.32.186.98:8000",
      "pubkey": "EHXvBCCWb8PzGnTjcbyYDhreoXcqdg1f6bdZxjQCVoSV",
      "pubsub": null,
      "tpuQuic": "84.32.186.98:8002",
      "tpuVote": "84.32.186.98:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "84.32.186.98:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.186.98:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.195:8001",
      "gossip": "64.130.61.195:8000",
      "pubkey": "3nh5Byirf5xQQCoCmsosBTTuvMX5R6Y32vrjAgVGWwHN",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.72:8002",
      "gossip": "51.89.18.32:8001",
      "pubkey": "Yrht2rfGy4WUDSvVn9fSKG5hb76LCE4xGcfDZSAWmy3",
      "pubsub": null,
      "tpuQuic": "51.89.18.32:8003",
      "tpuVote": "51.89.18.32:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.18.32:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.18.32:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.102:8002",
      "gossip": "51.222.162.252:8001",
      "pubkey": "75mvpY5iLWEv5pPovYPHjMoSnAvNnLXu3wt9aRaAKzDt",
      "pubsub": null,
      "tpuQuic": "51.222.162.252:8003",
      "tpuVote": "51.222.162.252:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.252:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.252:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.205:8002",
      "gossip": "64.130.32.205:8001",
      "pubkey": "3Yd3C3AkU2SPZcts7Sm5V9CtpPAiUCV3wMXs2Hf5mfEU",
      "pubsub": null,
      "tpuQuic": "64.130.32.205:8003",
      "tpuVote": "64.130.32.205:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.205:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.205:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.46:8002",
      "gossip": "51.83.231.158:8001",
      "pubkey": "E2JqcWpesTqnELgWnPazaAYxhNBH8c5hsfYG3gAX37MG",
      "pubsub": null,
      "tpuQuic": "51.83.231.158:8003",
      "tpuVote": "51.83.231.158:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.83.231.158:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.83.231.158:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.123:8002",
      "gossip": "64.130.44.123:8001",
      "pubkey": "2nQ7iYczrdhrq9DpkLyWLLecXhJrCHnxXjhAqP7H38X8",
      "pubsub": null,
      "tpuQuic": "64.130.44.123:8003",
      "tpuVote": "64.130.44.123:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.123:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.123:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.156:8001",
      "gossip": "64.130.50.156:8000",
      "pubkey": "GynDnLQynVx5k1DKeY7YJCUAKHsfnavrJkqEudwpenfa",
      "pubsub": null,
      "tpuQuic": "64.130.50.156:8002",
      "tpuVote": "64.130.50.156:8004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "64.130.50.156:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.156:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.170:8001",
      "gossip": "64.130.52.170:9001",
      "pubkey": "amshtHNoEMeESbKfrddeNTniVqejq9Q9Z8ishCfjFML",
      "pubsub": null,
      "tpuQuic": "64.130.52.170:9008",
      "tpuVote": "64.130.52.170:9002",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "64.130.52.170:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.170:9008"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.130.34.19:8000",
      "pubkey": "EqtJ8xTZ5v7rcN55nNXXELeUMXaa1cNxANSrkhuDZeVg",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.243:8002",
      "gossip": "51.81.193.145:8001",
      "pubkey": "EgSUEkHmQcTLpnHevRHwEMbULrZLYejSQnynVtFhA5y9",
      "pubsub": null,
      "tpuQuic": "51.81.193.145:8003",
      "tpuVote": "51.81.193.145:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.193.145:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.193.145:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.179:8002",
      "gossip": "51.81.42.233:8001",
      "pubkey": "By39VLkTuP93R6euXiNosQdbcYqAWGhDvewiDsqUaWPB",
      "pubsub": null,
      "tpuQuic": "51.81.42.233:8003",
      "tpuVote": "51.81.42.233:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.42.233:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.42.233:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.37:8000",
      "pubkey": "7dGHDYZciuHTSAEezaoFcbtzt9Zf4mcYst4eRyFKUeEq",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.232:8000",
      "pubkey": "FGmn7ukGi9jWDjYDhvcir4D2UxyveNg3peAneb5wHj4u",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.249:8001",
      "gossip": "64.130.37.249:8000",
      "pubkey": "B3aNJHH7pRYMDpmEuuH28j4EjWPgbsC1Ecpfpja2WGBB",
      "pubsub": null,
      "tpuQuic": "64.130.37.249:8009",
      "tpuVote": "64.130.37.249:8005",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "64.130.37.249:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.249:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.44:8888",
      "gossip": "198.13.136.204:8000",
      "pubkey": "DMWKWgZLRKLPsZ9K5fbKJz3XBY3SQitDeDce1p5CV5CE",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.204:8002",
      "gossip": "64.130.57.204:8001",
      "pubkey": "9hkSnKvsToiGhXZCv7adJ5RV5mZgEUENGHDPxYTGSgVC",
      "pubsub": null,
      "tpuQuic": "64.130.57.204:8003",
      "tpuVote": "64.130.57.204:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.57.204:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.204:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "54.177.166.106:8000",
      "pubkey": "7LVqWj3dQeHnL4AEpVQiqvwT5vMwhpyYLfzUWaaXKUwm",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.172:8888",
      "gossip": "45.250.253.55:8000",
      "pubkey": "91nz2cwTLzhU1nvE7q9WDLZFZJtm4zF7C7KMwLrywhMv",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.64.101:18001",
      "gossip": "84.32.64.101:18000",
      "pubkey": "H4UMe6Hxz5jCZYYyn4ybAUnGhM7d8wGAToJU9hShZX5A",
      "pubsub": null,
      "tpuQuic": "84.32.64.101:18002",
      "tpuVote": "84.32.64.101:18004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "84.32.64.101:18009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.64.101:18003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.250.254.237:8001",
      "gossip": "45.250.254.237:8000",
      "pubkey": "7L8w9GmHW5K9upJkwLndjjLJhmBqVbbn1xc39vV4jRT4",
      "pubsub": null,
      "tpuQuic": "45.250.254.237:8002",
      "tpuVote": "45.250.254.237:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "45.250.254.237:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.250.254.237:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.235:8001",
      "gossip": "208.91.110.235:8000",
      "pubkey": "ARi3qoHpgQMWm98He8jkHAT23wL6ZP8ZNDjMryWWwuUM",
      "pubsub": null,
      "tpuQuic": "208.91.110.235:8002",
      "tpuVote": "208.91.110.235:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.235:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.235:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "72.46.86.21:8000",
      "pubkey": "3TFSvTCiTBx9kkQXWxJ2XSthApm8f144V38VuwEx7bvq",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.176.176:8001",
      "gossip": "84.32.176.176:8000",
      "pubkey": "GraFivHmmCCSZkZ3yKaNZsUKtvBRHT19M6JMfEmAooTv",
      "pubsub": null,
      "tpuQuic": "84.32.176.176:8002",
      "tpuVote": "84.32.176.176:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "84.32.176.176:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.176.176:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.32:8002",
      "gossip": "84.32.103.32:8001",
      "pubkey": "AgyoEHRQPazf3ACj9PDaRYqM4RrdeCSZHP6vfmHQPEHC",
      "pubsub": null,
      "tpuQuic": "84.32.103.32:8003",
      "tpuVote": "84.32.103.32:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "84.32.103.32:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.32:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.29:8888",
      "gossip": "63.254.161.189:8000",
      "pubkey": "6HV1e6asvnyLkPPn1KhpXLRtdxwEJ7YU4Wt9ct1sUti4",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "160.202.128.159:8001",
      "gossip": "160.202.128.159:8000",
      "pubkey": "6qmLSWxBea4Agsz72kUUoWkDafrv96ZqKr7MXvqkWo9n",
      "pubsub": null,
      "tpuQuic": "160.202.128.159:8002",
      "tpuVote": "160.202.128.159:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "160.202.128.159:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "160.202.128.159:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.132:8002",
      "gossip": "51.81.25.226:8001",
      "pubkey": "4w3Pz7xojbpzzHM2PErX3gzEQEDfeJMK6q57JE6bo158",
      "pubsub": null,
      "tpuQuic": "51.81.25.226:8003",
      "tpuVote": "51.81.25.226:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.25.226:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.25.226:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.198:8002",
      "gossip": "51.81.137.225:8001",
      "pubkey": "AH5FrR2ziDPYVpD9ynGEMKL1rfZvLUSMtZosR5YuWcSy",
      "pubsub": null,
      "tpuQuic": "51.81.137.225:8003",
      "tpuVote": "51.81.137.225:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.137.225:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.137.225:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.88.233.49:8002",
      "gossip": "103.88.233.49:8001",
      "pubkey": "AHbox59d8Y39m88PpWh4R9uhyzN6sPxW6g6UX8CZ8Acm",
      "pubsub": null,
      "tpuQuic": "103.88.233.49:8003",
      "tpuVote": "103.88.233.49:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "103.88.233.49:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.88.233.49:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.157:8000",
      "gossip": "64.130.61.157:8001",
      "pubkey": "2xc6BevpMR16J4u2sLFnM8iRRtCiT5FQqq6CpZ2teJfT",
      "pubsub": null,
      "tpuQuic": "64.130.61.157:8002",
      "tpuVote": "64.130.61.157:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.61.157:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.157:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.141.140:8002",
      "gossip": "104.204.141.140:8001",
      "pubkey": "46yiiR2Fj3tHVd2sdNogzL5oJzqRjxjtBfeh8v6AvMCL",
      "pubsub": null,
      "tpuQuic": "104.204.141.140:8003",
      "tpuVote": "104.204.141.140:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.204.141.140:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.141.140:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.170:8002",
      "gossip": "51.81.39.156:8001",
      "pubkey": "4Fszx4HNvUUjq5a6tFX4bsiFiTwPszdU3xSfo7cEcwy7",
      "pubsub": null,
      "tpuQuic": "51.81.39.156:8003",
      "tpuVote": "51.81.39.156:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.39.156:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.39.156:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.54.49:8002",
      "gossip": "67.209.54.49:8001",
      "pubkey": "51vyrW5yQWBRaYGN2SaYiKRmFuapiXY9zhefypcGqtGU",
      "pubsub": null,
      "tpuQuic": "67.209.54.49:8010",
      "tpuVote": "67.209.54.49:8006",
      "version": "3.0.6",
      "clientId": "Agave",
      "featureSet": 3604001754,
      "serveRepair": "67.209.54.49:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.54.49:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "203.118.21.115:8001",
      "gossip": "203.118.21.115:8000",
      "pubkey": "Htypy9WC7gMMt2F8qExtg9Hc6NSxW5XZ59QCB89fqrWR",
      "pubsub": null,
      "tpuQuic": "203.118.21.115:8002",
      "tpuVote": "203.118.21.115:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "203.118.21.115:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "203.118.21.115:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.223:8001",
      "gossip": "64.130.37.223:8000",
      "pubkey": "E5LPk4JSQ8wmbErwLNRjKf6FXFRTFNMAMk5pzxdys3SV",
      "pubsub": null,
      "tpuQuic": "64.130.37.223:8003",
      "tpuVote": "64.130.37.223:8005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.37.223:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.223:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.78:8002",
      "gossip": "64.130.63.78:8001",
      "pubkey": "mcs53XCrKqaQTKV74oECGrkk2WpZuPG3uoozvNvgHmC",
      "pubsub": null,
      "tpuQuic": "64.130.63.78:8003",
      "tpuVote": "64.130.63.78:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.78:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.78:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.28.89.130:8001",
      "gossip": "103.28.89.130:8000",
      "pubkey": "FaZ7jE4Z8F4tmqS73pwfntsjZas2FgrYuPGyZ1795BZM",
      "pubsub": null,
      "tpuQuic": "103.28.89.130:8002",
      "tpuVote": "103.28.89.130:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.28.89.130:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.28.89.130:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.140.84:8001",
      "gossip": "198.13.140.84:8000",
      "pubkey": "149CgBGS68KxA6PqCdwxyqMUAreZQWaTUTP3RN8X69zw",
      "pubsub": null,
      "tpuQuic": "198.13.140.84:8002",
      "tpuVote": "198.13.140.84:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.140.84:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.84:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.186.51:8000",
      "gossip": "84.32.186.51:8001",
      "pubkey": "FLNTrxVV8ZHr43EDaWR4jNDLQqLtdda732kMaHAMPBeV",
      "pubsub": null,
      "tpuQuic": "84.32.186.51:8002",
      "tpuVote": "84.32.186.51:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "84.32.186.51:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.186.51:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.155:8002",
      "gossip": "51.38.95.155:8001",
      "pubkey": "73ituUwYUZnbUD7KScvL8LoYKXwpDymzgfMcSQEy88Za",
      "pubsub": null,
      "tpuQuic": "51.38.95.155:8003",
      "tpuVote": "51.38.95.155:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.95.155:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.95.155:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.152:8000",
      "pubkey": "AxRCGMx8ebMZ68njMb5qGD4P4eYg1C1CgxbFtSSx4VDm",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.191:8002",
      "gossip": "57.128.146.15:8001",
      "pubkey": "HM1tyG2FPKMMzeJ69XBXcpTdJXUGjyN9si1Gs2c575G3",
      "pubsub": null,
      "tpuQuic": "57.128.146.15:8003",
      "tpuVote": "57.128.146.15:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "57.128.146.15:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.128.146.15:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.217:8000",
      "gossip": "208.91.110.217:8001",
      "pubkey": "3q22BgeqNjKPnQBBiRdLYKjDwfrYf3HE23cNnAf9Nk3J",
      "pubsub": null,
      "tpuQuic": "208.91.110.217:8002",
      "tpuVote": "208.91.110.217:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "208.91.110.217:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.217:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.59:8002",
      "gossip": "151.80.89.217:8001",
      "pubkey": "HfY6iVWmPgLQScKWme1nLz86kTDdNrhjB3MMKC4PNHp4",
      "pubsub": null,
      "tpuQuic": "151.80.89.217:8003",
      "tpuVote": "151.80.89.217:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "151.80.89.217:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "151.80.89.217:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.242:8002",
      "gossip": "51.81.193.144:8001",
      "pubkey": "3Bhm7t9TC5RDaTXW4dtNC4NuQwupjtg6AQiQuicjwBQt",
      "pubsub": null,
      "tpuQuic": "51.81.193.144:8003",
      "tpuVote": "51.81.193.144:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.193.144:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.193.144:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.217:8003",
      "gossip": "198.13.130.217:8001",
      "pubkey": "EEyEU2sKBbCuLHZFyzd53eqdMSJd3wP31C9sK13FHKMF",
      "pubsub": null,
      "tpuQuic": "198.13.130.217:9007",
      "tpuVote": "198.13.130.217:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "198.13.130.217:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.217:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.199:8002",
      "gossip": "51.81.137.244:8001",
      "pubkey": "3XcJ5Hoeditzvq8umCRhakMvJ6Lg5sVosW6B3wF4sRCb",
      "pubsub": null,
      "tpuQuic": "51.81.137.244:8003",
      "tpuVote": "51.81.137.244:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.137.244:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.137.244:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "193.118.169.231:8003",
      "gossip": "193.118.169.231:8002",
      "pubkey": "DZmu9QqrpCwinBj3Lvpf5MeKXN17YEKYTu1kvj3yPvbM",
      "pubsub": null,
      "tpuQuic": "193.118.169.231:8004",
      "tpuVote": "193.118.169.231:8006",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "193.118.169.231:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "193.118.169.231:8005"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "35.78.50.145:8000",
      "gossip": "35.78.50.145:8020",
      "pubkey": "HHsCWverChSZZzKtmky986fdnWtqv1PMwRWd2gtPWpsY",
      "pubsub": null,
      "tpuQuic": "35.78.50.145:8001",
      "tpuVote": "35.78.50.145:8003",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "35.78.50.145:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "35.78.50.145:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.229:8000",
      "gossip": "64.130.52.229:8001",
      "pubkey": "EKA5ysD44fnsa4EGD1HP4PtDBGe5g4bxauYmdFc4RRSV",
      "pubsub": null,
      "tpuQuic": "64.130.52.229:8002",
      "tpuVote": "64.130.52.229:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.229:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.229:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.148:8002",
      "gossip": "64.130.51.148:8001",
      "pubkey": "4JxaCovbQb7nxXR4gLKy3xp3wmp63BwGqUR89w8M9wzn",
      "pubsub": null,
      "tpuQuic": "64.130.51.148:8003",
      "tpuVote": "64.130.51.148:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.148:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.148:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "67.213.123.114:8000",
      "pubkey": "EvypjayXwShFWV8ykqQPX7WkXQjQDaAp8EzEGs72ZQD2",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.55.50:8002",
      "gossip": "64.130.55.50:8001",
      "pubkey": "3gaTX4yMsUMmjLD1vGhX2PVA1dYYL81daoCj1juT6zTv",
      "pubsub": null,
      "tpuQuic": "64.130.55.50:8010",
      "tpuVote": "64.130.55.50:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "64.130.55.50:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.55.50:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.102:8000",
      "pubkey": "9nhALkHJnaQjwKdyivHwddhPizYipZ44fbc5N4DxQiVM",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.52:8002",
      "gossip": "46.105.157.250:8001",
      "pubkey": "Ede2dTf8XTsEMCQ2f8r7q4DppevF2dB74387AVgeN65w",
      "pubsub": null,
      "tpuQuic": "46.105.157.250:8003",
      "tpuVote": "46.105.157.250:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "46.105.157.250:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "46.105.157.250:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.36.165:8021",
      "gossip": "57.129.36.165:8001",
      "pubkey": "Ak8g5Bso3PV54WHThH3p1BvVfaekieCZLpBY4BFPj92v",
      "pubsub": null,
      "tpuQuic": "57.129.36.165:8022",
      "tpuVote": "57.129.36.165:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "57.129.36.165:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.36.165:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.108:8000",
      "pubkey": "9LManMDsSdi82JKvsw5Ya5rf35CLoRfqng5vjrjwRF4g",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "66.23.232.186:8002",
      "gossip": "66.23.232.186:8001",
      "pubkey": "6nEhpDtHffkEVNLXQLFGZ1D8Y8h9eU9gz6vF7pXcwTrg",
      "pubsub": null,
      "tpuQuic": "66.23.232.186:8003",
      "tpuVote": "66.23.232.186:8005",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "66.23.232.186:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "66.23.232.186:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.98:8002",
      "gossip": "51.222.162.208:8001",
      "pubkey": "C7aqNstTEAet11mww4p78DSxbQK8MVc6hHbEtSmwWKpS",
      "pubsub": null,
      "tpuQuic": "51.222.162.208:8003",
      "tpuVote": "51.222.162.208:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.208:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.208:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.51.7:8002",
      "gossip": "64.31.51.7:8001",
      "pubkey": "6m1eh8RqqVQedTgaoJvXvJecK85VMbm42xCkHh4J3d7p",
      "pubsub": null,
      "tpuQuic": "64.31.51.7:8003",
      "tpuVote": "64.31.51.7:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.51.7:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.51.7:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "34.208.45.138:8000",
      "gossip": "34.208.45.138:8001",
      "pubkey": "HhGTQhJjWzWAM1ikkvAa5bXcGxHPiRsXMai3K2WecJR9",
      "pubsub": null,
      "tpuQuic": "34.208.45.138:8002",
      "tpuVote": "34.208.45.138:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "34.208.45.138:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "34.208.45.138:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.63:8002",
      "gossip": "176.31.30.21:8001",
      "pubkey": "BDj6ZbRDbjU2VSQiasXHstALCcnvrrY1WQ6f4pTixiJ9",
      "pubsub": null,
      "tpuQuic": "176.31.30.21:8003",
      "tpuVote": "176.31.30.21:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "176.31.30.21:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "176.31.30.21:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "61.111.3.83:8001",
      "gossip": "61.111.3.83:8000",
      "pubkey": "HDkvuCZyKcUMF18ENKqijjBFXCGhavwBoatKy1Eovnir",
      "pubsub": null,
      "tpuQuic": "61.111.3.83:8002",
      "tpuVote": "61.111.3.83:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "61.111.3.83:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "61.111.3.83:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "40.160.33.5:8001",
      "gossip": "40.160.33.5:8000",
      "pubkey": "GPidFYjn1T6Ja4A7wLqY8nywgRThtm91gTC2DM9eW18v",
      "pubsub": null,
      "tpuQuic": "40.160.33.5:8002",
      "tpuVote": "40.160.33.5:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "40.160.33.5:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "40.160.33.5:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.83.158:8000",
      "pubkey": "7u3umJ2FUDgfJvDtJ48g2CQ2GRRXyqWCo79FdePtM9jH",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "35.179.154.152:8000",
      "pubkey": "EwuQVUhkZLfjp7QzxTW8veELje5Jj8YDjRD4QNNCK5VP",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.46.87.199:8000",
      "gossip": "72.46.87.199:8001",
      "pubkey": "GPSjAGfmZHV1v7tTEioi5RtULBYrhhQeueUbfZXPDYsb",
      "pubsub": null,
      "tpuQuic": "72.46.87.199:8002",
      "tpuVote": "72.46.87.199:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "72.46.87.199:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.46.87.199:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.3:8002",
      "gossip": "51.38.146.235:8001",
      "pubkey": "9gH52AUSBPsnicnso9HJ6kQZxydSHBosVTujH6Yd6dTG",
      "pubsub": null,
      "tpuQuic": "51.38.146.235:8003",
      "tpuVote": "51.38.146.235:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.146.235:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.146.235:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.7:8888",
      "gossip": "198.13.140.168:8000",
      "pubkey": "2koHzkzeUparfwGCw5akVTCpUAa8XATavbUUMyUzx4jU",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "51.89.11.213:8899",
      "tpu": null,
      "tvu": "51.89.11.213:8001",
      "gossip": "51.89.11.213:8000",
      "pubkey": "D2xvrc7j571RRz272EtsjLmcc8EYJkVt4GCjLq4Eyrqk",
      "pubsub": "51.89.11.213:8900",
      "tpuQuic": "51.89.11.213:8002",
      "tpuVote": "51.89.11.213:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "51.89.11.213:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.11.213:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.241.102:8002",
      "gossip": "204.16.241.102:8001",
      "pubkey": "72DZg8YCLVb3mDzPAwJBpSAkTzTx66Kcqg7bD9yppkZu",
      "pubsub": null,
      "tpuQuic": "204.16.241.102:8003",
      "tpuVote": "204.16.241.102:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.241.102:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.241.102:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "40.160.33.24:8001",
      "gossip": "40.160.33.24:8000",
      "pubkey": "A3sxu8FARBunXsRsinjBJL5Kn4kBDng3RU9oRcp146i",
      "pubsub": null,
      "tpuQuic": "40.160.33.24:8002",
      "tpuVote": "40.160.33.24:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "40.160.33.24:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "40.160.33.24:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "135.136.7.102:8001",
      "gossip": "135.136.7.102:8000",
      "pubkey": "sLmtRBsniDxRrGwHUBKQHnRyPQdX241u9GZWNHENNNZ",
      "pubsub": null,
      "tpuQuic": "135.136.7.102:8002",
      "tpuVote": "135.136.7.102:8004",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "135.136.7.102:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "135.136.7.102:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.9.29:8002",
      "gossip": "202.8.9.29:8001",
      "pubkey": "EKQScZCR2k5oAFZN4kuXYubZzSuaH9uRFMiAPgHKrTsG",
      "pubsub": null,
      "tpuQuic": "202.8.9.29:8003",
      "tpuVote": "202.8.9.29:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "202.8.9.29:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.9.29:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.187:8001",
      "gossip": "70.40.185.187:8000",
      "pubkey": "BbkVftbDtZPy1mJRT8P1gKkWsC9uv64VfQubKAX3vxvW",
      "pubsub": null,
      "tpuQuic": "70.40.185.187:8002",
      "tpuVote": "70.40.185.187:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.187:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.187:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.39.45:8002",
      "gossip": "64.31.39.45:8001",
      "pubkey": "F2f3SmGsAsXuqdRUywDzTWoecs3CCUfWM8SXJ8w5tw6D",
      "pubsub": null,
      "tpuQuic": "64.31.39.45:8003",
      "tpuVote": "64.31.39.45:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.39.45:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.39.45:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.200:8888",
      "gossip": "63.254.169.24:8000",
      "pubkey": "szepcB6BnkhCPcedwDtyEBMtRJQS4KCKVLgCT8A56FB",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.45.30:8002",
      "gossip": "64.130.45.30:8001",
      "pubkey": "E47oXyM64A5Z6P8dynfzwJzWiV9YjwAzarCpugoAw4pg",
      "pubsub": null,
      "tpuQuic": "64.130.45.30:8003",
      "tpuVote": "64.130.45.30:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.45.30:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.45.30:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "91.237.141.130:8000",
      "gossip": "91.237.141.130:8001",
      "pubkey": "3RXsFmSoV8yHUkaiGZ7yKM4PvFHUaQrhQMbNpzNooh6D",
      "pubsub": null,
      "tpuQuic": "91.237.141.130:8002",
      "tpuVote": "91.237.141.130:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "91.237.141.130:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.237.141.130:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.42:8000",
      "pubkey": "HhbGFaV8hWb9Nf6kiUqZuSnr8aeSPt7SuxdHD8dQX1W5",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.115.123:8001",
      "gossip": "67.213.115.123:8000",
      "pubkey": "F2PL94qVe1WHBZGN7gn8Fe8po4xSoU4jdscYFdAXakMD",
      "pubsub": null,
      "tpuQuic": "67.213.115.123:8002",
      "tpuVote": "67.213.115.123:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.115.123:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.115.123:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "146.19.172.7:8001",
      "gossip": "146.19.172.7:8000",
      "pubkey": "H8jCTJhhNarVzbXfZ8GhYheJbX64xWg7osp7jmc8AF5B",
      "pubsub": null,
      "tpuQuic": "146.19.172.7:8002",
      "tpuVote": "146.19.172.7:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "146.19.172.7:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.19.172.7:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.197:8002",
      "gossip": "198.244.135.121:8001",
      "pubkey": "DnJDcGkBhxc9vxKcjAfRmETAjNURdnR2S3icukpVeVSu",
      "pubsub": null,
      "tpuQuic": "198.244.135.121:8003",
      "tpuVote": "198.244.135.121:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "198.244.135.121:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.244.135.121:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.147:8001",
      "gossip": "64.130.32.147:8000",
      "pubkey": "7SDy8gCkGXVuDgYraSRkUMyJinwtuQa2S45wmV3JGKXV",
      "pubsub": null,
      "tpuQuic": "64.130.32.147:8002",
      "tpuVote": "64.130.32.147:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.147:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.147:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.49:8002",
      "gossip": "54.36.184.233:8001",
      "pubkey": "5eYVuQdk7HeFiUwD8a34JsukVnfqTUCZHCFatPJtCoM3",
      "pubsub": null,
      "tpuQuic": "54.36.184.233:8003",
      "tpuVote": "54.36.184.233:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.36.184.233:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.36.184.233:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.21:8888",
      "gossip": "63.254.161.181:8000",
      "pubkey": "CgetHzfMgNAr7jQYZNBUmPcbPKxAxEL2i6WTjM2PFoJD",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.213:8002",
      "gossip": "64.130.63.213:8001",
      "pubkey": "BmovY5ADC1Vw8xbEmGNaaozDL3m97nfsRzse7Pr5pCcw",
      "pubsub": null,
      "tpuQuic": "64.130.63.213:8003",
      "tpuVote": "64.130.63.213:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.213:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.213:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.137:8002",
      "gossip": "51.81.25.247:8001",
      "pubkey": "54yCHDVDHhKdca23zmLSitWsawQqGgeaZ9qNPPydm9iG",
      "pubsub": null,
      "tpuQuic": "51.81.25.247:8003",
      "tpuVote": "51.81.25.247:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.25.247:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.25.247:8004"
    },
    {
      "rpc": "185.26.11.117:8899",
      "tpu": null,
      "tvu": "185.26.11.117:8001",
      "gossip": "185.26.11.117:8000",
      "pubkey": "JCFafxMRyMqP46EFnKcZU8t2b9XdJndXgQvmgodrNkUg",
      "pubsub": "185.26.11.117:8900",
      "tpuQuic": "185.26.11.117:8002",
      "tpuVote": "185.26.11.117:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.26.11.117:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.11.117:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "3.231.33.111:8001",
      "gossip": "3.231.33.111:8000",
      "pubkey": "9uruWbaNE1cRxmpSpoN1Du8FutL3ocd4btZQhGcc5ptt",
      "pubsub": null,
      "tpuQuic": "3.231.33.111:8002",
      "tpuVote": "3.231.33.111:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "3.231.33.111:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "3.231.33.111:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "18.195.216.237:8000",
      "pubkey": "6v8Fs91m9UaRtt8csNiNeZQpAmwUmCLpnhxVmWDAVjqD",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.35:8002",
      "gossip": "64.130.40.35:8001",
      "pubkey": "2YHXguZQRK4S59XNW5Ah7zgv7bH8whZdXKWLtCVbMNaY",
      "pubsub": null,
      "tpuQuic": "64.130.40.35:8003",
      "tpuVote": "64.130.40.35:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.35:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.35:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.44.207.210:8001",
      "gossip": "185.44.207.210:8000",
      "pubkey": "F29QKNsv4NhBk2N3oLPtfMUJuUaspUBV4dZvp8PNY7ex",
      "pubsub": null,
      "tpuQuic": "185.44.207.210:8002",
      "tpuVote": "185.44.207.210:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.44.207.210:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.44.207.210:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "45.250.253.124:8000",
      "pubkey": "DSJMoQpE8u1kkRGrHTd6eJjoiwH2oQndNhYBzTda48YP",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "64.130.44.100:8899",
      "tpu": null,
      "tvu": "64.130.44.100:8002",
      "gossip": "64.130.44.100:8001",
      "pubkey": "96f2kKBfRmvDM1fampki3d1ejSvjvyCd3WMtR4KxFFG9",
      "pubsub": "64.130.44.100:8900",
      "tpuQuic": "64.130.44.100:8003",
      "tpuVote": "64.130.44.100:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2478291359,
      "serveRepair": "64.130.44.100:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.100:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.239:8000",
      "pubkey": "zMvVVY2hwnD7YZsfF9b3LiPTSRK2mmS9gbpLzFYG7Uw",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.162.93.199:8002",
      "gossip": "69.162.93.199:8001",
      "pubkey": "6DUsN4BxDm4SegsM6XqViQdGX7aCLszhC4bWCzMR7687",
      "pubsub": null,
      "tpuQuic": "69.162.93.199:8003",
      "tpuVote": "69.162.93.199:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "69.162.93.199:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.162.93.199:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.115:8002",
      "gossip": "51.195.124.111:8001",
      "pubkey": "FPFnDUtnNaiSvbqjR7JNj1ga3QBGdfYmmZqAMZzghj5s",
      "pubsub": null,
      "tpuQuic": "51.195.124.111:8003",
      "tpuVote": "51.195.124.111:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.195.124.111:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.195.124.111:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.36.35.229:8001",
      "gossip": "89.36.35.229:8000",
      "pubkey": "E1cKmxouGhdeLk31aX3kAHroJSDoSZmMwVAVcYJbs2wT",
      "pubsub": null,
      "tpuQuic": "89.36.35.229:8002",
      "tpuVote": "89.36.35.229:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "89.36.35.229:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.36.35.229:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "65.20.105.212:8001",
      "gossip": "65.20.105.212:8000",
      "pubkey": "CyRYTVHK7QT5bD8rW7qXktivoSBPHCz3Qru1P9T9DsGr",
      "pubsub": null,
      "tpuQuic": "65.20.105.212:8002",
      "tpuVote": "65.20.105.212:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "65.20.105.212:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "65.20.105.212:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.59.162.121:10002",
      "gossip": "45.59.162.121:8001",
      "pubkey": "JDcdWBSCUeQqzh98AQhPNKVc3DLjWtpB4rWfetoRxJJU",
      "pubsub": null,
      "tpuQuic": "45.59.162.121:10003",
      "tpuVote": "45.59.162.121:10005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "45.59.162.121:10010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.59.162.121:10004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.154:11001",
      "gossip": "64.130.59.154:11000",
      "pubkey": "EGUJJxJyqSnaKv1tqdRvjAhk75BM6ge2V3ggzthHGEfQ",
      "pubsub": null,
      "tpuQuic": "64.130.59.154:11002",
      "tpuVote": "64.130.59.154:11004",
      "version": "4.0.0-beta.6",
      "clientId": "Agave",
      "featureSet": 2475355604,
      "serveRepair": "64.130.59.154:11009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.154:11003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.94.154.205:8001",
      "gossip": "141.94.154.205:8000",
      "pubkey": "junkfJ9FY3j6BqRuTj8L32FZ14SMyqUL6ja1LATsyUd",
      "pubsub": null,
      "tpuQuic": "141.94.154.205:8002",
      "tpuVote": "141.94.154.205:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "141.94.154.205:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.94.154.205:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.66:8002",
      "gossip": "178.32.184.116:8001",
      "pubkey": "C1xZapa8ULkASpK1xv5aViRXs8QrEcXr9njit2ZBWngV",
      "pubsub": null,
      "tpuQuic": "178.32.184.116:8003",
      "tpuVote": "178.32.184.116:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "178.32.184.116:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "178.32.184.116:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "67.213.123.119:8000",
      "pubkey": "E7kUcEMP8ZprdoaWrDJSVSrB6VNFvm3VjZdLr8BTfwTB",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.54:8000",
      "gossip": "64.130.57.54:8001",
      "pubkey": "6GG2NseRXjL768pHDz8f3y5tWCdLiBRsTn8jfFCZ1EPt",
      "pubsub": null,
      "tpuQuic": "64.130.57.54:8002",
      "tpuVote": "64.130.57.54:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.57.54:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.54:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.238:8002",
      "gossip": "5.135.193.217:8001",
      "pubkey": "9gpVxp8cji4tjknPm8sdmPwnG9iHjtWZxCciFKm2bu4d",
      "pubsub": null,
      "tpuQuic": "5.135.193.217:8003",
      "tpuVote": "5.135.193.217:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.193.217:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.193.217:8004"
    },
    {
      "rpc": "198.13.130.71:8899",
      "tpu": null,
      "tvu": "198.13.130.71:8001",
      "gossip": "198.13.130.71:8000",
      "pubkey": "HE2REn7YRhFEghuctv3y1dUEK9aWhw8QQSUpRiHd819r",
      "pubsub": "198.13.130.71:8900",
      "tpuQuic": "198.13.130.71:8002",
      "tpuVote": "198.13.130.71:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.71:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.71:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.223.234:8002",
      "gossip": "208.115.223.234:8001",
      "pubkey": "FXFGsV6mtszCyKFSRZFMaUsj8uDtkyJbrSL9nto9TNjC",
      "pubsub": null,
      "tpuQuic": "208.115.223.234:8003",
      "tpuVote": "208.115.223.234:8005",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.223.234:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.223.234:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.55:8888",
      "gossip": "198.13.133.39:8000",
      "pubkey": "2h2r5VE2M6iMJvGnKH2yQSBz2s1NQUh9ZXe547sYpLK2",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "199.91.64.26:8001",
      "gossip": "199.91.64.26:8000",
      "pubkey": "AYXxciUd7asVEwHKSuiGvT651yPvq96EzH1dgFGAsuiK",
      "pubsub": null,
      "tpuQuic": "199.91.64.26:8002",
      "tpuVote": "199.91.64.26:8004",
      "version": "4.1.0-rc.0",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "199.91.64.26:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "199.91.64.26:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.209.179.163:8001",
      "gossip": "185.209.179.163:8000",
      "pubkey": "GekmTyJqLutEWMrKMckT78Ee5iBVbMfkjUKmp3m3EuBL",
      "pubsub": null,
      "tpuQuic": "185.209.179.163:8002",
      "tpuVote": "185.209.179.163:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.209.179.163:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.209.179.163:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.117:8000",
      "pubkey": "9hXV4oZyzn6EuzTU14agbwSupUVKkdWnAy7itS9Fz3Sv",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.44:8000",
      "pubkey": "4wMPSyHqLwXjHMpbgRcbgFGX9UQH1sznh3EFHR9v5wkT",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "45.250.253.117:8000",
      "pubkey": "36H2WLtwGrkAWzrfjVGVgr3gDcxfidafYU53jsLyCXXK",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.121:8002",
      "gossip": "51.222.169.199:8001",
      "pubkey": "ADpp7XsZEsxYXmsserGTzwtEzojvKPrCfFJvziaEBMKj",
      "pubsub": null,
      "tpuQuic": "51.222.169.199:8003",
      "tpuVote": "51.222.169.199:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.169.199:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.169.199:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.192:8888",
      "gossip": "63.254.169.16:8000",
      "pubkey": "FsLmeLZ9oTxV9dXhJ5g6vjqN5ZMghegW7tGwYJVxZwHh",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.187:8002",
      "gossip": "54.36.227.239:8001",
      "pubkey": "BZbakpeN5TG9vVken8acpQFn3j8nK6yXh6v8MgmwXk7F",
      "pubsub": null,
      "tpuQuic": "54.36.227.239:8003",
      "tpuVote": "54.36.227.239:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.36.227.239:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.36.227.239:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.148:8001",
      "gossip": "64.130.42.148:8000",
      "pubkey": "8KGEwFF3hWuPjhFyqvvP7oeRMai4Zd9inA3U56pTaMvb",
      "pubsub": null,
      "tpuQuic": "64.130.42.148:8002",
      "tpuVote": "64.130.42.148:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.42.148:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.148:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.84.11:8000",
      "gossip": "85.195.84.11:8001",
      "pubkey": "3iAvrRzYk9gKqypMgpHDM4Sunq6mT8GZpkcsE6QWUbsG",
      "pubsub": null,
      "tpuQuic": "85.195.84.11:8002",
      "tpuVote": "85.195.84.11:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "85.195.84.11:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.84.11:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.254:8002",
      "gossip": "51.81.215.8:8001",
      "pubkey": "77DvYxJZMw3AngyRboz34Jt2QLsHikHYz6MgCgyoue9z",
      "pubsub": null,
      "tpuQuic": "51.81.215.8:8003",
      "tpuVote": "51.81.215.8:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.215.8:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.215.8:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.32.58:8002",
      "gossip": "64.31.32.58:8001",
      "pubkey": "BHHvQHzNTJYacawxsqemVPAdDM1xDoLtzKY2T25SjBzT",
      "pubsub": null,
      "tpuQuic": "64.31.32.58:8003",
      "tpuVote": "64.31.32.58:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.32.58:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.32.58:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.162.156:8001",
      "gossip": "63.254.162.156:8000",
      "pubkey": "tyohWHuTueq8pndoEZthCUSbCsRQGQhjELLB9pe3jKt",
      "pubsub": null,
      "tpuQuic": "63.254.162.156:8002",
      "tpuVote": "63.254.162.156:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "63.254.162.156:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.162.156:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.13:8888",
      "gossip": "198.13.140.174:8000",
      "pubkey": "Bija1694Hw1SHiU3769YAzZTBQZbUEJ2sujszdfvyTTg",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.223.194:8002",
      "gossip": "208.115.223.194:8001",
      "pubkey": "BzNSLaU1hKyke6gWbuGZwbDwqGxnNcK3fxW3L3pVKB5W",
      "pubsub": null,
      "tpuQuic": "208.115.223.194:8003",
      "tpuVote": "208.115.223.194:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.223.194:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.223.194:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.79:38001",
      "gossip": "64.130.61.79:38000",
      "pubkey": "CLpuEffsjphAFiZPhEGjXUgVh9b7DDGLiRx6FpmALfr5",
      "pubsub": null,
      "tpuQuic": "64.130.61.79:38002",
      "tpuVote": "64.130.61.79:38004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.61.79:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.79:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.166:8888",
      "gossip": "45.250.253.21:8000",
      "pubkey": "8WkctGxKLvf3dGqRL5Aws3v9BETEEMdoufWBrLkhDYNs",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.19.136.112:18001",
      "gossip": "162.19.136.112:18000",
      "pubkey": "FqK1sRwrNjtc5iKTC6UY5icJ3RpMVUa4dKsye6tosuaD",
      "pubsub": null,
      "tpuQuic": "162.19.136.112:18002",
      "tpuVote": "162.19.136.112:18004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "162.19.136.112:18009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.136.112:18003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.36:8001",
      "gossip": "64.130.54.36:8000",
      "pubkey": "Ua4USsZXYSSsFmqK7Yri9SjkAFL5YnWHWZXWpTrBXJb",
      "pubsub": null,
      "tpuQuic": "64.130.54.36:8002",
      "tpuVote": "64.130.54.36:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.54.36:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.36:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.3:8888",
      "gossip": "198.13.140.163:8000",
      "pubkey": "5aVz8Mn4heChUaMtARxnMvYRmrKeJRw56xyYQKMjDYHa",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.136:8888",
      "gossip": "198.13.141.40:8000",
      "pubkey": "8WWUwYqNgD9NEAhWwm531JZJbLBNiPGQyaZYgTm7hLuM",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "185.191.116.175:8899",
      "tpu": null,
      "tvu": "185.191.116.175:8001",
      "gossip": "185.191.116.175:8000",
      "pubkey": "4UVXQCbZoN5aXE92p2SyLhyudSZShS2G3BiFmSdSaDye",
      "pubsub": "185.191.116.175:8900",
      "tpuQuic": "185.191.116.175:8002",
      "tpuVote": "185.191.116.175:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "185.191.116.175:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.116.175:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.61.209.95:8001",
      "gossip": "5.61.209.95:8000",
      "pubkey": "AYMMyFLBQRLkVhrtgQUz4dtAukL4oXz42rYUm5Aw7hHp",
      "pubsub": null,
      "tpuQuic": "5.61.209.95:8002",
      "tpuVote": "5.61.209.95:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "5.61.209.95:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.61.209.95:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "43.106.49.31:8001",
      "gossip": "43.106.49.31:8000",
      "pubkey": "B5PAnGvUFnwQP4mYQxhnBckq3S7v94iyPB6Q2AUGgsSK",
      "pubsub": null,
      "tpuQuic": "47.76.169.204:8003",
      "tpuVote": "43.106.49.31:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "43.106.49.31:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "47.76.169.204:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.214:8001",
      "gossip": "64.130.37.214:8000",
      "pubkey": "BeWxjfkr7kGACUWGPy12mJPiafuAoFbAc6aSyWs9Ye2C",
      "pubsub": null,
      "tpuQuic": "64.130.37.214:8002",
      "tpuVote": "64.130.37.214:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.37.214:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.214:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.219:8002",
      "gossip": "64.130.49.219:8001",
      "pubkey": "CLs6ryrxtvzebjoVSFwDCjc26LtmVjDENMGJXfLHYAt8",
      "pubsub": null,
      "tpuQuic": "64.130.49.219:8003",
      "tpuVote": "64.130.49.219:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.49.219:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.219:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.4.208.89:8001",
      "gossip": "46.4.208.89:8000",
      "pubkey": "GuP1whhJfdTkUFD1i8aJTRSThdKcc8HFYTYsk4MdgbHa",
      "pubsub": null,
      "tpuQuic": "46.4.208.89:8002",
      "tpuVote": "46.4.208.89:8004",
      "version": "4.0.0-beta.4",
      "clientId": "Agave",
      "featureSet": 3701347359,
      "serveRepair": "46.4.208.89:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "46.4.208.89:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.212:8888",
      "gossip": "64.130.46.212:8000",
      "pubkey": "9D4SWfqGfZuZVdSMnueD9XicU1K4Ud2SVQnA8Mosmx1M",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.243.42.47:8001",
      "gossip": "104.243.42.47:8000",
      "pubkey": "dm3HuzJvXf6GgHrDv2rifq8RMLdqBq8B9QSWjzz6JgS",
      "pubsub": null,
      "tpuQuic": "104.243.42.47:8002",
      "tpuVote": "104.243.42.47:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "104.243.42.47:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.243.42.47:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.52.243:8031",
      "gossip": "67.209.52.243:8030",
      "pubkey": "7nXbCgKqGrcWvahNtqHWWrai74YBkWP7jse9pPGAEoou",
      "pubsub": null,
      "tpuQuic": "67.209.52.243:8032",
      "tpuVote": "67.209.52.243:8034",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.209.52.243:8039",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.52.243:8033"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.131:8002",
      "gossip": "51.81.25.225:8001",
      "pubkey": "HkCAo9yAspkPVt6Gb32XEApS9r2B6KwHjN8RoDwJjHHX",
      "pubsub": null,
      "tpuQuic": "51.81.25.225:8003",
      "tpuVote": "51.81.25.225:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.25.225:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.25.225:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.143.77:8001",
      "gossip": "104.204.143.77:8000",
      "pubkey": "F8Q5P1hE8qAZwDUskP1kV7RXeoMdY9pJAUHCWLcbcrw6",
      "pubsub": null,
      "tpuQuic": "104.204.143.77:8002",
      "tpuVote": "104.204.143.77:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.204.143.77:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.143.77:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.92.15:8001",
      "gossip": "64.34.92.15:8000",
      "pubkey": "9GWcFq3vpjBKwzV5mjrHw44RAFRMUFCGoqtRZamVgkYP",
      "pubsub": null,
      "tpuQuic": "64.34.92.15:8002",
      "tpuVote": "64.34.92.15:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.34.92.15:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.92.15:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.87:8000",
      "gossip": "64.130.43.87:8001",
      "pubkey": "91yhBhbabd6ZpPraH2unSXsxAGfDjsGRPDEFASmTkB7f",
      "pubsub": null,
      "tpuQuic": "64.130.43.87:8002",
      "tpuVote": "64.130.43.87:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.87:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.87:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "150.136.8.134:8001",
      "pubkey": "G4P2VuDT1jDjrdwxmNS5iEFriGqyBzJRQKFjjMtGmaxw",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.140.29:8001",
      "gossip": "104.204.140.29:8000",
      "pubkey": "sKotkHQfjMMzQdaq2Henvaod1QbURtv1NCJYZS8AVhy",
      "pubsub": null,
      "tpuQuic": "104.204.140.29:8009",
      "tpuVote": "104.204.140.29:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.204.140.29:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.140.29:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.209.178.217:8001",
      "gossip": "185.209.178.217:8000",
      "pubkey": "G6M6hc2uwfj8c9m1wyca3vUzwCMbAYtHAG6RrYWr1AX8",
      "pubsub": null,
      "tpuQuic": "185.209.178.217:8002",
      "tpuVote": "185.209.178.217:8004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "185.209.178.217:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.209.178.217:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.155:8002",
      "gossip": "51.81.30.21:8001",
      "pubkey": "BNEua7sQmyTdFXQAKoEe7QX2HQ9WgyQ9To4ae7BmtDhr",
      "pubsub": null,
      "tpuQuic": "51.81.30.21:8003",
      "tpuVote": "51.81.30.21:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.30.21:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.30.21:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.82:8002",
      "gossip": "51.222.160.136:8001",
      "pubkey": "AG12hRYA7bWsna7RkKVTdY5oNXPHXk1c5MerEoeKBmAL",
      "pubsub": null,
      "tpuQuic": "51.222.160.136:8003",
      "tpuVote": "51.222.160.136:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.160.136:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.160.136:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "82.22.51.7:8001",
      "gossip": "145.239.149.108:8000",
      "pubkey": "4aBMhU2FKHD97oi7oSRJ4Xxd7BA6LfnpZeuVGRQXYpiV",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "160.202.128.193:8002",
      "gossip": "160.202.128.193:8001",
      "pubkey": "3LfxGxdreWSpdpuodfjvgvRqJ6ZGNMZFhUKVkXZyKffQ",
      "pubsub": null,
      "tpuQuic": "160.202.128.193:8003",
      "tpuVote": "160.202.128.193:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "160.202.128.193:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "160.202.128.193:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.34:8888",
      "gossip": "63.254.162.82:8000",
      "pubkey": "GdRqqfR71ZsrR7BrXBL3f4ZFB5z7Vd5gG8WW1hZaRpkC",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.153:8000",
      "pubkey": "2q2UtnMgVYLpTvxQF5HKp19jd6BfAW8zRH5cw3aBmtDc",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.114:8002",
      "gossip": "51.222.169.168:8001",
      "pubkey": "EVTkWzjnPFqmYxtC5QNz8kTRbSxsr8iCVbSm2u1s8fuy",
      "pubsub": null,
      "tpuQuic": "51.222.169.168:8003",
      "tpuVote": "51.222.169.168:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.169.168:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.169.168:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.76:8002",
      "gossip": "64.130.54.76:8001",
      "pubkey": "7S8e7DAG5ZEKeTiDeGbzMvse1e5qZnG7CFLoKnjDaEF2",
      "pubsub": null,
      "tpuQuic": "64.130.54.76:8003",
      "tpuVote": "64.130.54.76:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.76:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.76:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.109.60:8002",
      "gossip": "208.91.109.60:8001",
      "pubkey": "DNDeTrHR9K4HnTxQwM9fwXnwpWZhbWsKpQZdeUdQcTnE",
      "pubsub": null,
      "tpuQuic": "208.91.109.60:8003",
      "tpuVote": "208.91.109.60:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.109.60:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.60:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.88:8000",
      "pubkey": "qD65SKDednM2jZwMujR23PqzFQLUj5VFzWcNJSX5pxb",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.80.207:8002",
      "gossip": "64.34.80.207:8001",
      "pubkey": "CSMJnpwfKjiA4WZfCjaFHXQFTz2D6N3iUYEpZmd6ZksF",
      "pubsub": null,
      "tpuQuic": "64.34.80.207:8003",
      "tpuVote": "64.34.80.207:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.34.80.207:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.80.207:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "146.19.172.17:8000",
      "gossip": "146.19.172.17:8001",
      "pubkey": "CQaJ2QDqKoftBK31mP73eKN7CAEH85QngyinqaJBfmv8",
      "pubsub": null,
      "tpuQuic": "146.19.172.17:8002",
      "tpuVote": "146.19.172.17:8004",
      "version": "4.0.0-beta.7",
      "clientId": "JitoLabs",
      "featureSet": 1253319928,
      "serveRepair": "146.19.172.17:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.19.172.17:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.239:8001",
      "gossip": "185.191.117.239:8000",
      "pubkey": "9w1C2cLYnceD1WshH9CZogiY1ejznh3N9d2QCGGBDQKA",
      "pubsub": null,
      "tpuQuic": "185.191.117.239:8002",
      "tpuVote": "185.191.117.239:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.239:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.239:8003"
    },
    {
      "rpc": "185.26.11.115:8899",
      "tpu": null,
      "tvu": "185.26.11.115:8001",
      "gossip": "185.26.11.115:8000",
      "pubkey": "3u3rWYNjkvNTzFwgHrej46fzEeVdNgeGZ13HjkzkUTqW",
      "pubsub": "185.26.11.115:8900",
      "tpuQuic": "185.26.11.115:8002",
      "tpuVote": "185.26.11.115:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.26.11.115:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.11.115:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.200:8001",
      "gossip": "64.130.42.200:8000",
      "pubkey": "BTnv8PKrqJXFdb4dxuhuAWfokjxy6U8uUWV8vrQSnc3R",
      "pubsub": null,
      "tpuQuic": "64.130.42.200:8002",
      "tpuVote": "64.130.42.200:8004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "64.130.42.200:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.200:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.208:8002",
      "gossip": "51.81.195.95:8001",
      "pubkey": "Duj1qTLtT3QXYL5FcNs1wv14svxHrPiNv9SDwBCZdvCg",
      "pubsub": null,
      "tpuQuic": "51.81.195.95:8003",
      "tpuVote": "51.81.195.95:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.195.95:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.195.95:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.50:8002",
      "gossip": "54.36.184.234:8001",
      "pubkey": "Rhj2TLgqcGZHWNkJF7WSdG7V1ozL9Gh3sn5Vd7KzkWr",
      "pubsub": null,
      "tpuQuic": "54.36.184.234:8003",
      "tpuVote": "54.36.184.234:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.36.184.234:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.36.184.234:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "8.211.38.63:8000",
      "gossip": "8.211.38.63:8001",
      "pubkey": "HRaN6ZzFTLCKoQefvXVhTBjF72ZNh1s7ueaA6bignja4",
      "pubsub": null,
      "tpuQuic": "8.211.38.63:8002",
      "tpuVote": "8.211.38.63:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "8.211.38.63:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "8.211.38.63:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.53.93:8002",
      "gossip": "64.31.53.93:8001",
      "pubkey": "4nDU8q41A9rZ15UKKhRGuL2T3cSs25WsYYGNavSiCPXC",
      "pubsub": null,
      "tpuQuic": "64.31.53.93:8003",
      "tpuVote": "64.31.53.93:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.53.93:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.53.93:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.56:8001",
      "gossip": "64.130.54.56:8000",
      "pubkey": "z8ATSQkjoYbfz6em1ormmF93EDU3rNpGZZeM71WJeqG",
      "pubsub": null,
      "tpuQuic": "64.130.54.56:8002",
      "tpuVote": "64.130.54.56:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.56:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.56:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.6.13.219:8003",
      "gossip": "185.6.13.219:8001",
      "pubkey": "CQkHUXZUzn62qDDThMZmxvFnfyVpLn3FJTLqQ93xu21e",
      "pubsub": null,
      "tpuQuic": "185.6.13.219:9007",
      "tpuVote": "185.6.13.219:9001",
      "version": "0.101.0-beta.40002",
      "clientId": "Frankendancer",
      "featureSet": 2925349533,
      "serveRepair": "185.6.13.219:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.6.13.219:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.100:8001",
      "gossip": "64.130.40.100:8000",
      "pubkey": "8ezoQ89JkSHPREeSaNqjXB43ucjxeVnjnJfK4sPJiB4G",
      "pubsub": null,
      "tpuQuic": "64.130.40.100:8002",
      "tpuVote": "64.130.40.100:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.40.100:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.100:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.225:8002",
      "gossip": "51.81.149.103:8001",
      "pubkey": "8gxnybck9HDSgThrsRgUxDTAuzG115yd9TYQSm3tDskC",
      "pubsub": null,
      "tpuQuic": "51.81.149.103:8003",
      "tpuVote": "51.81.149.103:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.149.103:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.149.103:8004"
    },
    {
      "rpc": "40.160.51.210:18899",
      "tpu": null,
      "tvu": "40.160.51.210:8001",
      "gossip": "40.160.51.210:8000",
      "pubkey": "3vExnfZZqcCcnWfoumjmfL7YqPyv54nfz7xssugF1GtZ",
      "pubsub": "40.160.51.210:18900",
      "tpuQuic": "40.160.51.210:8002",
      "tpuVote": "40.160.51.210:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "40.160.51.210:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "40.160.51.210:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "92.204.162.89:8003",
      "gossip": "92.204.162.89:8001",
      "pubkey": "PKb1GJrwtu1zuCQNS8SwPUwowSDbBbvPGsHj7ynTB9y",
      "pubsub": null,
      "tpuQuic": "92.204.162.89:9007",
      "tpuVote": "92.204.162.89:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "92.204.162.89:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "92.204.162.89:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.21:9002",
      "gossip": "64.130.37.21:9001",
      "pubkey": "F1iwuiLiw3KU96zYpnAcFLDEFLgsTsrBQZjneuSzqznr",
      "pubsub": null,
      "tpuQuic": "64.130.37.21:9003",
      "tpuVote": "64.130.37.21:9005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.37.21:9010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.21:9004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.165:8001",
      "gossip": "64.130.43.165:8000",
      "pubkey": "XHr9FEW1QS7P29Z71CNYRR4ZbKWATSGNh43EYvCgwDq",
      "pubsub": null,
      "tpuQuic": "64.130.43.165:8002",
      "tpuVote": "64.130.43.165:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.43.165:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.165:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.148:8888",
      "gossip": "198.13.141.52:8000",
      "pubkey": "BZvqABtD9SMUh5rvLYxrhDsSjvCrzJD5UQV5amUrgCE4",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.144.245.53:8002",
      "gossip": "216.144.245.53:8001",
      "pubkey": "7fLVZXYrgkNExHrts6sAapLYv66xGAgoANKKkVm1w8sj",
      "pubsub": null,
      "tpuQuic": "216.144.245.53:8003",
      "tpuVote": "216.144.245.53:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.144.245.53:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.144.245.53:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "54.153.12.179:8000",
      "pubkey": "64XvSQDfMTM4sVTed5nmgs7wtzYFhivtJEQbGQoeHzr6",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "3.112.98.231:38001",
      "gossip": "3.112.98.231:38000",
      "pubkey": "FnDEs4sbLJ2zFSUF8ZR7xWLoNRi8bK4Dk8ekJLqC7woJ",
      "pubsub": null,
      "tpuQuic": "3.112.98.231:38002",
      "tpuVote": "3.112.98.231:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "3.112.98.231:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "3.112.98.231:38003"
    },
    {
      "rpc": "198.13.133.81:8899",
      "tpu": null,
      "tvu": "198.13.133.81:8000",
      "gossip": "198.13.133.81:8901",
      "pubkey": "6bA3VqVFYqve5cnUyEBapY5zZLzQL3PLgnPvYB6zHwfd",
      "pubsub": "198.13.133.81:8900",
      "tpuQuic": "198.13.133.81:8001",
      "tpuVote": "198.13.133.81:8003",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.133.81:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.133.81:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "18.232.167.78:8001",
      "gossip": "18.232.167.78:8000",
      "pubkey": "5BwjwGv8xteAjz47MRFkr6fp9shTd1iP8YbvzCjHGcbN",
      "pubsub": null,
      "tpuQuic": "18.232.167.78:8002",
      "tpuVote": "18.232.167.78:8004",
      "version": "4.0.0-beta.7",
      "clientId": "Agave",
      "featureSet": 1253319928,
      "serveRepair": "18.232.167.78:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "18.232.167.78:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.46.98:8001",
      "gossip": "64.130.46.98:8000",
      "pubkey": "FLCwcTkHQ5XaDuXoW6q2BPC9ZoqVbTWXrNuPi6b8wbBS",
      "pubsub": null,
      "tpuQuic": "64.130.46.98:8002",
      "tpuVote": "64.130.46.98:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.46.98:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.98:8003"
    },
    {
      "rpc": "64.130.34.40:8899",
      "tpu": null,
      "tvu": "64.130.34.40:8000",
      "gossip": "64.130.34.40:8001",
      "pubkey": "9RjM7i8Jvc1suLozyEaPkttfw7e226mczjScNYvfDcz3",
      "pubsub": "64.130.34.40:8900",
      "tpuQuic": "64.130.34.40:8002",
      "tpuVote": "64.130.34.40:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.34.40:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.34.40:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "37.114.51.56:8001",
      "gossip": "37.114.51.56:8000",
      "pubkey": "7gywdpwmpVZYPsjQtAekWcyHgihKc7kx47gKkJtJvNoT",
      "pubsub": null,
      "tpuQuic": "37.114.51.56:8002",
      "tpuVote": "37.114.51.56:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "37.114.51.56:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "37.114.51.56:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.23:8002",
      "gossip": "64.130.59.23:8001",
      "pubkey": "8a3KxT4jBF2JucKaaEALBxMcBQLbuZuh7VAT54DnvAXR",
      "pubsub": null,
      "tpuQuic": "64.130.59.23:8003",
      "tpuVote": "64.130.59.23:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.23:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.23:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.19.43.141:8001",
      "gossip": "162.19.43.141:8000",
      "pubkey": "25BjV1TR3FbJ2JugHNRgM1PS6xgC5WMjg2ZzASGoaEWw",
      "pubsub": null,
      "tpuQuic": "162.19.43.141:8002",
      "tpuVote": "162.19.43.141:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "162.19.43.141:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.43.141:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.205.122:8002",
      "gossip": "208.115.205.122:8001",
      "pubkey": "EkbJcZ92AZUGA1suNy8icDqf6UR45gKAaxZcGB2NpHWo",
      "pubsub": null,
      "tpuQuic": "208.115.205.122:8003",
      "tpuVote": "208.115.205.122:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.205.122:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.205.122:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.99:8001",
      "gossip": "84.32.103.99:8000",
      "pubkey": "GcjFiJdTMn5fWEpZe93VqRB3AxfJWgj9gTbtRxybgCeG",
      "pubsub": null,
      "tpuQuic": "84.32.103.99:8002",
      "tpuVote": "84.32.103.99:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "84.32.103.99:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.99:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "206.223.226.183:8001",
      "gossip": "206.223.226.183:8000",
      "pubkey": "9AGg7gEMZBwvgpRvCB4MyeGBmoJhgEkfR6x2Q77skSdD",
      "pubsub": null,
      "tpuQuic": "206.223.226.183:8002",
      "tpuVote": "206.223.226.183:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "206.223.226.183:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "206.223.226.183:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.249:8002",
      "gossip": "64.130.63.249:8001",
      "pubkey": "7zFrQru7N2YSgxmQ6HotYrR4vG2wHrZ5FMgVZ3M29GwZ",
      "pubsub": null,
      "tpuQuic": "64.130.63.249:8003",
      "tpuVote": "64.130.63.249:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.249:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.249:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.156:8002",
      "gossip": "64.130.51.156:8001",
      "pubkey": "5VNfVjoCX9qrXwep5aSLMpGCUoo7diiyEnqKuz4AQuYB",
      "pubsub": null,
      "tpuQuic": "64.130.51.156:8003",
      "tpuVote": "64.130.51.156:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.156:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.156:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.120.77:8001",
      "gossip": "67.213.120.77:8000",
      "pubkey": "67fVVX7hZyqENXMGoTYr8VAo9z9xNj6dbiFQy7P3dLQT",
      "pubsub": null,
      "tpuQuic": "67.213.120.77:8002",
      "tpuVote": "67.213.120.77:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.120.77:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.120.77:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.238:8000",
      "pubkey": "5jXPB3RdBa1ZUWuytFRVPN8uaNBTN3UiLAffzPpnyciS",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.189.130.74:8001",
      "gossip": "5.189.130.74:8000",
      "pubkey": "FJZB9tLP1gLufScKsd5dPRFkR68GosVi469gSB3wjAP7",
      "pubsub": null,
      "tpuQuic": "5.189.130.74:8002",
      "tpuVote": "5.189.130.74:8004",
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": "5.189.130.74:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.189.130.74:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.36.173:8001",
      "gossip": "64.130.36.173:8000",
      "pubkey": "B4WdppZGGQXCALb6x9XQyVuM4Cjjwnw3zqstbhrQD86s",
      "pubsub": null,
      "tpuQuic": "64.130.36.173:8002",
      "tpuVote": "64.130.36.173:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.36.173:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.36.173:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.158:8002",
      "gossip": "51.81.30.136:8001",
      "pubkey": "6jF1qKtZtV4nnfYHub6biofsrSkr4F1f67SirYe9fUvh",
      "pubsub": null,
      "tpuQuic": "51.81.30.136:8003",
      "tpuVote": "51.81.30.136:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.30.136:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.30.136:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.138.148:8001",
      "gossip": "198.13.138.148:8000",
      "pubkey": "D79ekUigc5p51oUhVUbGZmzTDm16i93HTu5JEUSmwjS",
      "pubsub": null,
      "tpuQuic": "198.13.138.148:8002",
      "tpuVote": "198.13.138.148:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.138.148:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.138.148:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "45.250.253.116:8000",
      "pubkey": "CAkbAAEqeDfQBQFS2xWT6cBhxRemftYzSJKwiCcsydLJ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "193.118.169.83:8003",
      "gossip": "193.118.169.83:8002",
      "pubkey": "CxX1AnsUMQVEP1XUaG8nHg6RBZguGHPFff6hcVg5th6x",
      "pubsub": null,
      "tpuQuic": "193.118.169.83:8004",
      "tpuVote": "193.118.169.83:8006",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "193.118.169.83:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "193.118.169.83:8005"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.249:8003",
      "gossip": "64.130.33.249:8001",
      "pubkey": "8JUW2FUGxEaxGMbzN47gjqUCEg1AujPHJqsPTicVhX8q",
      "pubsub": null,
      "tpuQuic": "64.130.33.249:9007",
      "tpuVote": "64.130.33.249:9001",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 1429815730,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.249:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.83:8001",
      "gossip": "64.130.54.83:8000",
      "pubkey": "7dsPVr9fLVq5ztuT9BU1zQMwyszkYTXTwq7cGw7NRFAv",
      "pubsub": null,
      "tpuQuic": "64.130.54.83:8002",
      "tpuVote": "64.130.54.83:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.83:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.83:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.185.227.130:8000",
      "gossip": "64.185.227.130:8026",
      "pubkey": "A2jRViNkFfdcK8aN6nUJnswSeaWgSRdgda7rkiFmWeyc",
      "pubsub": null,
      "tpuQuic": "64.185.227.130:8001",
      "tpuVote": "64.185.227.130:8003",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.185.227.130:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.185.227.130:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.225.93:8002",
      "gossip": "74.63.225.93:8001",
      "pubkey": "BAQiHS7dhvgwEu9G8BjakmsEE2Q8c6NZomHwLq9mSym5",
      "pubsub": null,
      "tpuQuic": "74.63.225.93:8003",
      "tpuVote": "74.63.225.93:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.225.93:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.225.93:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.20:8002",
      "gossip": "51.68.149.244:8001",
      "pubkey": "7Zn6myUj6tk8Mb4ZEj77CxysZtYpLirUhQtUhB6GRW3S",
      "pubsub": null,
      "tpuQuic": "51.68.149.244:8003",
      "tpuVote": "51.68.149.244:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.149.244:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.149.244:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.4:8002",
      "gossip": "54.37.114.162:8001",
      "pubkey": "4rXeZcuuMPTVgJdyAYuwqVe9UUfAWxQ3kAcQ5iWoxE5N",
      "pubsub": null,
      "tpuQuic": "54.37.114.162:8003",
      "tpuVote": "54.37.114.162:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.37.114.162:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.37.114.162:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.235:8002",
      "gossip": "5.135.193.210:8001",
      "pubkey": "86K3E9PqDLxJZAp66AxPtQpPVLP4Yr1WZKgEZpkJhy36",
      "pubsub": null,
      "tpuQuic": "5.135.193.210:8003",
      "tpuVote": "5.135.193.210:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.193.210:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.193.210:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.165:8888",
      "gossip": "45.250.253.17:8000",
      "pubkey": "AB2wXYjDebKJJt1swN3u2mDP2jHEvPvTSxkVURjoQDYq",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "50.21.167.147:8000",
      "gossip": "50.21.167.147:8001",
      "pubkey": "H6T3VoA7ChDyZZufrWRZn8TQgBdjUhWEDa3q5ukby7qR",
      "pubsub": null,
      "tpuQuic": "50.21.167.147:8002",
      "tpuVote": "50.21.167.147:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "50.21.167.147:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "50.21.167.147:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.185:8002",
      "gossip": "54.36.227.237:8001",
      "pubkey": "CoiwGrEyf1EFRszmge17UapyNTwDd2NXK2BvKW8E6BcH",
      "pubsub": null,
      "tpuQuic": "54.36.227.237:8003",
      "tpuVote": "54.36.227.237:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.36.227.237:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.36.227.237:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.115.19:18001",
      "gossip": "67.213.115.19:18000",
      "pubkey": "FLsN79urFnvjty7etrtjg5NkkGcru3qhmbMZ2dRETAhC",
      "pubsub": null,
      "tpuQuic": "67.213.115.19:18002",
      "tpuVote": "67.213.115.19:18004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "67.213.115.19:18009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.115.19:18003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.187:8000",
      "pubkey": "CP3EecSzenCPjQzK14PNfX7LaoVinxaQw7RJS6DQBkkX",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.207:8002",
      "gossip": "5.135.168.163:8001",
      "pubkey": "GjmKw4xWfj9YPujfMMyApyAKm7YhmZk5CbS23HDsBhyX",
      "pubsub": null,
      "tpuQuic": "5.135.168.163:8003",
      "tpuVote": "5.135.168.163:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.168.163:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.168.163:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.197:8002",
      "gossip": "208.91.110.197:8001",
      "pubkey": "BTRzeuu1xhdgMdL9M4jbZnGwAFoQhubfo5rREYrPoJwM",
      "pubsub": null,
      "tpuQuic": "208.91.110.197:8003",
      "tpuVote": "208.91.110.197:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "208.91.110.197:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.197:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.137.163:9100",
      "gossip": "198.13.137.163:8001",
      "pubkey": "4oa2FLKqXTkERhTp1LQU7xxWSQgf7cmYh1YLdnYUA6aY",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": "198.13.137.163:9103",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.137.163:9108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.8:8001",
      "gossip": "185.191.117.8:8000",
      "pubkey": "BMtauFKqHMAGy8d8nk7wnPjDZVqXGKArzdiPSFJK3uPK",
      "pubsub": null,
      "tpuQuic": "185.191.117.8:8002",
      "tpuVote": "185.191.117.8:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.8:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.8:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.87.151:8001",
      "gossip": "57.129.87.151:8000",
      "pubkey": "8gcRHSgwm5CV4sTedU6nNYgoDrXmdCR4CHTnj1iX31rn",
      "pubsub": null,
      "tpuQuic": "57.129.87.151:8002",
      "tpuVote": "57.129.87.151:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "57.129.87.151:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.87.151:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.229.123:8002",
      "gossip": "74.63.229.123:8001",
      "pubkey": "8m7RohJYnRkz3GzVyumyYih8ZgUndeaDrArAdLaJc3Vq",
      "pubsub": null,
      "tpuQuic": "74.63.229.123:8003",
      "tpuVote": "74.63.229.123:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.229.123:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.229.123:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.120:8000",
      "pubkey": "57XuqRZXKpuu2wYWFWAyCqSN3iHNegKVm6Wk3TWqW7Rw",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "185.191.117.76:8899",
      "tpu": null,
      "tvu": "185.191.117.76:8001",
      "gossip": "185.191.117.76:8000",
      "pubkey": "HNwMw1rBZ6SehWNHD7vukDU9SyGiEN7wAcmSzYUkKyQG",
      "pubsub": "185.191.117.76:8900",
      "tpuQuic": "185.191.117.76:8009",
      "tpuVote": "185.191.117.76:8005",
      "version": "3.1.12",
      "clientId": "Agave",
      "featureSet": 4140108451,
      "serveRepair": "185.191.117.76:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.76:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.155.79.1:8002",
      "gossip": "38.155.79.1:8001",
      "pubkey": "2YPbUdUvXgY15rC6q3a7S5hVHP9nQswJHPRPVu4MWaDf",
      "pubsub": null,
      "tpuQuic": "38.155.79.1:8003",
      "tpuVote": "38.155.79.1:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "38.155.79.1:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.155.79.1:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.36:8002",
      "gossip": "5.135.173.86:8001",
      "pubkey": "5dEeJAmFaiCrgFPY222fZQVuvprM8rpRp9VJb5gVSMnb",
      "pubsub": null,
      "tpuQuic": "5.135.173.86:8003",
      "tpuVote": "5.135.173.86:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.173.86:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.173.86:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.189:8001",
      "gossip": "70.40.185.189:8000",
      "pubkey": "GMqaPMwFMMLu18uZiUkHtF9KfN44GXkurZao1hYhU7Dw",
      "pubsub": null,
      "tpuQuic": "70.40.185.189:8002",
      "tpuVote": "70.40.185.189:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.189:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.189:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.65:8002",
      "gossip": "176.31.30.23:8001",
      "pubkey": "C9EvArPytNyP9YvNJkwBbDVrRSjt56Kt2cpx2NsnnweF",
      "pubsub": null,
      "tpuQuic": "176.31.30.23:8003",
      "tpuVote": "176.31.30.23:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "176.31.30.23:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "176.31.30.23:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.93:5556",
      "gossip": "45.152.160.93:5555",
      "pubkey": "3wsewfjKigetkrnGDmWEZdjFpho5rAsKK39d6GJSZ5LT",
      "pubsub": null,
      "tpuQuic": "45.152.160.93:5557",
      "tpuVote": "45.152.160.93:5559",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.152.160.93:5564",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.93:5558"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.164.126:8001",
      "gossip": "5.199.164.126:8000",
      "pubkey": "74kshFHQD4itq9M3F3mpW3GPAPsaGkBu5Fyjjt9NURr2",
      "pubsub": null,
      "tpuQuic": "5.199.164.126:8002",
      "tpuVote": "5.199.164.126:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "5.199.164.126:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.164.126:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.252:8002",
      "gossip": "51.255.148.99:8001",
      "pubkey": "CEMFYbTR5qMDcXXvdDwooCEFtjqhNfNpK486hwUvaTFk",
      "pubsub": null,
      "tpuQuic": "51.255.148.99:8003",
      "tpuVote": "51.255.148.99:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.255.148.99:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.255.148.99:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.152:8002",
      "gossip": "51.81.28.194:8001",
      "pubkey": "GpeAzzWfA28W1bVitCJR6r5XCh4uhf5nK6iXmw2jcZZC",
      "pubsub": null,
      "tpuQuic": "51.81.28.194:8003",
      "tpuVote": "51.81.28.194:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.28.194:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.28.194:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "193.29.182.31:8002",
      "gossip": "193.29.182.31:8001",
      "pubkey": "41G5VWnoV8qXJQmry8DwryaMBtXJBXUw3Y3CEGNvFFrv",
      "pubsub": null,
      "tpuQuic": "193.29.182.31:8003",
      "tpuVote": "193.29.182.31:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "193.29.182.31:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "193.29.182.31:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.175:8002",
      "gossip": "64.130.54.175:8001",
      "pubkey": "D8s1hPsZpGfPQqKiTh3ktmN4zxyYAQFhg6Roy8kd3Bsn",
      "pubsub": null,
      "tpuQuic": "64.130.54.175:8003",
      "tpuVote": "64.130.54.175:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.175:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.175:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.169:8002",
      "gossip": "51.81.39.63:8001",
      "pubkey": "5rstvvjgy4XkQF4XNUAqGCZTQVUs4hvnmHZXrhu51cdN",
      "pubsub": null,
      "tpuQuic": "51.81.39.63:8003",
      "tpuVote": "51.81.39.63:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.39.63:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.39.63:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.234:15001",
      "gossip": "64.130.32.234:15000",
      "pubkey": "BkQZS177SNmUGBhk2P7RH8UcFryktxsCg8ZcrhPLRxg1",
      "pubsub": null,
      "tpuQuic": "64.130.32.234:15009",
      "tpuVote": "64.130.32.234:15005",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "64.130.32.234:15012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.234:15010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "8.210.50.129:8000",
      "gossip": "8.210.50.129:8001",
      "pubkey": "GyGXBKgX38gM1nTiuNKhXcTNRGZXcxM1bSepKQERfJYS",
      "pubsub": null,
      "tpuQuic": "8.210.50.129:8009",
      "tpuVote": "8.210.50.129:8005",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "8.210.50.129:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "8.210.50.129:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.4:8002",
      "gossip": "51.68.133.48:8001",
      "pubkey": "5aCSzMrDfCpv5nBcvoxjcMr7bCLVb4VYPNRcfV5Mz1Xg",
      "pubsub": null,
      "tpuQuic": "51.68.133.48:8003",
      "tpuVote": "51.68.133.48:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.133.48:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.133.48:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "168.138.178.145:8001",
      "pubkey": "9qJW7aTjStjq1C9zZQd3mUMD22e71k8YqVyh3wAM522P",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.56:8002",
      "gossip": "137.74.50.2:8001",
      "pubkey": "3xxNJw4hxH1r6FPWLPLUWCuCewMM5qCYatBgCkHU5nWP",
      "pubsub": null,
      "tpuQuic": "137.74.50.2:8003",
      "tpuVote": "137.74.50.2:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "137.74.50.2:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "137.74.50.2:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.201.142:8000",
      "gossip": "208.115.201.142:8801",
      "pubkey": "mtbGRECjoR62WTH1j5czUKJx1XXVi9Fpew7PsntcjHP",
      "pubsub": null,
      "tpuQuic": "208.115.201.142:8001",
      "tpuVote": "208.115.201.142:8003",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "208.115.201.142:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.201.142:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.160:8002",
      "gossip": "51.81.30.138:8001",
      "pubkey": "EzXwcskQTJQrSeswN8oQuwrL1iyh5fYWxewbtHawxssv",
      "pubsub": null,
      "tpuQuic": "51.81.30.138:8003",
      "tpuVote": "51.81.30.138:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.30.138:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.30.138:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.155:8888",
      "gossip": "198.13.141.59:8000",
      "pubkey": "AipMXR1gym9queUxcEeFra9crVUPGeKSGmHP5yxGoNMj",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.252.220.90:8002",
      "gossip": "185.252.220.90:8001",
      "pubkey": "8FTATmyZ6uAeTFuBDaiSRwDoRjsKLR9SzJroPCHh6yB5",
      "pubsub": null,
      "tpuQuic": "185.252.220.90:8003",
      "tpuVote": "185.252.220.90:8005",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "185.252.220.90:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.252.220.90:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.54.153.249:8003",
      "gossip": "86.54.153.249:8001",
      "pubkey": "CitUYaP7dN46Ve49TWoZDami97imS3aDFe8zZfx1N4QC",
      "pubsub": null,
      "tpuQuic": "86.54.153.249:8037",
      "tpuVote": "86.54.153.249:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "86.54.153.249:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.54.153.249:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "8.221.139.110:8001",
      "gossip": "8.221.139.110:8000",
      "pubkey": "3x2EkB2QsXppUC81iyqqh3mKxn9tp2ibk4U8vDz7srBG",
      "pubsub": null,
      "tpuQuic": "8.221.139.110:8002",
      "tpuVote": "8.221.139.110:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "8.221.139.110:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "8.221.139.110:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.39:8002",
      "gossip": "51.77.35.91:8001",
      "pubkey": "DodpMk7y1i3zYueMKQGHFZpUg9NbneZUSwJHnX4icTPn",
      "pubsub": null,
      "tpuQuic": "51.77.35.91:8003",
      "tpuVote": "51.77.35.91:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.77.35.91:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.77.35.91:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.34:8001",
      "gossip": "198.13.134.34:8000",
      "pubkey": "BdhJKfbDidKhwBq6SdDsjXf8udX3TNizw7wMnhA4Dv8V",
      "pubsub": null,
      "tpuQuic": "198.13.134.34:8002",
      "tpuVote": "198.13.134.34:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.34:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.34:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.48.186:8002",
      "gossip": "64.31.48.186:8001",
      "pubkey": "DKXgQ4EFtGMy421LWyYHpH8gpBxJmLSD81Q6H5GX5iav",
      "pubsub": null,
      "tpuQuic": "64.31.48.186:8003",
      "tpuVote": "64.31.48.186:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.48.186:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.48.186:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.164:8001",
      "gossip": "208.91.110.164:8000",
      "pubkey": "3KSDSS2TpAvY8TQKf3TQ7366uE32MLdXZDpvVCkFYFuq",
      "pubsub": null,
      "tpuQuic": "208.91.110.164:8002",
      "tpuVote": "208.91.110.164:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.164:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.164:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.173:8888",
      "gossip": "45.250.253.57:8000",
      "pubkey": "DuDrZBXYacxXXMAHEyaUPgqg7dtNwCSANFiZ9mqgYDB4",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.168:8002",
      "gossip": "51.75.164.180:8001",
      "pubkey": "3P6RgRg1XUbJbbfVNjqmDMzadNB8TpaZj2hF8A5JAMF3",
      "pubsub": null,
      "tpuQuic": "51.75.164.180:8003",
      "tpuVote": "51.75.164.180:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.75.164.180:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.75.164.180:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.52.174:8002",
      "gossip": "64.31.52.174:8001",
      "pubkey": "53jnMFrrMqY9zp6Uk9WVpuFmk9qkB2kQ6FhBkSPeHADA",
      "pubsub": null,
      "tpuQuic": "64.31.52.174:8003",
      "tpuVote": "64.31.52.174:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.52.174:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.52.174:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.150:8002",
      "gossip": "51.81.28.192:8001",
      "pubkey": "2STxdxksGsYSsQJNze66yKDxD1CYUBryS8FvM32Sr1Zy",
      "pubsub": null,
      "tpuQuic": "51.81.28.192:8003",
      "tpuVote": "51.81.28.192:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.28.192:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.28.192:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "54.183.134.94:8000",
      "pubkey": "C3fK2Lh6Jqb15aJjEue2Jfj51WTsPAXwY2eQ8XXTeawH",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.142.74:8002",
      "gossip": "74.118.142.74:8001",
      "pubkey": "He6jbyyrsgJAwYkkWDcxPzfctmD5zhCbEtNyVhTyAVPp",
      "pubsub": null,
      "tpuQuic": "74.118.142.74:8003",
      "tpuVote": "74.118.142.74:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.142.74:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.142.74:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.12:8888",
      "gossip": "198.13.140.173:8000",
      "pubkey": "89HfLWMd293oKU2uorMXZaz7FW8o8Mfnn92ykEN9kpoj",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.169:8888",
      "gossip": "45.250.253.48:8000",
      "pubkey": "GUQ3f5pTJ1h5TCftKWZMrtCVWFqH4NLuohG1M57zK3Uo",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.201.63:8002",
      "gossip": "208.115.201.63:8001",
      "pubkey": "7r18TFRGRZb19awvcoRNN2xSbDQwovevADcWBnZAhW81",
      "pubsub": null,
      "tpuQuic": "208.115.201.63:8003",
      "tpuVote": "208.115.201.63:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.201.63:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.201.63:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.230:8000",
      "pubkey": "J4jzWVtx2Q96H6nFnwhfMR2DBnWU4p2VfBvFKLZzd8Kn",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.207.214.232:8001",
      "gossip": "84.207.214.232:8000",
      "pubkey": "74FVXebMUU5jgQGqPrfpWJghwBp5mscdGAU2KF1iXgk5",
      "pubsub": null,
      "tpuQuic": "84.207.214.232:8002",
      "tpuVote": "84.207.214.232:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "84.207.214.232:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.207.214.232:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.111:8000",
      "pubkey": "ANaYWoQB5bCJTdieYRtxez2inFtfnCZFxmUpVRCEyt6S",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "170.9.28.195:8001",
      "pubkey": "r35YnSK3JdwYAGHeuVYpBGwsiVyzyegJzCoxVVG4MtP",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.181:8001",
      "gossip": "64.130.40.181:8000",
      "pubkey": "GyWpkouuAJ3kcYdV3MrDFjvLNyy42WkDneGyTSCtUwqZ",
      "pubsub": null,
      "tpuQuic": "64.130.40.181:8002",
      "tpuVote": "64.130.40.181:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.40.181:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.181:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.249:8002",
      "gossip": "51.255.148.96:8001",
      "pubkey": "Hkgo3UzNYGcyde5wjh61MWoknNWbPLUBkMd6FqHBGYyX",
      "pubsub": null,
      "tpuQuic": "51.255.148.96:8003",
      "tpuVote": "51.255.148.96:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.255.148.96:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.255.148.96:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.211.234.220:8002",
      "gossip": "88.211.234.220:8001",
      "pubkey": "G6UBgntzcqy3K8ehGmWDMzEnN99h8Y74jDkRE9EiAgvM",
      "pubsub": null,
      "tpuQuic": "88.211.234.220:8003",
      "tpuVote": "88.211.234.220:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "88.211.234.220:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.211.234.220:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "92.205.32.91:8001",
      "gossip": "92.205.32.91:8000",
      "pubkey": "DNxA1JfLR4bJ2uJQfdn6UK4so8A8Ezp4z497EwTfd1R3",
      "pubsub": null,
      "tpuQuic": "92.205.32.91:8002",
      "tpuVote": "92.205.32.91:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "92.205.32.91:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "92.205.32.91:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.87:8000",
      "pubkey": "7mRQZaMh6VVLbbwsHMXyXqTphBPdZCfe65jn6YVJ7Z5N",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.196:8888",
      "gossip": "63.254.169.20:8000",
      "pubkey": "8WkJf3Jv3nyAUBodYftsw12Qz5ZoZQgc89u6tFrCjRaS",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.103:8002",
      "gossip": "51.89.25.155:8001",
      "pubkey": "3osKdm6Ho5KFg5tpQZGAxWzv9onCSbtugms9EGLisPgS",
      "pubsub": null,
      "tpuQuic": "51.89.25.155:8003",
      "tpuVote": "51.89.25.155:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.155:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.155:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.188:8002",
      "gossip": "15.204.20.178:8001",
      "pubkey": "AzL4bqekcqhPXHrQEuVThwdpwHRQYhGyTubNL1oD9hti",
      "pubsub": null,
      "tpuQuic": "15.204.20.178:8003",
      "tpuVote": "15.204.20.178:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "15.204.20.178:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.20.178:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.33:8002",
      "gossip": "51.75.32.61:8001",
      "pubkey": "5YCK7o1TT1Nsh5sqoogc5LSMr2eRKedKUbfZ87uAAf1b",
      "pubsub": null,
      "tpuQuic": "51.75.32.61:8003",
      "tpuVote": "51.75.32.61:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.75.32.61:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.75.32.61:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.58:8000",
      "gossip": "64.130.40.58:8001",
      "pubkey": "5VW96RY2oRwNrSjUq2UxtvDgv5qh4HSNJMssuuyGrmji",
      "pubsub": null,
      "tpuQuic": "64.130.40.58:8002",
      "tpuVote": "64.130.40.58:8004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "64.130.40.58:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.58:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.227:8002",
      "gossip": "5.135.193.158:8001",
      "pubkey": "J4Gckrmuj3PHCEBFNY1vB7NNe9BmXBPLBAySVqxspRXH",
      "pubsub": null,
      "tpuQuic": "5.135.193.158:8003",
      "tpuVote": "5.135.193.158:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.193.158:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.193.158:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.25:8002",
      "gossip": "51.75.32.13:8001",
      "pubkey": "FvGzzaZNi99qfVUfVWTq2KNpaHnUVhRvsbuzJSQ6Evvy",
      "pubsub": null,
      "tpuQuic": "51.75.32.13:8003",
      "tpuVote": "51.75.32.13:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.75.32.13:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.75.32.13:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.83.161:8000",
      "pubkey": "Af4xou5sybf8Wv9hBtWfb2vdqBNRVa15TKQqSPxkXBMv",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.173:8001",
      "gossip": "198.13.141.173:8000",
      "pubkey": "BfYq5WnqgsHey4KgsHGQmERDHfwGj687PDFR67s4263t",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.137:8001",
      "gossip": "64.130.44.137:8000",
      "pubkey": "FKkiuUi84HxpaEcuHWGp8BG5HHNhbKCpfjJThzNwS1Nr",
      "pubsub": null,
      "tpuQuic": "64.130.44.137:8002",
      "tpuVote": "64.130.44.137:8004",
      "version": "4.0.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.44.137:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.137:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.93:8001",
      "gossip": "64.130.42.93:8000",
      "pubkey": "4vh8xegSxHQ1cZn4Ua7P8PjYpm5U2YqXc8UbhRrcdmHA",
      "pubsub": null,
      "tpuQuic": "64.130.42.93:8002",
      "tpuVote": "64.130.42.93:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.42.93:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.93:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.149:8888",
      "gossip": "198.13.141.53:8000",
      "pubkey": "E5GhzaBLFZmRcbFpHGVvpdD59SVxYEmy8ERcyVVCutkH",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.142.204:8002",
      "gossip": "74.118.142.204:8001",
      "pubkey": "HhP4tohmSi9Lkd2UjJEBz9oTdaTa5tZNerJqTjMpLXLq",
      "pubsub": null,
      "tpuQuic": "74.118.142.204:8003",
      "tpuVote": "74.118.142.204:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.142.204:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.142.204:8004"
    },
    {
      "rpc": "195.12.227.249:8899",
      "tpu": null,
      "tvu": "195.12.227.249:8001",
      "gossip": "195.12.227.249:8000",
      "pubkey": "DZNVxSs9KiXhaXM9ofsc4w9QAzKoTMWYmzA7xfvA4tSA",
      "pubsub": "195.12.227.249:8900",
      "tpuQuic": "195.12.227.249:8002",
      "tpuVote": "195.12.227.249:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "195.12.227.249:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "195.12.227.249:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.165.45:8001",
      "gossip": "5.199.165.45:8000",
      "pubkey": "4uP74T2hNV7XjBGtd4TtCi8qvovZ35F79M4oz5nK1xvG",
      "pubsub": null,
      "tpuQuic": "5.199.165.45:8002",
      "tpuVote": "5.199.165.45:8004",
      "version": "4.0.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.199.165.45:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.165.45:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.63:8002",
      "gossip": "145.239.18.171:8001",
      "pubkey": "A7HnsVEeCjRYeJZQxDJXirxVqsVdifVFH5vrCiPSL1k7",
      "pubsub": null,
      "tpuQuic": "145.239.18.171:8003",
      "tpuVote": "145.239.18.171:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "145.239.18.171:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "145.239.18.171:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.174:8002",
      "gossip": "64.130.47.174:8001",
      "pubkey": "7XRFKcePvbC8F6nnULcnf9yEitEhxfeMzmGeD2324Zps",
      "pubsub": null,
      "tpuQuic": "64.130.47.174:8003",
      "tpuVote": "64.130.47.174:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.47.174:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.174:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.249.131:8002",
      "gossip": "208.115.249.131:8001",
      "pubkey": "3uAcL6X3sEtzWft8JMf7PNGhvmafX2UuipPrpUTU6ErR",
      "pubsub": null,
      "tpuQuic": "208.115.249.131:8003",
      "tpuVote": "208.115.249.131:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.249.131:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.249.131:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.96.119:8001",
      "gossip": "109.94.96.119:8000",
      "pubkey": "6fQ3JU6xtJ7QJ3KsKzTtpVtF76siYHQ2tvus9gYTSReX",
      "pubsub": null,
      "tpuQuic": "109.94.96.119:8002",
      "tpuVote": "109.94.96.119:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.94.96.119:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.96.119:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.71:8000",
      "pubkey": "59Qk64zD37DyqRoeEAZUkJHkCyHMoPAACaRreFFx2iVR",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "37.72.171.14:8001",
      "gossip": "37.72.171.14:8000",
      "pubkey": "B1nPbPJPduTqahGk4RyVkeVMyoMS6xB479PbDq1noPir",
      "pubsub": null,
      "tpuQuic": "37.72.171.14:8002",
      "tpuVote": "37.72.171.14:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "37.72.171.14:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "37.72.171.14:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.147:8000",
      "pubkey": "EJzJr4ETWFAMvBjN1V4vcnS9zzvcu87jQFnukytnBm1E",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.164:8000",
      "pubkey": "HN3twCvEtt7q8KbnrDNDjcdedzUY6ziTKmYLXCbFjUse",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "67.213.123.112:8000",
      "pubkey": "FT4NsshpJUEupcnXwaUqrFv9hYLvgDBMWtGapVyeSXBz",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "54.167.183.137:8000",
      "gossip": "54.167.183.137:8001",
      "pubkey": "9UxpkxfMNxaeWev9WkHBBcUgCbSZ2uk1YxjsAVJEc6fF",
      "pubsub": null,
      "tpuQuic": "54.167.183.137:8002",
      "tpuVote": "54.167.183.137:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "54.167.183.137:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.167.183.137:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.73:8000",
      "pubkey": "2F5ABq7UM1Xw27CpACeMegjmi1LGSevpp7VYpTN3pZSy",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.74:8001",
      "gossip": "198.13.130.74:8000",
      "pubkey": "GcHVvdxZRBGAEh2orcSg6LeG8zyMfAj1h2ZhnoeuENRZ",
      "pubsub": null,
      "tpuQuic": "198.13.130.74:8002",
      "tpuVote": "198.13.130.74:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.130.74:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.74:8003"
    },
    {
      "rpc": "198.13.134.32:8899",
      "tpu": null,
      "tvu": "198.13.134.32:8001",
      "gossip": "198.13.134.32:8000",
      "pubkey": "ATP499oCEAQiDbpBAdGdZR2ckD32bTJVkzqmuqPHuMXz",
      "pubsub": "198.13.134.32:8900",
      "tpuQuic": "198.13.134.32:8002",
      "tpuVote": "198.13.134.32:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.134.32:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.32:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.131:8002",
      "gossip": "64.130.47.131:8001",
      "pubkey": "mcs4xJbgSG9wyPCTkP4a4hzEhyK2C4PZ76HoYAV9H84",
      "pubsub": null,
      "tpuQuic": "64.130.47.131:8003",
      "tpuVote": "64.130.47.131:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.47.131:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.131:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.217:8002",
      "gossip": "51.81.250.85:8001",
      "pubkey": "2UWDFZkNXLwott4YshW5ak9uBWxMtk9yKoCAQbjH2Qgp",
      "pubsub": null,
      "tpuQuic": "51.81.250.85:8003",
      "tpuVote": "51.81.250.85:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.250.85:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.250.85:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.173:8002",
      "gossip": "51.77.102.101:8001",
      "pubkey": "C89u85PGhhKXKvPeDPTpnDhDyFqksGspRhgy39G8YW41",
      "pubsub": null,
      "tpuQuic": "51.77.102.101:8003",
      "tpuVote": "51.77.102.101:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.77.102.101:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.77.102.101:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.144:8002",
      "gossip": "51.38.85.16:8001",
      "pubkey": "BC784S6LQ4fjHQidSj8c74QGj2bDjhNvjBP6m4YSY2hc",
      "pubsub": null,
      "tpuQuic": "51.38.85.16:8003",
      "tpuVote": "51.38.85.16:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.85.16:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.85.16:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.153:8002",
      "gossip": "64.130.47.153:8001",
      "pubkey": "BHLcCG3FUbxNc5z2svmTsKceKaT3CT8RthEESnkGyVbd",
      "pubsub": null,
      "tpuQuic": "64.130.47.153:8003",
      "tpuVote": "64.130.47.153:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.47.153:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.153:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "103.219.168.151:8000",
      "pubkey": "9f4P8iZCXMMLSBsLR1XsRKLffzSTEPEBBbRk5Dgrb554",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.54:8002",
      "gossip": "64.130.49.54:8001",
      "pubkey": "8eDHMfuPSsHK3MqndpiRoHb4YAfg2xe5KPD5A99ERAJh",
      "pubsub": null,
      "tpuQuic": "64.130.49.54:8003",
      "tpuVote": "64.130.49.54:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.49.54:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.54:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.112:8002",
      "gossip": "51.222.167.242:8001",
      "pubkey": "2dvRJY4gRdXnxcnDqDf8Vdt8MPagPaQHrFabf2GjcdQY",
      "pubsub": null,
      "tpuQuic": "51.222.167.242:8003",
      "tpuVote": "51.222.167.242:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.167.242:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.167.242:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.30:8002",
      "gossip": "5.135.171.184:8001",
      "pubkey": "AoqM6fYE9auadG5GyNahae3wFxaYE49VUqVR7WfQTNVW",
      "pubsub": null,
      "tpuQuic": "5.135.171.184:8003",
      "tpuVote": "5.135.171.184:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.171.184:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.171.184:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.16:8002",
      "gossip": "202.8.11.16:8001",
      "pubkey": "GoAJzsHdtXaPMwzsa64Koq9uvda2LcnUYyjhJCTFUCnE",
      "pubsub": null,
      "tpuQuic": "202.8.11.16:8003",
      "tpuVote": "202.8.11.16:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.16:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.16:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.24:8002",
      "gossip": "51.75.32.12:8001",
      "pubkey": "6WQSLuZGXSpR2G7xFvK12aFg9f6A7gPGM1rga5dg9KwA",
      "pubsub": null,
      "tpuQuic": "51.75.32.12:8003",
      "tpuVote": "51.75.32.12:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.75.32.12:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.75.32.12:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.139:8001",
      "gossip": "202.8.11.139:8000",
      "pubkey": "E6uScYc1Aoxy1y3HoD2yMcc1iwdjqoKFH2FvnQQFj9SV",
      "pubsub": null,
      "tpuQuic": "202.8.11.139:8002",
      "tpuVote": "202.8.11.139:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "202.8.11.139:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.139:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.247.210:8002",
      "gossip": "204.16.247.210:8001",
      "pubkey": "BqqXVMLmb7xMj7haFqnfDQRnMD75JT1vvJacDxHWQoCH",
      "pubsub": null,
      "tpuQuic": "204.16.247.210:8003",
      "tpuVote": "204.16.247.210:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "204.16.247.210:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.247.210:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.90.4:8001",
      "gossip": "57.129.90.4:8000",
      "pubkey": "AfRk37yyZMhmutzJoN1r6fGJYfvkb3utzCvbrfw37Lx8",
      "pubsub": null,
      "tpuQuic": "57.129.90.4:11228",
      "tpuVote": "57.129.90.4:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "57.129.90.4:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.90.4:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.175:8888",
      "gossip": "45.250.253.62:8000",
      "pubkey": "BGN7c3U54MSNzk1VpEKoyCvb7pjJZRSyqf16AZpiwULt",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.72:8002",
      "gossip": "213.32.63.26:8001",
      "pubkey": "9A1uMHL2czhXhpgiaFEVXmvyTVToxt35RQbS1bAHQ7P",
      "pubsub": null,
      "tpuQuic": "213.32.63.26:8003",
      "tpuVote": "213.32.63.26:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "213.32.63.26:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "213.32.63.26:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "168.119.192.126:8001",
      "gossip": "168.119.192.126:8000",
      "pubkey": "5neifM1Q6SoCjSiq2KM7G9bXTPL5RKBwREDdF9Sz6FMx",
      "pubsub": null,
      "tpuQuic": "168.119.192.126:8009",
      "tpuVote": "168.119.192.126:8005",
      "version": "3.1.9",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "168.119.192.126:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "168.119.192.126:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.23:8001",
      "gossip": "64.130.63.23:8000",
      "pubkey": "E58rmYjknyDGtDPwrbxYeE2VGT77NP2aqwsKvaxeTVSV",
      "pubsub": null,
      "tpuQuic": "64.130.63.23:8002",
      "tpuVote": "64.130.63.23:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "64.130.63.23:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.23:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.36:8888",
      "gossip": "198.13.136.196:8000",
      "pubkey": "8QyQdKf23Jj6hjBMvfNjz8GwK5rLHRFaximKf3FtT7EE",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.230:8002",
      "gossip": "51.81.171.0:8001",
      "pubkey": "2XkZgxpaHMAGYfgRgpx3oj4NkMXtLTJtRWJ5UjFrN5in",
      "pubsub": null,
      "tpuQuic": "51.81.171.0:8003",
      "tpuVote": "51.81.171.0:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.171.0:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.171.0:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.129:8888",
      "gossip": "198.13.141.33:8000",
      "pubkey": "ASE9A5CSBhAXTxXnc12f1HvRfmcLAkZ9CxauammG5ePY",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "84.32.186.43:8899",
      "tpu": null,
      "tvu": "84.32.186.43:8000",
      "gossip": "84.32.186.43:8001",
      "pubkey": "7c5tYiL9CpVp7LLMuBP5wFkBmL5ArqBAeNXY6NssASJk",
      "pubsub": "84.32.186.43:8900",
      "tpuQuic": "84.32.186.43:8002",
      "tpuVote": "84.32.186.43:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "84.32.186.43:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.186.43:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.60:8002",
      "gossip": "151.80.89.218:8001",
      "pubkey": "9S6QbX4HkgTKsHv4juz8aTNp7w4iLbQ9G8A8LhUpEruh",
      "pubsub": null,
      "tpuQuic": "151.80.89.218:8003",
      "tpuVote": "151.80.89.218:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "151.80.89.218:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "151.80.89.218:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.189:8000",
      "pubkey": "3TAb5y1LEV3HqNvkgE1z4TFryCTFAiaSM8GEQrT1Ct2o",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.137.169:8001",
      "gossip": "198.13.137.169:8000",
      "pubkey": "9ceZejb3R9yXHPa33JNL4urojnJCWNLKB48mrDnjPbmK",
      "pubsub": null,
      "tpuQuic": "198.13.137.169:8002",
      "tpuVote": "198.13.137.169:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.137.169:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.137.169:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.55:8002",
      "gossip": "198.13.130.55:8001",
      "pubkey": "3WZdvBo6XcaHLorGmURzFAYAxjWgiTdsAeLDiR81dUJy",
      "pubsub": null,
      "tpuQuic": "198.13.130.55:8003",
      "tpuVote": "198.13.130.55:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.55:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.55:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.56:8002",
      "gossip": "54.38.48.188:8001",
      "pubkey": "7c9DKBWVD7Z7caJL49M7TGRdDm4p49VJF3CmrqeUG3hD",
      "pubsub": null,
      "tpuQuic": "54.38.48.188:8003",
      "tpuVote": "54.38.48.188:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.38.48.188:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.38.48.188:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.250.254.185:8001",
      "gossip": "45.250.254.185:8000",
      "pubkey": "CgZuELccVD3XVZzYwefGaMBcTfztXmZmgk8rm1LePW13",
      "pubsub": null,
      "tpuQuic": "45.250.254.185:8002",
      "tpuVote": "45.250.254.185:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "45.250.254.185:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.250.254.185:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.157:8003",
      "gossip": "64.130.37.157:8001",
      "pubkey": "4S1ZqJ5KU4kyJUvtoVzE3y42G2dMLWXEPyhhUvizEZ1Q",
      "pubsub": null,
      "tpuQuic": "64.130.37.157:8037",
      "tpuVote": "64.130.37.157:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.157:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.157:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.35:8002",
      "gossip": "64.31.54.35:8001",
      "pubkey": "D5V4mwaRUjpbo2ZqJGzgYfMWbcn1MGcGcbgTdFr2R2Ft",
      "pubsub": null,
      "tpuQuic": "64.31.54.35:8003",
      "tpuVote": "64.31.54.35:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.35:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.35:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.231:8002",
      "gossip": "51.81.171.1:8001",
      "pubkey": "81ebCgBq2r4MBYhDorB2NWeXehiwayJYaX4RWttXpFq4",
      "pubsub": null,
      "tpuQuic": "51.81.171.1:8003",
      "tpuVote": "51.81.171.1:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.171.1:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.171.1:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.161:8002",
      "gossip": "51.68.202.157:8001",
      "pubkey": "3JuKpLSMEfo3aMwowm43UWc6o8QeT1W5Fxv225mkjsSF",
      "pubsub": null,
      "tpuQuic": "51.68.202.157:8003",
      "tpuVote": "51.68.202.157:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.202.157:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.202.157:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.34.16:8002",
      "gossip": "64.130.34.16:8001",
      "pubkey": "515dAwr7EdHMMdEAmvZMJxKemYGnfExMCb8cqYoCmSt7",
      "pubsub": null,
      "tpuQuic": "64.130.34.16:8003",
      "tpuVote": "64.130.34.16:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.34.16:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.34.16:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.113:8001",
      "gossip": "202.8.11.113:8000",
      "pubkey": "8AWBhfCGeKEgov3Uo7KAVV88n7BgtuBTBZBe1Bqkpi46",
      "pubsub": null,
      "tpuQuic": "202.8.11.113:8002",
      "tpuVote": "202.8.11.113:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.113:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.113:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "35.93.147.98:37001",
      "gossip": "35.93.147.98:37000",
      "pubkey": "HRAHm9bZta4ri5KxEnFNDiXPFrfYzA9s5CrUZnHLXnPn",
      "pubsub": null,
      "tpuQuic": "35.93.147.98:37002",
      "tpuVote": "35.93.147.98:37004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "35.93.147.98:37009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "35.93.147.98:37003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.60:8888",
      "gossip": "198.13.133.44:8000",
      "pubkey": "4HMBQT8WjBKX46v4yodjjZFiJzXwQkrWYYAC83ahQZQf",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.170:8002",
      "gossip": "64.130.50.170:8001",
      "pubkey": "5gZtnHvUtTiiZL78ivGZFn4tQphG5tUFHApJRnbDxR3B",
      "pubsub": null,
      "tpuQuic": "64.130.50.170:8003",
      "tpuVote": "64.130.50.170:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.170:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.170:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.63:8000",
      "pubkey": "13AiL6nqePpEXAQ9AgHiaQciZ8aWEP21ruLauDJnsT5p",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.70:8002",
      "gossip": "51.89.17.30:8001",
      "pubkey": "756bPco39G2WmMNYQaqwwoB5nAAGNzvkSmE7GQSsbmMs",
      "pubsub": null,
      "tpuQuic": "51.89.17.30:8003",
      "tpuVote": "51.89.17.30:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.17.30:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.17.30:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.137:8002",
      "gossip": "51.38.67.29:8001",
      "pubkey": "CNZAJvGJCokXa1Y6QxLpmaV9M6zjgXTXw2PtKatFLLpM",
      "pubsub": null,
      "tpuQuic": "51.38.67.29:8003",
      "tpuVote": "51.38.67.29:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.67.29:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.67.29:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.216:8002",
      "gossip": "51.81.232.227:8001",
      "pubkey": "WPo8BuUyxwCCxy8HyNCkNKyRnme1AmK8Psks85te9mL",
      "pubsub": null,
      "tpuQuic": "51.81.232.227:8003",
      "tpuVote": "51.81.232.227:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.232.227:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.232.227:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.163:8001",
      "gossip": "64.130.33.163:8000",
      "pubkey": "EbCKWDbT6yUapV5q3jeFxKyZfaHFJxQJxZmkakZWehSV",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-beta.1",
      "clientId": "JitoLabs",
      "featureSet": 713536442,
      "serveRepair": "64.130.33.163:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.38.13:8002",
      "gossip": "208.91.109.56:8001",
      "pubkey": "AuvyE896WvHwU3Nx8VchedUwmsAosnzJX3J6Snzhq2aL",
      "pubsub": null,
      "tpuQuic": "208.91.109.56:8002",
      "tpuVote": "208.91.109.56:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "208.91.109.56:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.56:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.54.52:9001",
      "gossip": "67.209.54.52:9000",
      "pubkey": "J7knN8T1zGtbm3epA7Edp8GBKdq9AzrEeKK4dwFf8aP7",
      "pubsub": null,
      "tpuQuic": "67.209.54.52:9002",
      "tpuVote": "67.209.54.52:9004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.209.54.52:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.54.52:9003"
    },
    {
      "rpc": "64.130.33.132:8899",
      "tpu": null,
      "tvu": "64.130.33.132:8001",
      "gossip": "64.130.33.132:8000",
      "pubkey": "C6wW5axKtGk5zKrkGWRyxCnPSF2z6xHBNmjXVQq5WE6V",
      "pubsub": "64.130.33.132:8900",
      "tpuQuic": "64.130.33.132:8002",
      "tpuVote": "64.130.33.132:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.33.132:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.132:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.32.88.29:8900",
      "gossip": "45.32.88.29:8001",
      "pubkey": "Fy7RCjDdFLG8wLn7TBKbccaKwYX1FetdSoVDREdUHf5o",
      "pubsub": null,
      "tpuQuic": "64.130.58.117:5010",
      "tpuVote": "45.32.88.29:8903",
      "version": "4.0.3",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "45.32.88.29:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.117:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.130:8001",
      "gossip": "64.130.49.130:8000",
      "pubkey": "FhGV2wCmQBGrmwQSJoGaYKma7VFkmzx7zA6sasYyyJ1m",
      "pubsub": null,
      "tpuQuic": "64.130.49.130:8002",
      "tpuVote": "64.130.49.130:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.49.130:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.130:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.57:8888",
      "gossip": "198.13.133.41:8000",
      "pubkey": "9D2txTa7rLwFFsTsU24zn4V9MosZJdMMJyB4wbz8MftZ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.93:8002",
      "gossip": "51.222.162.51:8001",
      "pubkey": "9XuUuMmYQvvSLdtoVirdrn9SSKrE4dkQbQEhCEVCsr8r",
      "pubsub": null,
      "tpuQuic": "51.222.162.51:8003",
      "tpuVote": "51.222.162.51:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.51:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.51:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.165.8:8001",
      "gossip": "5.199.165.8:8000",
      "pubkey": "3LSShJfu3kTywgTqpPhAxJsHek9qHPDbkPW8R6Gtty1g",
      "pubsub": null,
      "tpuQuic": "5.199.165.8:8002",
      "tpuVote": "5.199.165.8:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "5.199.165.8:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.165.8:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.229:9002",
      "gossip": "64.130.32.229:9001",
      "pubkey": "5PrbKuY6g6GLwvZntDjWY6a8LCn6V9cpC7G5XAKmADPJ",
      "pubsub": null,
      "tpuQuic": "64.130.32.229:9003",
      "tpuVote": "64.130.32.229:9005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.32.229:9010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.229:9004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.183:8000",
      "pubkey": "6AjucWFnvh9EJSm6XAqRbmEKNnznRByhWTJB8EPpdxyS",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "95.214.53.80:8900",
      "gossip": "95.214.53.80:8001",
      "pubkey": "jVfsPntWc3KurVcgE1rJMamorwZdGrG2EvEJKh8Lgrh",
      "pubsub": null,
      "tpuQuic": "95.214.53.80:8901",
      "tpuVote": "95.214.53.80:8903",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "95.214.53.80:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "95.214.53.80:8902"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "80.251.153.177:8001",
      "gossip": "80.251.153.177:8000",
      "pubkey": "DaPFjMasmpDbZwy9U7Xdt1bash2zR6AezYBTdBK44uz1",
      "pubsub": null,
      "tpuQuic": "80.251.153.177:8002",
      "tpuVote": "80.251.153.177:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "80.251.153.177:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "80.251.153.177:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.156:8002",
      "gossip": "51.68.192.0:8001",
      "pubkey": "CuGxac7w56FkPY3eV2QbLy6UfV4fk4YajGKWuPEK63ip",
      "pubsub": null,
      "tpuQuic": "51.68.192.0:8003",
      "tpuVote": "51.68.192.0:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.192.0:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.192.0:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.76.50.84:8000",
      "gossip": "47.76.50.84:8001",
      "pubkey": "6aJVMquBgAjNZ3HCwhkMrFwSuYuM69qdzANodmgU3QXG",
      "pubsub": null,
      "tpuQuic": "47.76.50.84:8002",
      "tpuVote": "47.76.50.84:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "47.76.50.84:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "47.76.50.84:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.107.19:8002",
      "gossip": "208.91.107.19:8001",
      "pubkey": "ArDpc7ECM7uCgE7oxnf2aiXF8iQ7S6RHf7Y8NhHRt7rZ",
      "pubsub": null,
      "tpuQuic": "208.91.107.19:8003",
      "tpuVote": "208.91.107.19:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.107.19:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.107.19:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.163.116:9001",
      "gossip": "63.254.163.116:9000",
      "pubkey": "2RX5gxW3ANMRSwMsBENWSuq5xBDDFyfW8pzd1FMkqn97",
      "pubsub": null,
      "tpuQuic": "63.254.163.116:9002",
      "tpuVote": "63.254.163.116:9004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "63.254.163.116:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.163.116:9003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.26:8002",
      "gossip": "5.135.126.172:8001",
      "pubkey": "Hri4dvuQLsQ6zyFeJyhcFYPEUbqG8YpWhRn8uqM8jrsa",
      "pubsub": null,
      "tpuQuic": "5.135.126.172:8003",
      "tpuVote": "5.135.126.172:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.126.172:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.126.172:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.202:8001",
      "gossip": "208.91.110.202:8000",
      "pubkey": "8oAyvdyWASSahaD6S6cTmHLegykKCZZtAWnLcKnnWHZB",
      "pubsub": null,
      "tpuQuic": "208.91.110.202:8002",
      "tpuVote": "208.91.110.202:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.202:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.202:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.50:8888",
      "gossip": "198.13.133.34:8000",
      "pubkey": "3mFBSVZxS6BBw8dD6DEmUo2K2X87aSDkRp5yqFkGkV8v",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "15.235.225.244:22222",
      "tpu": null,
      "tvu": "15.235.225.244:8001",
      "gossip": "15.235.225.244:8000",
      "pubkey": "J53CHBouRrp6ZGmvpdazkupcTi3VpR6zB9iNmGQNKUUu",
      "pubsub": "15.235.225.244:22223",
      "tpuQuic": "15.235.225.244:8002",
      "tpuVote": "15.235.225.244:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "15.235.225.244:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.235.225.244:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.8.114:8002",
      "gossip": "202.8.8.114:8001",
      "pubkey": "89vQQaLk8V6mRobhMUjm46PHHPCSEr94qiarAbAj7fhy",
      "pubsub": null,
      "tpuQuic": "202.8.8.114:8003",
      "tpuVote": "202.8.8.114:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.8.114:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.8.114:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.50.164.87:8001",
      "gossip": "38.50.164.87:8000",
      "pubkey": "46zY585UbTVYZpJdAcd9m3EDiEKqMxXvo5t8Kp5rUh32",
      "pubsub": null,
      "tpuQuic": "38.50.164.87:8002",
      "tpuVote": "38.50.164.87:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "38.50.164.87:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.50.164.87:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.196:8100",
      "gossip": "64.130.32.196:8001",
      "pubkey": "44ZzL4LSxVj8gh4wJJXx4muhmTCnEf71c3vC6xE9KCqa",
      "pubsub": null,
      "tpuQuic": "64.130.32.196:9007",
      "tpuVote": "64.130.32.196:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.196:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.196:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "148.51.214.3:8001",
      "gossip": "148.51.214.3:8000",
      "pubkey": "3JATVn9D1NkGWWrJy3eEgLDNFDhA5VkJA88ASDtur9eK",
      "pubsub": null,
      "tpuQuic": "148.51.214.3:8002",
      "tpuVote": "148.51.214.3:8004",
      "version": "4.0.0-rc.0",
      "clientId": "JitoLabs",
      "featureSet": 767961353,
      "serveRepair": "148.51.214.3:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "148.51.214.3:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.83:8002",
      "gossip": "51.222.160.137:8001",
      "pubkey": "2E4VCEU1Mnei29A4kQUsZUitLfVC1qSGzecBXKFptVGV",
      "pubsub": null,
      "tpuQuic": "51.222.160.137:8003",
      "tpuVote": "51.222.160.137:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.160.137:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.160.137:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.61.208.55:8001",
      "gossip": "5.61.208.54:8000",
      "pubkey": "Cu8uzqf8vjYEXW9tbVVbHTiqNZ9eehuCFc3uEyuZhWcA",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.169:8000",
      "pubkey": "5jWm85eU6zWDkP7X4iMWjVa1BGM6JrHMj9pp5J3yyq9A",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "189.1.171.13:8021",
      "gossip": "189.1.171.13:8001",
      "pubkey": "9bJMzM4GhdJqsnUzbkWb4D49itAkXjKzwe56SdRwJonn",
      "pubsub": null,
      "tpuQuic": "189.1.171.13:8022",
      "tpuVote": "189.1.171.13:8024",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "189.1.171.13:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "189.1.171.13:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.50.108.40:8003",
      "gossip": "149.50.108.40:8002",
      "pubkey": "EuowRLCqCD6goRobAxqZMtWZv7mum6V2Bg4fZjbc2kW",
      "pubsub": null,
      "tpuQuic": "149.50.108.40:8004",
      "tpuVote": "149.50.108.40:8006",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "149.50.108.40:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "149.50.108.40:8005"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.224.58:8002",
      "gossip": "208.115.224.58:8001",
      "pubkey": "ECTn266xqvGkRu9rjDLDeMYAVtjjQXGxzR81q3bxtsVq",
      "pubsub": null,
      "tpuQuic": "208.115.224.58:8003",
      "tpuVote": "208.115.224.58:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.224.58:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.224.58:8004"
    },
    {
      "rpc": "84.32.71.181:8899",
      "tpu": null,
      "tvu": "84.32.71.181:8001",
      "gossip": "84.32.71.181:8000",
      "pubkey": "CPGEiC47JzaUdQczBW4EuMDHkayKp2rygReU6j6SzxeR",
      "pubsub": "84.32.71.181:8900",
      "tpuQuic": "84.32.71.181:8002",
      "tpuVote": "84.32.71.181:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "84.32.71.181:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.71.181:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.88.52.184:8000",
      "gossip": "47.88.52.184:8001",
      "pubkey": "B6kJdS5xzA6XiBxemSAVrWZ3gq5CTUSJEmQxdPX7zEVN",
      "pubsub": null,
      "tpuQuic": "47.88.52.184:8002",
      "tpuVote": "47.88.52.184:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "47.88.52.184:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "47.88.52.184:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.243:8002",
      "gossip": "141.98.219.243:8001",
      "pubkey": "GWybpNeRVV81dudLKbHAEeGtrFL2z1gmDVPEDDtLyt8z",
      "pubsub": null,
      "tpuQuic": "141.98.219.243:8010",
      "tpuVote": "141.98.219.243:8006",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "141.98.219.243:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.243:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.168:8002",
      "gossip": "51.81.39.62:8001",
      "pubkey": "3ojCVxCqRdnC3c4daR7BwU7iZAvkCv1V8t7w3MN3qGvK",
      "pubsub": null,
      "tpuQuic": "51.81.39.62:8003",
      "tpuVote": "51.81.39.62:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.39.62:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.39.62:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.99.175:8002",
      "gossip": "109.94.99.175:8001",
      "pubkey": "mds3Df1ieBonG2qS8ZoKTqshq5MgTUNfZgc78cjiCdq",
      "pubsub": null,
      "tpuQuic": "109.94.99.175:8003",
      "tpuVote": "109.94.99.175:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "109.94.99.175:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.99.175:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.204.109.63:8001",
      "gossip": "15.204.109.63:8000",
      "pubkey": "8mmimB6U9r1g1TbV4Kox4jQFUoWtBD19B7kcqfYjFryg",
      "pubsub": null,
      "tpuQuic": "15.204.109.63:8002",
      "tpuVote": "15.204.109.63:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "15.204.109.63:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.109.63:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.12:8002",
      "gossip": "5.39.106.30:8001",
      "pubkey": "Cd78WLHcSGwaxEWQgBdVPKGR7GRBGHCy3bTa2Pyzu8ir",
      "pubsub": null,
      "tpuQuic": "5.39.106.30:8003",
      "tpuVote": "5.39.106.30:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.39.106.30:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.39.106.30:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.149:8002",
      "gossip": "51.38.92.201:8001",
      "pubkey": "Dk3sPRyo6kLNeCQz7pVYkGjZHf1wXVC61R48kB8T8PBY",
      "pubsub": null,
      "tpuQuic": "51.38.92.201:8003",
      "tpuVote": "51.38.92.201:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.92.201:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.92.201:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.45:8001",
      "gossip": "64.130.44.45:8000",
      "pubkey": "4AvyrngpaDdxPgDxiAWxBAqRnzEjc6X4NeNWayGZEh6a",
      "pubsub": null,
      "tpuQuic": "64.130.44.45:8002",
      "tpuVote": "64.130.44.45:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.44.45:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.45:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.27:8002",
      "gossip": "5.135.126.173:8001",
      "pubkey": "9KogTfggXe9HVCNLGtipHDAE6gvG89HCo3aLxYWXjAuJ",
      "pubsub": null,
      "tpuQuic": "5.135.126.173:8003",
      "tpuVote": "5.135.126.173:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.126.173:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.126.173:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "45.250.253.75:8000",
      "pubkey": "H7EvH9P8Ukoofm7SSxh4eHhMjwA4ZnT6iwevprzCEa7R",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.107:8002",
      "gossip": "51.222.167.153:8001",
      "pubkey": "6QUdcbyWAcYMQ6oi8E9hakW7uUBtAxvYEFiLWEqSPmeo",
      "pubsub": null,
      "tpuQuic": "51.222.167.153:8003",
      "tpuVote": "51.222.167.153:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.167.153:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.167.153:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.42:8002",
      "gossip": "84.32.103.42:8001",
      "pubkey": "EtDyRZCRTN3iYoDGcN1JpuvQVsQvAXb8C7fS6EsEtDYc",
      "pubsub": null,
      "tpuQuic": "84.32.103.42:8003",
      "tpuVote": "84.32.103.42:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "84.32.103.42:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.42:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.176.47:8001",
      "gossip": "84.32.176.47:8000",
      "pubkey": "8tVTarmFnDyGiDwP5iBKf5pEvLH2hwcBDCARVHGLwZee",
      "pubsub": null,
      "tpuQuic": "84.32.176.47:8002",
      "tpuVote": "84.32.176.47:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "84.32.176.47:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.176.47:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.55:8002",
      "gossip": "54.37.140.71:8001",
      "pubkey": "BU3bZHY2uyMcLwEst4v5F6A13iAWKqSn2kJeDzVcB3o7",
      "pubsub": null,
      "tpuQuic": "54.37.140.71:8003",
      "tpuVote": "54.37.140.71:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.37.140.71:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.37.140.71:8004"
    },
    {
      "rpc": "185.189.45.78:8899",
      "tpu": null,
      "tvu": "185.189.45.78:8001",
      "gossip": "185.189.45.78:8000",
      "pubkey": "G3FWwPLUVr77uDfaMPpsMxB5DHurGJbm31wK258kXRhj",
      "pubsub": "185.189.45.78:8900",
      "tpuQuic": "185.189.45.78:8002",
      "tpuVote": "185.189.45.78:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "185.189.45.78:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.189.45.78:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.84:8002",
      "gossip": "64.130.58.84:8001",
      "pubkey": "EJPvqnEq69LfXma1wA71ZEKrFwFNFZFnBvPsi1PwaBBd",
      "pubsub": null,
      "tpuQuic": "64.130.58.84:8003",
      "tpuVote": "64.130.58.84:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.58.84:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.84:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.120.61:8001",
      "gossip": "67.213.120.61:8000",
      "pubkey": "A6h4oCHdTXpm7FCR2X3x8tLr5GhJPuW2i7n1vV7oQkhQ",
      "pubsub": null,
      "tpuQuic": "67.213.120.61:8002",
      "tpuVote": "67.213.120.61:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.120.61:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.120.61:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.115.13:30301",
      "gossip": "67.213.115.13:30300",
      "pubkey": "5smXLAQS9ry3P9rfDbc6RDtNQrKnKy2RQp1UMNncBYP9",
      "pubsub": null,
      "tpuQuic": "67.213.115.13:30302",
      "tpuVote": "67.213.115.13:30304",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.115.13:30309",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.115.13:30303"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.83.160:8000",
      "pubkey": "9FjyMsVtfTCqrJcmbvQSZLas4EjW7wwqF5V85F1wFbDk",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "13.57.245.150:8000",
      "pubkey": "8V8oDp5Sa4SWFuJ2X75Bmtki7WxC99WeSz5hqoiNSoeL",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.11:8002",
      "gossip": "141.98.219.11:8001",
      "pubkey": "GGwBZzi7dg8BSbrwkhhqdZREBmqqn5QyxjTr4pQQNF7a",
      "pubsub": null,
      "tpuQuic": "141.98.219.11:8010",
      "tpuVote": "141.98.219.11:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "141.98.219.11:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.11:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.55.155:8001",
      "gossip": "64.130.55.155:8000",
      "pubkey": "5Cd54MxN36ons9WHLhxittzr9iG4ECB44SXLwa8tVB7J",
      "pubsub": null,
      "tpuQuic": "64.130.55.155:8002",
      "tpuVote": "64.130.55.155:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.55.155:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.55.155:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.235.225.139:8001",
      "gossip": "15.235.225.139:8000",
      "pubkey": "7bMsnKsx3vL4ZDzvQTQxMyDHwydq42Cf9Z9C4QEFeH52",
      "pubsub": null,
      "tpuQuic": "15.235.225.139:8002",
      "tpuVote": "15.235.225.139:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "15.235.225.139:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.235.225.139:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.118.83:8001",
      "gossip": "185.191.118.83:8000",
      "pubkey": "7s42cHt3eMRuNTDYqEcvHuhrKVoWVJnuPtSMjPAcwZ1y",
      "pubsub": null,
      "tpuQuic": "185.191.118.83:8009",
      "tpuVote": "185.191.118.83:8005",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "185.191.118.83:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.118.83:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.174:8002",
      "gossip": "51.77.102.102:8001",
      "pubkey": "CuTcaoV9qcXRwC7tv8g252tE649BrqfXcuwtTmJ2qhrS",
      "pubsub": null,
      "tpuQuic": "51.77.102.102:8003",
      "tpuVote": "51.77.102.102:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.77.102.102:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.77.102.102:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.109:8002",
      "gossip": "202.8.11.109:8001",
      "pubkey": "6qMEVXuzAAayJtGaoza1YJTaSMaerYdLctRP1e7zovvn",
      "pubsub": null,
      "tpuQuic": "202.8.11.109:8003",
      "tpuVote": "202.8.11.109:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.109:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.109:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.29.74.117:8001",
      "gossip": "46.29.74.117:8000",
      "pubkey": "DniNcqixGGBS3PeHk3jXUXbeMemM15rdrDmSxe1p9Bho",
      "pubsub": null,
      "tpuQuic": "46.29.74.117:8002",
      "tpuVote": "46.29.74.117:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "46.29.74.117:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "46.29.74.117:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.186.197:50001",
      "gossip": "70.40.186.197:50000",
      "pubkey": "H7VcJ1RjL5v5XYCNnF7GxtCXFeD1C5GMgRP4bM9zJV8s",
      "pubsub": null,
      "tpuQuic": "70.40.186.197:50009",
      "tpuVote": "70.40.186.197:50005",
      "version": "3.1.10",
      "clientId": "JitoLabs",
      "featureSet": 1620780344,
      "serveRepair": "70.40.186.197:50012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.186.197:50010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.72:8801",
      "gossip": "64.130.61.72:8800",
      "pubkey": "9uRq5xtmc4JiCwRgrzYQjtguTKG7HmCduvgCmhMoaAZd",
      "pubsub": null,
      "tpuQuic": "64.130.61.72:8802",
      "tpuVote": "64.130.61.72:8804",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.61.72:8809",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.72:8803"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.127.3:8001",
      "gossip": "67.213.127.3:8000",
      "pubkey": "5HUbfRqzEEFACuzkMAuRnWonyXum4wwLtpTUN1vdYT2u",
      "pubsub": null,
      "tpuQuic": "67.213.127.3:8002",
      "tpuVote": "67.213.127.3:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.213.127.3:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.127.3:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.167.235.224:8001",
      "gossip": "103.167.235.224:8000",
      "pubkey": "AuRvjCzvFsEGfDYB19gMgBGg34bDGdH3MXf7GhyMH4mw",
      "pubsub": null,
      "tpuQuic": "103.167.235.224:8002",
      "tpuVote": "103.167.235.224:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.167.235.224:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.167.235.224:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.153:8888",
      "gossip": "198.13.141.57:8000",
      "pubkey": "ANYpQ6rnDiSAQcMnTT7tJ8zzwJ1MybociUJbiWhJtWUm",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.106:8002",
      "gossip": "64.130.57.106:8001",
      "pubkey": "CyKg6xw8vZmdifZWrqCBfTLqZi3EhNpnUz7mEMT6h6Qr",
      "pubsub": null,
      "tpuQuic": "64.130.57.106:8003",
      "tpuVote": "64.130.57.106:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.57.106:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.106:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.229:8002",
      "gossip": "51.81.162.27:8001",
      "pubkey": "51FtFiJ7JHatZ6GbqFYr8hUBL6CBx1vCLjDH8vS2mA67",
      "pubsub": null,
      "tpuQuic": "51.81.162.27:8003",
      "tpuVote": "51.81.162.27:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.162.27:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.162.27:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.184.28:8001",
      "gossip": "70.40.184.28:8000",
      "pubkey": "5EpWDLLj9G9mpWCy95LMVycjRfxyJKDo6jC6j19i5LFS",
      "pubsub": null,
      "tpuQuic": "70.40.184.28:8002",
      "tpuVote": "70.40.184.28:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "70.40.184.28:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.184.28:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.9.73:8002",
      "gossip": "202.8.9.73:8001",
      "pubkey": "8TMm6JdzZk1LhSftmJizEoqPcx3Ti3N2FfS1DkJhR4ZD",
      "pubsub": null,
      "tpuQuic": "202.8.9.73:8003",
      "tpuVote": "202.8.9.73:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.9.73:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.9.73:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.49:8100",
      "gossip": "185.191.117.49:8001",
      "pubkey": "B71MBZXt1z1bCbnWS2xZjBVuHQj4au2RK99mMfqrnT8b",
      "pubsub": null,
      "tpuQuic": "185.191.117.49:8101",
      "tpuVote": "185.191.117.49:8103",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.49:8108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.49:8102"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.88.64.92:18503",
      "gossip": "38.88.64.92:18502",
      "pubkey": "HZg89d2UHci8RAR2KTDrX5U75fFqB4PTncqDr2dgZ5bc",
      "pubsub": null,
      "tpuQuic": "38.88.64.92:18504",
      "tpuVote": "38.88.64.92:18506",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "38.88.64.92:18511",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.88.64.92:18505"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.96.103:8021",
      "gossip": "109.94.96.103:8001",
      "pubkey": "9GU38dugAkJQoaarz4LTh3pjpf8B4FDjkP9jtWuQCmfu",
      "pubsub": null,
      "tpuQuic": "109.94.96.103:8022",
      "tpuVote": "109.94.96.103:8024",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "109.94.96.103:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.96.103:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.115:8001",
      "gossip": "185.191.117.115:8000",
      "pubkey": "Cja9wVC1Ln419DNu4xHHNttFsYxibcUcE8MA54RSzoAP",
      "pubsub": null,
      "tpuQuic": "185.191.117.115:8002",
      "tpuVote": "185.191.117.115:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "185.191.117.115:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.115:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.34.9:8002",
      "gossip": "64.130.34.9:8001",
      "pubkey": "HGXHs2yFjPwdTQhHURn1r1TsyzXQyE4KPgug3ePHY79T",
      "pubsub": null,
      "tpuQuic": "64.130.34.9:8003",
      "tpuVote": "64.130.34.9:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.34.9:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.34.9:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.195:8888",
      "gossip": "63.254.169.19:8000",
      "pubkey": "BTtDvsGsxazEo3kpMCypPveYdjH83qXzo3GZ2NzAoAaJ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.70.28:8000",
      "gossip": "84.32.70.28:8001",
      "pubkey": "SLYCFwMEkbtKJCp6HXaWi4DJPAazyKe1K26bPXtyzfn",
      "pubsub": null,
      "tpuQuic": "84.32.70.28:8009",
      "tpuVote": "84.32.70.28:8005",
      "version": "3.1.9",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "84.32.70.28:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.70.28:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "91.225.138.30:8002",
      "gossip": "91.225.138.30:8001",
      "pubkey": "F32RiCDKZtpADAoV5R23mmZuhGenEBTQozsei7aHp3ec",
      "pubsub": null,
      "tpuQuic": "91.225.138.30:8003",
      "tpuVote": "91.225.138.30:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "91.225.138.30:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.225.138.30:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "122.10.196.115:1601",
      "gossip": "122.10.196.115:1600",
      "pubkey": "2MArJsNiWWXrdd9q7znHfft1VUd27xh7w33qxfgRGL2E",
      "pubsub": null,
      "tpuQuic": "122.10.196.115:1602",
      "tpuVote": "122.10.196.115:1604",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "122.10.196.115:1609",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "122.10.196.115:1603"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.184:8888",
      "gossip": "198.13.136.216:8000",
      "pubkey": "83QmoEjhGEu8XaYC2CbiWMZhE7UJAMquo77XxFmwCYeg",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.229:8000",
      "pubkey": "BqUNAAhQsMSuW4FT7wtb3yb6qt1Ct6bFoupCtB2HvkHN",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.23:8002",
      "gossip": "64.130.51.23:8001",
      "pubkey": "FuB4YrmTgJEzpamgP7PcQC8CdpqHh9gwHhFtP3J7Wb5G",
      "pubsub": null,
      "tpuQuic": "64.130.51.23:8003",
      "tpuVote": "64.130.51.23:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.23:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.23:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.170:8000",
      "pubkey": "DbL96jLBsTNvo2tKbuYAoDC56G7F6LgdjccGyThqEMGJ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "209.250.240.168:8001",
      "gossip": "209.250.240.168:8000",
      "pubkey": "DaAJkSgr77GeCgb6Kh1TaWvygsDeRtw1xZoS6TDTe9FX",
      "pubsub": null,
      "tpuQuic": "209.250.240.168:8002",
      "tpuVote": "209.250.240.168:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "209.250.240.168:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "209.250.240.168:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.164.123:8001",
      "gossip": "5.199.164.123:8000",
      "pubkey": "yZw9wSFbUikKqYKZFGC8v9L88wL3DRSpbwi58SzEi2H",
      "pubsub": null,
      "tpuQuic": "5.199.164.123:8002",
      "tpuVote": "5.199.164.123:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "5.199.164.123:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.164.123:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "192.155.100.64:8001",
      "gossip": "192.155.100.64:8000",
      "pubkey": "3SwsFRUXbjBQTvRE2kVK4kkwUnbVqP2bbB8Z4SJ9rvyR",
      "pubsub": null,
      "tpuQuic": "192.155.100.64:8002",
      "tpuVote": "192.155.100.64:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "192.155.100.64:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "192.155.100.64:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.58.167:8002",
      "gossip": "64.31.58.167:8001",
      "pubkey": "AtWqgkjvdDzn1zgjKMG5y8ZaicqHUmZjBKgQqX6RJYzs",
      "pubsub": null,
      "tpuQuic": "64.31.58.167:8003",
      "tpuVote": "64.31.58.167:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.31.58.167:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.58.167:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.165:8000",
      "pubkey": "E4czHybDgUDjnyTmAJctkW9bFT4t9WCQQQdAGkwQpnh5",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.207.157.106:8900",
      "gossip": "104.207.157.106:8001",
      "pubkey": "VTFDd1MqGJPP8Jj8ufWtAbCA322tcbDET3BS5ysHaZ3",
      "pubsub": null,
      "tpuQuic": "104.207.157.106:8901",
      "tpuVote": "104.207.157.106:8903",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.207.157.106:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.207.157.106:8902"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "173.231.44.226:8001",
      "pubkey": "BpyDgCNMBxamGU5ZvSXqjKNDsVQtwwsHLUG4RKecWuMd",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "3.1.11",
      "clientId": "JitoLabs",
      "featureSet": 4140108451,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.175:8002",
      "gossip": "51.81.42.229:8001",
      "pubkey": "EFNUMqK1eHYfjrUnHiyDV33XEKnWMsdbveW1f6Jjxs6r",
      "pubsub": null,
      "tpuQuic": "51.81.42.229:8003",
      "tpuVote": "51.81.42.229:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.42.229:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.42.229:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.132.24:8001",
      "gossip": "45.139.132.24:8000",
      "pubkey": "F4JAdw2ryPFBmcDucNewKs96Bzeaac43vHto4NnKPxDx",
      "pubsub": null,
      "tpuQuic": "45.139.132.24:8002",
      "tpuVote": "45.139.132.24:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "45.139.132.24:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.139.132.24:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.162:8000",
      "pubkey": "9LTFXyp4WUcDfRQbzHv7rY3eNkLEFeaoFUVHP7UYNNGL",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.43:8888",
      "gossip": "198.13.136.203:8000",
      "pubkey": "3DhA6CHZDg9iNjnvrQkTgamUJWnRrUKNqMoKeQpzkZF3",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.184.108:8001",
      "gossip": "70.40.184.108:8000",
      "pubkey": "8VhumcvL4Gomx3xew4h51bVqxyP7SUdLToNxTH7gaNuP",
      "pubsub": null,
      "tpuQuic": "70.40.184.108:8002",
      "tpuVote": "70.40.184.108:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "70.40.184.108:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.184.108:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "185.209.177.195:8000",
      "pubkey": "8FvfbwNkyEYEDMX1Epr7oBCqvfdBSiQtPmLk3q96Qkir",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.152:8888",
      "gossip": "198.13.141.56:8000",
      "pubkey": "BnqCacZhHEEh6JhFj42ZHKev5rSuxKboS7qnZUDGCoL",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "78.46.65.202:20001",
      "gossip": "78.46.65.202:8001",
      "pubkey": "3mspVtU2xh3FpbwRMxM3HSb3LKXUjtofTFYkTPWf1KvE",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.87:8002",
      "gossip": "51.222.162.21:8001",
      "pubkey": "FQa79BEDt29H949aby8kcZEvzPN7gqUcYCXXkBKzzbjP",
      "pubsub": null,
      "tpuQuic": "51.222.162.21:8003",
      "tpuVote": "51.222.162.21:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.21:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.21:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.139:8888",
      "gossip": "198.13.141.43:8000",
      "pubkey": "BCYazizpqszbpqjfRdy3xqqmFoPS2xvgLWj5yfD4j4n5",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.197.30:8001",
      "gossip": "88.216.197.30:8000",
      "pubkey": "EWxtdsTkPkbyL9HZuVvQco3PdEt1VhWnjDQYuGc9R3mF",
      "pubsub": null,
      "tpuQuic": "88.216.197.30:8002",
      "tpuVote": "88.216.197.30:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "88.216.197.30:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.197.30:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.96.25:8000",
      "gossip": "109.94.96.25:8001",
      "pubkey": "BqKhYgTi5YqLNYueu5L6cG9Y985sLyPPY6uKByKiwtLK",
      "pubsub": null,
      "tpuQuic": "109.94.96.25:8002",
      "tpuVote": "109.94.96.25:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "109.94.96.25:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.96.25:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.231.190:8000",
      "pubkey": "BQMKwh3xPqY7yb3ES3i13HxSj1SkgBjbD8f1S6VPyU7j",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "107.155.125.190:8900",
      "gossip": "107.155.125.190:8001",
      "pubkey": "AjGby82yXeYgj3kmng9y3c4nQpZFmiPpJKecLJTHbfbP",
      "pubsub": null,
      "tpuQuic": "198.13.141.173:5010",
      "tpuVote": "107.155.125.190:8903",
      "version": "4.0.2",
      "clientId": "AgaveBam",
      "featureSet": 1878484565,
      "serveRepair": "107.155.125.190:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.141.173:5011"
    },
    {
      "rpc": "64.130.41.43:8899",
      "tpu": null,
      "tvu": "64.130.41.43:8001",
      "gossip": "64.130.41.43:8000",
      "pubkey": "GfEvrkbjLxf47t1XqRZfWBg5uiFsTytmSeVtShDAm9Tq",
      "pubsub": "64.130.41.43:8900",
      "tpuQuic": "64.130.41.43:8002",
      "tpuVote": "64.130.41.43:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.43:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.43:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.235.219.122:8001",
      "gossip": "15.235.219.122:8000",
      "pubkey": "DFKpLioQY8YhkaWSwDBPy4uTGyDJr5mNEEYyicmrjLiQ",
      "pubsub": null,
      "tpuQuic": "15.235.219.122:8002",
      "tpuVote": "15.235.219.122:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "15.235.219.122:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.235.219.122:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "137.239.213.222:8003",
      "gossip": "137.239.213.222:8001",
      "pubkey": "JB6vCranF9Yzyc5vLRhB3Ky397B6DuB4pSbbeYMPqzqG",
      "pubsub": null,
      "tpuQuic": "137.239.213.222:8037",
      "tpuVote": "137.239.213.222:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "137.239.213.222:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "137.239.213.222:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.204:8002",
      "gossip": "5.135.168.160:8001",
      "pubkey": "6DwbZpc779mjA2DFJDySE6jSHtFcebvwjRMrWMtWPvNU",
      "pubsub": null,
      "tpuQuic": "5.135.168.160:8003",
      "tpuVote": "5.135.168.160:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.168.160:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.168.160:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.235.236.119:8001",
      "gossip": "15.235.236.119:8000",
      "pubkey": "3icve82hvXEquWEWg2sVKReFXSak2NVxaSTTjP44qKTs",
      "pubsub": null,
      "tpuQuic": "15.235.236.119:8002",
      "tpuVote": "15.235.236.119:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "15.235.236.119:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.235.236.119:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "65.49.109.98:8002",
      "gossip": "65.49.109.98:8001",
      "pubkey": "HJHDGgsLBBGStNbu3zRMSTuNuUotzWoLeCSXHPzQmamo",
      "pubsub": null,
      "tpuQuic": "65.49.109.98:8003",
      "tpuVote": "65.49.109.98:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "65.49.109.98:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "65.49.109.98:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "18.189.154.111:8001",
      "gossip": "18.189.154.111:8000",
      "pubkey": "Ehx3Sp6T7uNVuVnYa2PbAhWCjwf8qRzHU94KKEnJ1QkN",
      "pubsub": null,
      "tpuQuic": "18.189.154.111:8002",
      "tpuVote": "18.189.154.111:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "18.189.154.111:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "18.189.154.111:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "45.250.253.70:8000",
      "pubkey": "3hqMPEMJhtPWf57hrnqLwUjndqmW37ncbMKKTcrXFTDi",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.61:8002",
      "gossip": "145.239.18.169:8001",
      "pubkey": "2CHZBtvc44c9xQrSzWy6yZkTCGG2MNRpYn8iLaMP3Vwn",
      "pubsub": null,
      "tpuQuic": "145.239.18.169:8003",
      "tpuVote": "145.239.18.169:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "145.239.18.169:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "145.239.18.169:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.241:8002",
      "gossip": "5.135.194.216:8001",
      "pubkey": "4jqHjtYEy7qWot1dma3HStxwgNgnGRLazuiDGcBCY9JG",
      "pubsub": null,
      "tpuQuic": "5.135.194.216:8003",
      "tpuVote": "5.135.194.216:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.194.216:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.194.216:8004"
    },
    {
      "rpc": "198.244.253.205:8899",
      "tpu": null,
      "tvu": "198.244.253.205:8003",
      "gossip": "198.244.253.205:8001",
      "pubkey": "A4Jvq8KfBoH4TGCcnSW65XQ2Bgz85Aqoi8JmC71kR1ZP",
      "pubsub": "198.244.253.205:8900",
      "tpuQuic": "198.244.253.205:9007",
      "tpuVote": "198.244.253.205:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "198.244.253.205:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.244.253.205:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.218.146:8002",
      "gossip": "141.98.218.146:8001",
      "pubkey": "ApTA2cJia8StYspQe8EEPSUSyUpNB81y5GJSLt2ZHnrr",
      "pubsub": null,
      "tpuQuic": "141.98.218.146:8003",
      "tpuVote": "141.98.218.146:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "141.98.218.146:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.218.146:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.55:8000",
      "pubkey": "6JtY8vpoMyKeoXCwtjPP73GCEvUoh3z6zXpE7VX1YeDz",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.199:8000",
      "gossip": "64.130.43.199:8001",
      "pubkey": "amsCjS3mdDn3SrXuzjirTBzDJXJd92yzLchMdN1cjhj",
      "pubsub": null,
      "tpuQuic": "64.130.43.199:8002",
      "tpuVote": "64.130.43.199:8004",
      "version": "4.1.0-beta.1",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "64.130.43.199:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.199:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.185.230.146:8000",
      "gossip": "64.185.230.146:8001",
      "pubkey": "Cy163pUSS36sSAG4ZZ7zor4aHRWHCS5PLFfffQ1e9MnB",
      "pubsub": null,
      "tpuQuic": "64.185.230.146:8002",
      "tpuVote": "64.185.230.146:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.185.230.146:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.185.230.146:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.229:8002",
      "gossip": "67.213.121.229:8001",
      "pubkey": "AC89cpRdurZdukNF3ofMx3eTi1Q4iot8n7hXMXMdaw46",
      "pubsub": null,
      "tpuQuic": "67.213.121.229:8003",
      "tpuVote": "67.213.121.229:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.121.229:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.229:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.89:8002",
      "gossip": "51.222.162.23:8001",
      "pubkey": "3SSfq2DUVFcc8JAi9ZkecEESiqcbh8hmTSJJjHBzstFt",
      "pubsub": null,
      "tpuQuic": "51.222.162.23:8003",
      "tpuVote": "51.222.162.23:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.23:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.23:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.201:8002",
      "gossip": "202.8.11.201:8001",
      "pubkey": "8eKCJ2ERfGbin4mEtKV6EtAMrJUeNtXhZs2goPSDxEPh",
      "pubsub": null,
      "tpuQuic": "202.8.11.201:8003",
      "tpuVote": "202.8.11.201:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.201:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.201:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.153:8002",
      "gossip": "51.81.28.195:8001",
      "pubkey": "HYUPqkj5R4zn4RFWJB56Gb9rc1HkeauVMt7QfRwUdTje",
      "pubsub": null,
      "tpuQuic": "51.81.28.195:8003",
      "tpuVote": "51.81.28.195:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.28.195:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.28.195:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.61:8888",
      "gossip": "198.13.136.238:8000",
      "pubkey": "3wS6cs1EuHZzDUxEvhYbJz4cHpkUdAeGixxVnX7Qar6V",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.237.22:8000",
      "gossip": "208.115.237.22:8801",
      "pubkey": "8ncuTtDyYCRqVqZiMcVv6PLpx769hbwuQSSXHqzCqM1Z",
      "pubsub": null,
      "tpuQuic": "208.115.237.22:8001",
      "tpuVote": "208.115.237.22:8003",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "208.115.237.22:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.237.22:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.206:8888",
      "gossip": "63.254.169.30:8000",
      "pubkey": "2KFTesbk4Bjpv5A7gURrvR6U5cXMPpCAAwsTStDb9yTU",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.76.127:8001",
      "gossip": "57.129.76.127:8000",
      "pubkey": "2TU1Azc15jED6GHQGgDFpv9KPeTxWdW2dijgx9K82UK8",
      "pubsub": null,
      "tpuQuic": "57.129.76.127:8002",
      "tpuVote": "57.129.76.127:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "57.129.76.127:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.76.127:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.77:8001",
      "gossip": "64.130.44.77:8000",
      "pubkey": "6qmwCTLtxPKms3MD2KSCUM7oaGWGPukToXMy4JrDiLT3",
      "pubsub": null,
      "tpuQuic": "64.130.44.77:8002",
      "tpuVote": "64.130.44.77:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.44.77:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.77:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.231.189:8000",
      "pubkey": "3i4yz97dPyXgTuFUE7zyznaEdzZ6AMKE5DXmWUfpLKhW",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.53.38:8001",
      "gossip": "64.130.53.38:8000",
      "pubkey": "2xvpLwJicJGHgMSsFoteNampHQnhf8wt7wfYe9LJPGZv",
      "pubsub": null,
      "tpuQuic": "64.130.53.38:8002",
      "tpuVote": "64.130.53.38:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.53.38:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.38:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "13.215.249.212:8000",
      "pubkey": "4nR5eEqeZzMqVtyQYAnrGFrKbBi23CbdjFgKSNsvb78i",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.117:8002",
      "gossip": "198.13.130.117:8001",
      "pubkey": "HfLUj3NVjJF6vmbvEa7WZpxujGLqvcNti28QPAxjXTbs",
      "pubsub": null,
      "tpuQuic": "198.13.130.117:8003",
      "tpuVote": "198.13.130.117:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.117:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.117:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.60:8001",
      "gossip": "64.130.41.60:8000",
      "pubkey": "GxsfWFVEweNQkCvPtRRCSGb1KsvwF3oBaYwpC1RaMfE3",
      "pubsub": null,
      "tpuQuic": "64.130.41.60:8002",
      "tpuVote": "64.130.41.60:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.60:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.60:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.38.3:8002",
      "gossip": "64.130.50.181:8001",
      "pubkey": "BWFxVTnXx1JLAAWyfF1NbD4vfQq5b2icRaER4ECEuYZL",
      "pubsub": null,
      "tpuQuic": "64.130.50.181:8002",
      "tpuVote": "64.130.50.181:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.181:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.181:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.162:8002",
      "gossip": "51.68.202.158:8001",
      "pubkey": "7ygohgSvf5yiaz44S9r8mitMkf1fP13wXm57njtbEV4d",
      "pubsub": null,
      "tpuQuic": "51.68.202.158:8003",
      "tpuVote": "51.68.202.158:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.202.158:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.202.158:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.10:8000",
      "gossip": "64.130.47.10:8001",
      "pubkey": "9ZTQshJdRpBjmgXdgAPZQv5dRJp9JFt37wWwcjsvsGtn",
      "pubsub": null,
      "tpuQuic": "64.130.47.10:8002",
      "tpuVote": "64.130.47.10:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.47.10:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.10:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.67:7892",
      "gossip": "64.130.52.67:8001",
      "pubkey": "CSawd8qnxyBbz41DV3WPxWo2grt6GAzkN7PaHuMXhvPQ",
      "pubsub": null,
      "tpuQuic": "64.130.52.67:9007",
      "tpuVote": "64.130.52.67:9001",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 1668064299,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.67:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.52.186:8002",
      "gossip": "64.31.52.186:8001",
      "pubkey": "4u4Q4REVfjE1VZ1eNk3EzfWp7zM1jFCPGH32EahAdbGw",
      "pubsub": null,
      "tpuQuic": "64.31.52.186:8003",
      "tpuVote": "64.31.52.186:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.52.186:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.52.186:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.82.105:8001",
      "gossip": "85.195.82.105:8000",
      "pubkey": "2TeKuwG4cvxB6KDjhwpCy4fnAqmwJRF33bMzXvFponEA",
      "pubsub": null,
      "tpuQuic": "85.195.82.105:8002",
      "tpuVote": "85.195.82.105:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "85.195.82.105:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.82.105:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "160.202.128.195:8002",
      "gossip": "160.202.128.195:8001",
      "pubkey": "95LHMV2UC8G6RkZAHKFuGFdscY4V3xa1VMmefxjhuJiy",
      "pubsub": null,
      "tpuQuic": "160.202.128.195:8003",
      "tpuVote": "160.202.128.195:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "160.202.128.195:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "160.202.128.195:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.227:8000",
      "pubkey": "GdyJBznzkKSJMmdkh7oxPaJacmXiDHWqZvH14Jd8vhv2",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.1:8888",
      "gossip": "198.13.140.161:8000",
      "pubkey": "5Z15yMeCJ3SGSPzasMfFirQ7iPqAoHTSJ477RDnVvAUa",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.162.81.6:8002",
      "gossip": "69.162.81.6:8001",
      "pubkey": "GBWqHE3TkzxZU7JQ2rdxkgV657hpi1bN8eKtUwAZBJsk",
      "pubsub": null,
      "tpuQuic": "69.162.81.6:8003",
      "tpuVote": "69.162.81.6:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "69.162.81.6:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.162.81.6:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.253:8002",
      "gossip": "51.81.214.71:8001",
      "pubkey": "Axiifb4XAwxYc46ERtLfeTotWCncJBntGSWrC8MWwtjV",
      "pubsub": null,
      "tpuQuic": "51.81.214.71:8003",
      "tpuVote": "51.81.214.71:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.214.71:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.214.71:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.18:8888",
      "gossip": "63.254.161.178:8000",
      "pubkey": "81xCoaiv741BPF5ieyh3fbxrc2Ntviqw46H8RU3oJ75c",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.18:8002",
      "gossip": "5.135.119.112:8001",
      "pubkey": "5oBvjTPbfYKSTbw5dNsV31cb41UpZXPQhUUGvJwisEPq",
      "pubsub": null,
      "tpuQuic": "5.135.119.112:8003",
      "tpuVote": "5.135.119.112:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.119.112:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.119.112:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "157.90.205.49:8000",
      "gossip": "157.90.205.49:8001",
      "pubkey": "EbiySL1PLJPz55EoRrL3bvxQeRj92k5heX1VFgNvZaoi",
      "pubsub": null,
      "tpuQuic": "157.90.205.49:8002",
      "tpuVote": "157.90.205.49:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "157.90.205.49:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "157.90.205.49:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "65.19.161.130:8000",
      "pubkey": "9p6hgHemF6MVTj6w1LmHtXZYN1r5fTEiwLzcCfXhQWvX",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "3.0.6",
      "clientId": "Agave",
      "featureSet": 3604001754,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.61.114:8000",
      "gossip": "64.31.61.114:8801",
      "pubkey": "D6tBUe47vqZFdR3EpFaCtXnJWPqnksP7ocSmE1z49dCt",
      "pubsub": null,
      "tpuQuic": "64.31.61.114:8001",
      "tpuVote": "64.31.61.114:8003",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "64.31.61.114:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.61.114:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.54:8000",
      "pubkey": "DC625AC7ksnPt3criNYikoArAhWXPEEUbVEktAuMWUhC",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.70:8000",
      "pubkey": "3EkeUdG7KVPvDKC9sDeKw85h6FZrxq4s3xvgUEvccTUk",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.83.106:8000",
      "pubkey": "6RgxBCkkHG6gDy24g53M45SYYVJSwqUZSDxGoQTUsWeG",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.35:8000",
      "pubkey": "4JA3yoqFcy1FXvHf9kv7jrhUJ64Guhrku1dstbSJvjVr",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "164.152.19.196:8002",
      "gossip": "164.152.19.196:8001",
      "pubkey": "3fMnDKY99tbswiEbb87nmwuZruPGbWhqhEQns7VptEK7",
      "pubsub": null,
      "tpuQuic": "164.152.19.196:8010",
      "tpuVote": "164.152.19.196:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "164.152.19.196:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "164.152.19.196:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.0:8888",
      "gossip": "198.13.140.160:8000",
      "pubkey": "ViHv3A5BSHRa5sbUDFah6zU9TmhV2HyesLQ3VUJ2Bz2",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.54.152.249:8003",
      "gossip": "86.54.152.249:8001",
      "pubkey": "5pBTW1yeii48vYZgaL9ggu2e93HKr5cxUjL7BqsSgkWm",
      "pubsub": null,
      "tpuQuic": "86.54.152.249:8037",
      "tpuVote": "86.54.152.249:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "86.54.152.249:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.54.152.249:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.44:9001",
      "gossip": "64.130.41.44:9000",
      "pubkey": "HCBU68pwAADxPtX57jFykZHBNBRShWt1RfgTcuDhTwbu",
      "pubsub": null,
      "tpuQuic": "64.130.41.44:9002",
      "tpuVote": "64.130.41.44:9004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.41.44:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.44:9003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.242.176.37:8000",
      "gossip": "47.242.176.37:8001",
      "pubkey": "3yG4Hi9PEDMpuwMYa2meujrmQB4JWywTvSs2oDo3fMY7",
      "pubsub": null,
      "tpuQuic": "47.242.176.37:8002",
      "tpuVote": "47.242.176.37:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "47.242.176.37:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "47.242.176.37:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.15:8002",
      "gossip": "64.31.54.15:8001",
      "pubkey": "AkAh3zbH87VRdrnVv6sMZUUe3KgRdVpG4Nhg8pmb7uEL",
      "pubsub": null,
      "tpuQuic": "64.31.54.15:8003",
      "tpuVote": "64.31.54.15:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.15:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.15:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.209.179.147:8001",
      "gossip": "185.209.179.147:8000",
      "pubkey": "DPNqZFTzWDicRMvat873obH9kLD146pgov9r9Sc9M4aN",
      "pubsub": null,
      "tpuQuic": "185.209.179.147:8002",
      "tpuVote": "185.209.179.147:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "185.209.179.147:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.209.179.147:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.32.34:8002",
      "gossip": "64.31.32.34:8001",
      "pubkey": "4Z8LgdmgvKu6z6D5XEAjBaqCajE7h2FR71ReUfVpmvQ7",
      "pubsub": null,
      "tpuQuic": "64.31.32.34:8003",
      "tpuVote": "64.31.32.34:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.32.34:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.32.34:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "129.213.155.130:8001",
      "pubkey": "3NdhxrfWnEWHkHvmWZUBSbbiQSHxeLDYSTc9iTo1dCg3",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "66.245.195.34:8001",
      "gossip": "66.245.195.34:8000",
      "pubkey": "2YQa6n1QLaxivArQH42cXW4afSggYg5x6TKEBwd3D9Yo",
      "pubsub": null,
      "tpuQuic": "66.245.195.34:8002",
      "tpuVote": "66.245.195.34:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "66.245.195.34:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "66.245.195.34:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.64.79:9100",
      "gossip": "84.32.64.79:8001",
      "pubkey": "4TNUNCmjfdYkBcHVd8satoMex8u5YhmXrko19EDDVTtN",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": "84.32.64.79:9103",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "84.32.64.79:9108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.223.190:8002",
      "gossip": "208.115.223.190:8001",
      "pubkey": "FmLW9pSFik832gRk9HDRRWHt3rhdzG4k5iXMJ9snfyTp",
      "pubsub": null,
      "tpuQuic": "208.115.223.190:8003",
      "tpuVote": "208.115.223.190:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.223.190:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.223.190:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.108:8002",
      "gossip": "51.222.167.154:8001",
      "pubkey": "6ksydNY6yRP5pMfKpZdcqCbqq8HdjTTu9VRKMoPtDdkW",
      "pubsub": null,
      "tpuQuic": "51.222.167.154:8003",
      "tpuVote": "51.222.167.154:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.167.154:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.167.154:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.129:8002",
      "gossip": "51.222.171.79:8001",
      "pubkey": "EMzNifSUvjbACjLtJcJygmFAp7ksVFFGDPSC2HKyMiC7",
      "pubsub": null,
      "tpuQuic": "51.222.171.79:8003",
      "tpuVote": "51.222.171.79:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.171.79:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.171.79:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.202:8002",
      "gossip": "198.13.138.183:9011",
      "pubkey": "87oJBEowTJ6pWzN2DwSnu7ccHPhS8DH1WHZYeQGpoDnY",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 1718981463,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.133.120:8001",
      "gossip": "198.13.133.120:8000",
      "pubkey": "ryKSkbDaLpiuZkjrJDRR1YGNHYKQi6J2SWbyFrQu7ba",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "198.13.133.120:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.50:8000",
      "pubkey": "DwCCNUrmdz5zcVGRubY43ShNZph4hGQssLJSP1NZQWW3",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "3.126.121.207:8000",
      "pubkey": "2p2T8ZcgC5heMZgrLRwaPzniTEwWNC7gE9ks5ch3yREs",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.101:8002",
      "gossip": "51.222.162.211:8001",
      "pubkey": "FsxqKK7LEQhgcxJoHXrp1koDHBodf4LWos2qZAggCJtu",
      "pubsub": null,
      "tpuQuic": "51.222.162.211:8003",
      "tpuVote": "51.222.162.211:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.211:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.211:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.140.55:8003",
      "gossip": "198.13.140.55:8001",
      "pubkey": "7sqpSu8h583CkfmP341PuCXVSVphsjwWYMjdd8pdwhRm",
      "pubsub": null,
      "tpuQuic": "198.13.140.55:9007",
      "tpuVote": "198.13.140.55:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "198.13.140.55:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.55:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "188.241.53.23:8001",
      "gossip": "45.250.25.158:8000",
      "pubkey": "CbPot1yYhERSaji5CVsjWBEbu9brcBXpu1CZoMEtSfza",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.247.72:8002",
      "gossip": "204.16.247.72:8001",
      "pubkey": "HEFnyqqSaV7xWMuLTEsGSmFMzCkaMsU3hVZG9YJWbtE6",
      "pubsub": null,
      "tpuQuic": "204.16.247.72:8003",
      "tpuVote": "204.16.247.72:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.247.72:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.247.72:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.19.219.98:8001",
      "gossip": "185.19.219.98:8000",
      "pubkey": "3AmFbN1Qa8ESwMfeYEF8J7epm2uUUp3U4LZYbLvhZk7m",
      "pubsub": null,
      "tpuQuic": "185.19.219.98:8002",
      "tpuVote": "185.19.219.98:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "185.19.219.98:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.19.219.98:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.208.234.131:8003",
      "gossip": "67.208.234.131:8002",
      "pubkey": "GBKJpAX3E4yJ8ZKpuJ5JuG5rknXx4boZ2HMsyPBScFbH",
      "pubsub": null,
      "tpuQuic": "67.208.234.131:8004",
      "tpuVote": "67.208.234.131:8006",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.208.234.131:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.208.234.131:8005"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.84:8000",
      "gossip": "64.130.44.84:8001",
      "pubkey": "AZAJEzupi3Y26dRm66n1ZFNR3y86WendPU9aZoMKX4Rv",
      "pubsub": null,
      "tpuQuic": "64.130.44.84:8002",
      "tpuVote": "64.130.44.84:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.84:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.84:8003"
    },
    {
      "rpc": "185.26.11.111:8899",
      "tpu": null,
      "tvu": "185.26.11.111:8001",
      "gossip": "185.26.11.111:8000",
      "pubkey": "9PfQTavc8JppDX5YfqMk5c3jiVRy7G9bLfaFy9ZythtW",
      "pubsub": "185.26.11.111:8900",
      "tpuQuic": "185.26.11.111:8002",
      "tpuVote": "185.26.11.111:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.26.11.111:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.11.111:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "183.88.235.101:9001",
      "gossip": "183.88.235.101:9000",
      "pubkey": "DXp8NvCYZsuTjtxqKaHiSCmBmYddBBw5SGXJMxLb9yXB",
      "pubsub": null,
      "tpuQuic": "183.88.235.101:9002",
      "tpuVote": "183.88.235.101:9004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "183.88.235.101:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "183.88.235.101:9003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.116:8001",
      "gossip": "64.130.49.116:8000",
      "pubkey": "E3xAC22ofTXnDHrJj92XrnH161caRNoi4gyWdEiaLM6C",
      "pubsub": null,
      "tpuQuic": "64.130.49.116:8002",
      "tpuVote": "64.130.49.116:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.49.116:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.116:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.91:8002",
      "gossip": "84.32.103.91:8001",
      "pubkey": "EU65BanRrqPg8Wo7U3JDj6LWoWGJFZahQ2LxM9t3Mxg3",
      "pubsub": null,
      "tpuQuic": "84.32.103.91:8003",
      "tpuVote": "84.32.103.91:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "84.32.103.91:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.91:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.165:8000",
      "pubkey": "1YAZ7yUVWY9D8HtK86DajimpKsAM7jh57NCKvSW3xeW",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.51:8003",
      "gossip": "198.13.134.51:8001",
      "pubkey": "HsvCEPGvCb4dMNpHAguwxBvusQsaEfKhdfsgY5qYYdLZ",
      "pubsub": null,
      "tpuQuic": "198.13.134.51:8037",
      "tpuVote": "198.13.134.51:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.51:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.51:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.205:8002",
      "gossip": "51.81.182.220:8001",
      "pubkey": "FvG54jiaQeKV5MBTNzXzbtSgmuGB9gnE32hkvYx4PSj6",
      "pubsub": null,
      "tpuQuic": "51.81.182.220:8003",
      "tpuVote": "51.81.182.220:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.182.220:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.182.220:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.97.28:8000",
      "gossip": "84.32.97.28:8001",
      "pubkey": "EYmqMgjENiRpXtyMUcztomaNQKWGoP6bQjxwGaVHrSSV",
      "pubsub": null,
      "tpuQuic": "84.32.97.28:8002",
      "tpuVote": "84.32.97.28:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "84.32.97.28:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.97.28:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.165.7:8001",
      "gossip": "5.199.165.7:8000",
      "pubkey": "BvkrtxZNfmCmotvWY3U9JR1oitcjttcWn3RSV2iK7Tty",
      "pubsub": null,
      "tpuQuic": "5.199.165.7:8002",
      "tpuVote": "5.199.165.7:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.199.165.7:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.165.7:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.120:8002",
      "gossip": "185.191.117.120:8001",
      "pubkey": "CyXq5SRpJ49CPBCvT7A3trzaSCUzjnsBYvg6aKPFAQxf",
      "pubsub": null,
      "tpuQuic": "185.191.117.120:8003",
      "tpuVote": "185.191.117.120:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.120:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.120:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.4:8002",
      "gossip": "64.130.63.4:8001",
      "pubkey": "BYwJVaM8T8qbR9Pg1cgtXnvpjt6LYZERHpzazuJJsA7d",
      "pubsub": null,
      "tpuQuic": "64.130.63.4:8003",
      "tpuVote": "64.130.63.4:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.4:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.4:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.190:8002",
      "gossip": "57.128.146.14:8001",
      "pubkey": "2JDFu3cvenzSw1jQ2YAfLV6dsZbRDA6ihuqqc6vorD5D",
      "pubsub": null,
      "tpuQuic": "57.128.146.14:8003",
      "tpuVote": "57.128.146.14:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "57.128.146.14:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.128.146.14:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.4:8002",
      "gossip": "64.130.58.4:8001",
      "pubkey": "5zAV5xwxb3xneXL2GdpofWtZTh25kTd2gG5r9gdPs3ko",
      "pubsub": null,
      "tpuQuic": "64.130.58.4:8003",
      "tpuVote": "64.130.58.4:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.58.4:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.4:8004"
    },
    {
      "rpc": "141.95.45.24:8899",
      "tpu": null,
      "tvu": "141.95.45.24:8003",
      "gossip": "141.95.45.24:8001",
      "pubkey": "7jtd92B7g42XPfiM5KuvyjaqJzdxiwbRi6rZF9cpnd84",
      "pubsub": "141.95.45.24:8900",
      "tpuQuic": "141.95.45.24:9007",
      "tpuVote": "141.95.45.24:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "141.95.45.24:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.95.45.24:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.19:8002",
      "gossip": "5.135.119.113:8001",
      "pubkey": "2HUwxt147VvUeFNYtMGEGbsELoDy8ZVFdgACXZnSb7s6",
      "pubsub": null,
      "tpuQuic": "5.135.119.113:8003",
      "tpuVote": "5.135.119.113:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.119.113:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.119.113:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.204.162.222:8001",
      "gossip": "15.204.162.222:8000",
      "pubkey": "Hq1XCWMsQogfGYY8oA5GNHdCEU39uEYvovLnffhGMp2n",
      "pubsub": null,
      "tpuQuic": "15.204.162.222:8002",
      "tpuVote": "15.204.162.222:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "15.204.162.222:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.162.222:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.174:8002",
      "gossip": "51.81.42.228:8001",
      "pubkey": "EpXegauVJ65MTDQ5cPNJvQeXGqPeGHqj4vVrsywDKQJZ",
      "pubsub": null,
      "tpuQuic": "51.81.42.228:8003",
      "tpuVote": "51.81.42.228:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.42.228:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.42.228:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.189.129.25:8001",
      "gossip": "5.189.129.25:8000",
      "pubkey": "GNiQHDd3kdcr1LXnTf3oqWFRv8gbpaXHqn3Mo3sGa3x9",
      "pubsub": null,
      "tpuQuic": "5.189.129.25:8002",
      "tpuVote": "5.189.129.25:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.189.129.25:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.189.129.25:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.9.135:8002",
      "gossip": "202.8.9.135:8001",
      "pubkey": "DckvJZASB77Gi6tD9wQ4J7oYx2MGrGX26VaKkXsw1CBz",
      "pubsub": null,
      "tpuQuic": "202.8.9.135:8003",
      "tpuVote": "202.8.9.135:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.9.135:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.9.135:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.77:8000",
      "pubkey": "6RybqAfLzr4dQcmWZ5EN5bneRjNkZP2QwzzVrTqpyAFY",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.83.163:8000",
      "pubkey": "2JR4b7eUK7n1NZQg6FsWo5S5R3unVQfnNwEiFk9YadMy",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.119:8002",
      "gossip": "51.222.169.197:8001",
      "pubkey": "B8zGgC2RLnh52HBftGUE6RjfwJDkqc3TVC3pd5eXTnpm",
      "pubsub": null,
      "tpuQuic": "51.222.169.197:8003",
      "tpuVote": "51.222.169.197:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.169.197:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.169.197:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.24:8002",
      "gossip": "64.130.63.24:8001",
      "pubkey": "FhdKL7WnQghbkNttp6zQyzxnWRPGh2sWEJjEXfMPnD1v",
      "pubsub": null,
      "tpuQuic": "64.130.63.24:8003",
      "tpuVote": "64.130.63.24:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.24:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.24:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.44:11001",
      "gossip": "64.130.58.44:11000",
      "pubkey": "J9usfCg76nM2grBojZNkNeLGxyKdComEtmv7kB5DU7nF",
      "pubsub": null,
      "tpuQuic": "64.130.58.44:11002",
      "tpuVote": "64.130.58.44:11004",
      "version": "4.0.0-beta.6",
      "clientId": "Agave",
      "featureSet": 2475355604,
      "serveRepair": "64.130.58.44:11009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.44:11003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.151:8002",
      "gossip": "51.38.92.203:8001",
      "pubkey": "ZVz4hAWNiSDrqsw9dbMeeER7RQAHEzq2v7cA8Rw4o2a",
      "pubsub": null,
      "tpuQuic": "51.38.92.203:8003",
      "tpuVote": "51.38.92.203:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.92.203:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.92.203:8004"
    },
    {
      "rpc": "146.19.127.34:8899",
      "tpu": null,
      "tvu": "146.19.127.34:8001",
      "gossip": "146.19.127.34:8000",
      "pubkey": "8WikuDp4Qgq34fZ8UcUdhwQm959XrHLxNM3QtKQZo8zx",
      "pubsub": "146.19.127.34:8899",
      "tpuQuic": "146.19.127.34:8002",
      "tpuVote": "146.19.127.34:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "146.19.127.34:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.19.127.34:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.110:8000",
      "pubkey": "GSRvWM9B4m1WtZ7KpNR8QjcNrbWFhzCjq69KFrPuTzQ9",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.94:8002",
      "gossip": "51.222.162.200:8001",
      "pubkey": "5mnM72zgAzWdS8MqNHuTEb7MGZX1WspAFjcd7DrZomTv",
      "pubsub": null,
      "tpuQuic": "51.222.162.200:8003",
      "tpuVote": "51.222.162.200:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.200:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.200:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.155.79.63:8002",
      "gossip": "38.155.79.63:8001",
      "pubkey": "2wuQKoGEaykFsFwVvjJ5rxYQiiPJtrpDBRFbUSP1tkQ6",
      "pubsub": null,
      "tpuQuic": "38.155.79.63:8003",
      "tpuVote": "38.155.79.63:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "38.155.79.63:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.155.79.63:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "183.81.168.178:8000",
      "gossip": "183.81.168.178:8001",
      "pubkey": "HXtibUgtr8FisTu5RXnrNqTjKuerN2dTYztYqQZ56kMu",
      "pubsub": null,
      "tpuQuic": "183.81.168.178:8009",
      "tpuVote": "183.81.168.178:8005",
      "version": "3.1.11",
      "clientId": "JitoLabs",
      "featureSet": 4140108451,
      "serveRepair": "183.81.168.178:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "183.81.168.178:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.5:8002",
      "gossip": "54.37.114.163:8001",
      "pubkey": "3dN7gEVL2esyoq8qhz8efuukbQxyFpzzEaeVyEhA5WGU",
      "pubsub": null,
      "tpuQuic": "54.37.114.163:8003",
      "tpuVote": "54.37.114.163:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.37.114.163:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.37.114.163:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.100:8000",
      "pubkey": "4Cpi1ahiQhVQkg4XAc1Pb5mX6xVsjEUmR7JidbAnE2cq",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "37.72.171.102:8001",
      "gossip": "37.72.171.102:8000",
      "pubkey": "7SppJPG7Er96gffXwMpt99cAJPv8EaveQjfkZMjzPs9f",
      "pubsub": null,
      "tpuQuic": "37.72.171.102:8002",
      "tpuVote": "37.72.171.102:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "37.72.171.102:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "37.72.171.102:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "142.91.158.164:8101",
      "gossip": "142.91.158.164:8100",
      "pubkey": "FeodNST54Bu5kTFzBivN15s1P1vfd6GfTjNRt1xRNhDg",
      "pubsub": null,
      "tpuQuic": "142.91.158.164:8109",
      "tpuVote": "142.91.158.164:8105",
      "version": "3.1.10",
      "clientId": "JitoLabs",
      "featureSet": 1620780344,
      "serveRepair": "142.91.158.164:8112",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "142.91.158.164:8110"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.46:8888",
      "gossip": "63.254.162.94:8000",
      "pubkey": "HLArKGDnfn1B1VCosNua2JM23HaJVrue9JNAzmDGduJV",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.39:8000",
      "pubkey": "4Y3eS899iccRmHBn6Lmzv9H1pJSzAtdxR69k3zyeMeUy",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.219:8002",
      "gossip": "15.204.36.193:8001",
      "pubkey": "BKRRTHMkgBPj59FUgsphSFiLhFBV9To8D9EZBPyYcNrH",
      "pubsub": null,
      "tpuQuic": "15.204.36.193:8003",
      "tpuVote": "15.204.36.193:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "15.204.36.193:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.36.193:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.83.105:8000",
      "pubkey": "9g1fhzdSdWUWER6qZvdrHjwA11JQPpVivzmU7PqABnaZ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.169:8001",
      "gossip": "64.130.43.169:8000",
      "pubkey": "EFrfBrXk6VNSudcDu7nu1xFxYSFT2CSp8CPCDow7ma3X",
      "pubsub": null,
      "tpuQuic": "64.130.43.169:8002",
      "tpuVote": "64.130.43.169:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.43.169:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.169:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.70:8003",
      "gossip": "64.130.63.70:8001",
      "pubkey": "4hixnLZmQ96pxBf8P56rXCKxYLBnvcPRCv8fDimbZ8n3",
      "pubsub": null,
      "tpuQuic": "64.130.63.70:9007",
      "tpuVote": "64.130.63.70:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "64.130.63.70:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.70:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.152:8002",
      "gossip": "64.130.37.152:8001",
      "pubkey": "EsyWo3SXdVRsmD5cwhrZrAXY5agRfxm1TVCQfXUgJ6c7",
      "pubsub": null,
      "tpuQuic": "64.130.37.152:8003",
      "tpuVote": "64.130.37.152:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.152:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.152:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.179:8888",
      "gossip": "198.13.136.211:8000",
      "pubkey": "AEkmstusHofUmUkaBhvrfnHjzsSRBZuZF4a2XKu8z9Xj",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.61.208.57:8001",
      "gossip": "5.61.208.54:8000",
      "pubkey": "BeDL7GH4JBd27w9oeBcE8BB8KftrHpbg9arWzXaCYLMM",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.135:8002",
      "gossip": "51.81.25.245:8001",
      "pubkey": "7bBWgzpUg5YerPJeXPBfX2kejyEToN7VCsD79pdpQH9Z",
      "pubsub": null,
      "tpuQuic": "51.81.25.245:8003",
      "tpuVote": "51.81.25.245:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.25.245:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.25.245:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.141:8002",
      "gossip": "64.130.52.141:8001",
      "pubkey": "DszEyJs4cGe3TKJopy2z4jUvrsxzkPZDnNRji8cw2ByD",
      "pubsub": null,
      "tpuQuic": "64.130.52.141:8003",
      "tpuVote": "64.130.52.141:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.141:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.141:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "15.236.43.167:8000",
      "pubkey": "r4WNNsYq5dRxtk4tzF5DarjHW9mmyGvWsGjdR2zTV8r",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.94:8002",
      "gossip": "198.13.130.94:8001",
      "pubkey": "DjCbsfyPso5iCwBYrq7vqxrWujJFFxugeBpZWGUqpbvE",
      "pubsub": null,
      "tpuQuic": "198.13.130.94:8003",
      "tpuVote": "198.13.130.94:8005",
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 4198458772,
      "serveRepair": "198.13.130.94:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.94:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "74.118.140.109:7001",
      "pubkey": "4TUmkmRZzwZxZSqgXXfXyDvxgm1KHaGh9eYgz2o7SoBm",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.73:8002",
      "gossip": "64.130.54.73:8001",
      "pubkey": "JLmfai6qKr7MWiFBeib9Qj7HVi6Ury7i5hEat5Chskd",
      "pubsub": null,
      "tpuQuic": "64.130.54.73:8003",
      "tpuVote": "64.130.54.73:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.73:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.73:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "91.203.71.11:8000",
      "gossip": "91.203.71.11:8001",
      "pubkey": "AvJYYSCynct6dpoof5pjjCjT4UQdwBCYDnbGRpHGy4C3",
      "pubsub": null,
      "tpuQuic": "91.203.71.11:8002",
      "tpuVote": "91.203.71.11:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "91.203.71.11:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.203.71.11:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.248:8000",
      "pubkey": "9jpo8pN5NQFLEHF4bEFWxeEN87ZmXAWfXgsW34kR1Rmm",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.81.133:8002",
      "gossip": "64.34.81.133:8001",
      "pubkey": "5MyopkBXj1Stzj984GSJmTomdZcKj7fGumGVLG7mApaV",
      "pubsub": null,
      "tpuQuic": "64.34.81.133:8003",
      "tpuVote": "64.34.81.133:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.34.81.133:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.81.133:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.58.178.8:18001",
      "gossip": "38.58.178.8:18000",
      "pubkey": "GPSSYM5HcpuaZbzMMtyCcovXv3BBLm2A8w7QacqExteL",
      "pubsub": null,
      "tpuQuic": "38.58.178.8:18002",
      "tpuVote": "38.58.178.8:18004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "38.58.178.8:18009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.58.178.8:18003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "35.77.120.77:38001",
      "gossip": "35.77.120.77:38000",
      "pubkey": "6bCe3CwsJpom3N22cVi1rocYWLEBT96PniJm2LcP66b6",
      "pubsub": null,
      "tpuQuic": "35.77.120.77:38002",
      "tpuVote": "35.77.120.77:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "35.77.120.77:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "35.77.120.77:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.226:8002",
      "gossip": "5.135.193.157:8001",
      "pubkey": "6gehL5DYoCvL8WBjCXkX5YvPKK9hwF1gFRPtCEFybicR",
      "pubsub": null,
      "tpuQuic": "5.135.193.157:8003",
      "tpuVote": "5.135.193.157:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.193.157:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.193.157:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "148.113.193.165:8021",
      "gossip": "148.113.193.165:8001",
      "pubkey": "2DbaDY6X1J9buaL5S2schzpz4ddBd2UZwk7fEavN3aNT",
      "pubsub": null,
      "tpuQuic": "148.113.193.165:8022",
      "tpuVote": "148.113.193.165:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "148.113.193.165:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "148.113.193.165:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.214:8002",
      "gossip": "64.130.40.214:8001",
      "pubkey": "AzTxefVSAnS7XLCEksdTLxjjSUHrxZYRq9ojeukmUX4M",
      "pubsub": null,
      "tpuQuic": "64.130.40.214:8003",
      "tpuVote": "64.130.40.214:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.214:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.214:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.142:8888",
      "gossip": "198.13.141.46:8000",
      "pubkey": "7kc3v2uNew6U8u455KSHV5HzRgQMnWvMKmrLQwECuMMT",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.22:8002",
      "gossip": "51.68.149.246:8001",
      "pubkey": "GpUTk73YApyQpUoQTgP4L53zP9DQdV8dnJnGP9nPDQX8",
      "pubsub": null,
      "tpuQuic": "51.68.149.246:8003",
      "tpuVote": "51.68.149.246:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.149.246:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.149.246:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.45:8001",
      "gossip": "64.130.41.45:8000",
      "pubkey": "D9xtSNkffrJApgDjmLjHK3LnqbsY5uuYbQcm7DNxiS2e",
      "pubsub": null,
      "tpuQuic": "64.130.41.45:8002",
      "tpuVote": "64.130.41.45:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.45:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.45:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.174:8000",
      "pubkey": "A6w8VwJb4UD5AnvGvC9NpSQH2G51ZvV97tA4hZczX3D9",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.135:8001",
      "gossip": "64.130.44.135:8000",
      "pubkey": "7Af6iacqATksqYCvt5ptE2Cy4HNkNKuWcf1CQNgRPmBZ",
      "pubsub": null,
      "tpuQuic": "64.130.44.135:8002",
      "tpuVote": "64.130.44.135:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.44.135:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.135:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.9:8002",
      "gossip": "202.8.11.9:8001",
      "pubkey": "9T3TxQoipMAf7awZbSAJN1iah9VjhtpJfdeYyVfSzkhV",
      "pubsub": null,
      "tpuQuic": "202.8.11.9:8003",
      "tpuVote": "202.8.11.9:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.9:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.9:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "148.113.187.45:8021",
      "gossip": "148.113.187.45:8001",
      "pubkey": "HrDKkRwE7GgFwrUnRdpJjN9TmHJkhxGtpCqadcvuwPfb",
      "pubsub": null,
      "tpuQuic": "148.113.187.45:11228",
      "tpuVote": "148.113.187.45:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "148.113.187.45:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "148.113.187.45:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.209:10001",
      "gossip": "64.130.52.209:10000",
      "pubkey": "5ZjxMYBbnKd4VFxLjAChSWMTeQ96147HnxZvQJxUseHV",
      "pubsub": null,
      "tpuQuic": "64.130.52.209:10002",
      "tpuVote": "64.130.52.209:10004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.209:10009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.209:10003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.135:8001",
      "gossip": "64.130.63.135:8000",
      "pubkey": "G4h1iRTFz2LKPFaZnFDmQ1Un2FwLDaSJYRu8MzFPfprW",
      "pubsub": null,
      "tpuQuic": "64.130.63.135:8002",
      "tpuVote": "64.130.63.135:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.63.135:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.135:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.78:8000",
      "pubkey": "33zP25jt9iq4kHSrDLibWp2k5fRdBhZUd8GgFiXRJTEP",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.40:8888",
      "gossip": "198.13.136.200:8000",
      "pubkey": "E9iT7FzQBd6oK7u3bJSrqbZt4s5PSBvHfEKJBvV94oDA",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.246:8002",
      "gossip": "5.135.196.157:8001",
      "pubkey": "3kYZu5z7HhWUptMyFaqH1fyCXpy8tsZV6afL9S7EULVM",
      "pubsub": null,
      "tpuQuic": "5.135.196.157:8003",
      "tpuVote": "5.135.196.157:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.196.157:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.196.157:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.85:8002",
      "gossip": "51.222.160.139:8001",
      "pubkey": "6fSpEgKtzkxDmM7X2EKY61zWQymgewaJCu44PJE9MZHn",
      "pubsub": null,
      "tpuQuic": "51.222.160.139:8003",
      "tpuVote": "51.222.160.139:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.160.139:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.160.139:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.58:8001",
      "gossip": "64.130.61.58:8000",
      "pubkey": "BLhJesH3G3S157hxRi6SSGkz8HmrruT3qqTh1KJbugzZ",
      "pubsub": null,
      "tpuQuic": "64.130.61.58:8002",
      "tpuVote": "64.130.61.58:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.61.58:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.58:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.3:8002",
      "gossip": "208.115.227.3:8001",
      "pubkey": "8LwCbtpT1KpBGwHBXLjzovRe8kpTHyQKkqfbLw1H51Eo",
      "pubsub": null,
      "tpuQuic": "208.115.227.3:8003",
      "tpuVote": "208.115.227.3:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.3:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.3:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.235.232.94:8001",
      "gossip": "15.235.232.94:8000",
      "pubkey": "7cncxLQVv7sPoxEsqFrENUJi5Tk5HJ2Edd9ETqMSPDTK",
      "pubsub": null,
      "tpuQuic": "15.235.232.94:8002",
      "tpuVote": "15.235.232.94:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "15.235.232.94:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.235.232.94:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.133:8002",
      "gossip": "64.130.41.133:8001",
      "pubkey": "mcs64f4QV1EQCzyyGsJ5MWfd2RnzzETyaTo8YxFncaz",
      "pubsub": null,
      "tpuQuic": "64.130.41.133:8003",
      "tpuVote": "64.130.41.133:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.133:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.133:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.82.109:8001",
      "gossip": "85.195.82.109:8000",
      "pubkey": "AgFbq2e7EZYjbAygJ5x9dKZ2mBZDffmNaBo7cYqnkxC2",
      "pubsub": null,
      "tpuQuic": "85.195.82.109:8002",
      "tpuVote": "85.195.82.109:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "85.195.82.109:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.82.109:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "199.247.31.59:8001",
      "gossip": "199.247.31.59:8000",
      "pubkey": "DU5uwMJ8ND5gFstUfbXEZjePcMdQbzZAhx6M2omp5vuD",
      "pubsub": null,
      "tpuQuic": "199.247.31.59:8002",
      "tpuVote": "199.247.31.59:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "199.247.31.59:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "199.247.31.59:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.245.202.46:8002",
      "gossip": "216.245.202.46:8001",
      "pubkey": "4v6Kf5WLs6XijjDGhVFUdZk7s96ApxcBzycDZb4kGAry",
      "pubsub": null,
      "tpuQuic": "216.245.202.46:8003",
      "tpuVote": "216.245.202.46:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.245.202.46:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.245.202.46:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.19:8002",
      "gossip": "64.130.33.19:8001",
      "pubkey": "AyRAsxwTndJHgxTvcn3K1tebiW3msyiu38Zz6jDrnCqZ",
      "pubsub": null,
      "tpuQuic": "64.130.33.19:8003",
      "tpuVote": "64.130.33.19:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.33.19:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.19:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.109:8002",
      "gossip": "51.222.167.155:8001",
      "pubkey": "93BvqiNmcAbUDEUP5o6CFqLGjLaqNRpRoA3QM7y9CwjY",
      "pubsub": null,
      "tpuQuic": "51.222.167.155:8003",
      "tpuVote": "51.222.167.155:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.167.155:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.167.155:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "24.170.229.90:8000",
      "pubkey": "Cz6jXyoFadLfB3SU12WCzqPJeoU2aRKcucpUoqNruYKn",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.51:8002",
      "gossip": "64.31.54.51:8001",
      "pubkey": "5g68hSgy727RiP8tjHCYiDaRs9jpT2Up4JD55pPiUmUP",
      "pubsub": null,
      "tpuQuic": "64.31.54.51:8003",
      "tpuVote": "64.31.54.51:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.51:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.51:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.57:8002",
      "gossip": "137.74.50.3:8001",
      "pubkey": "BGHN4RkJT8YYtyNLACbo2Q9VX6daSKKMrXcyt4rVHTew",
      "pubsub": null,
      "tpuQuic": "137.74.50.3:8003",
      "tpuVote": "137.74.50.3:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "137.74.50.3:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "137.74.50.3:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "43.159.56.189:8001",
      "gossip": "43.159.56.189:8000",
      "pubkey": "5UoEUcJ6JAxuwGbYfLZQuiyJYCgbwtwvgibjNCeXwdjG",
      "pubsub": null,
      "tpuQuic": "43.159.56.189:8002",
      "tpuVote": "43.159.56.189:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "43.159.56.189:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "43.159.56.189:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.211:8002",
      "gossip": "64.130.57.211:8001",
      "pubkey": "BBDKghZotn4WE2tE541fvR6faDFKkZKFc1qdmX8BNxi9",
      "pubsub": null,
      "tpuQuic": "64.130.57.211:8003",
      "tpuVote": "64.130.57.211:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.57.211:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.211:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.71:8002",
      "gossip": "64.130.54.71:8001",
      "pubkey": "84zTf9F3Xrmc21b6UiZ453UwXWzsx2G5ThpFUoovxMjX",
      "pubsub": null,
      "tpuQuic": "64.130.54.71:8003",
      "tpuVote": "64.130.54.71:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.71:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.71:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.201:8888",
      "gossip": "63.254.169.25:8000",
      "pubkey": "5WdpvoFtv2a1HVC9Vhn9M3dRGnb9zcyu443RDJ5oryS6",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.185:8002",
      "gossip": "141.98.219.185:8001",
      "pubkey": "9EEyRDTZNXYTDNEgke459mXRrpvXCCXuciAUfJBGMfuE",
      "pubsub": null,
      "tpuQuic": "141.98.219.185:8003",
      "tpuVote": "141.98.219.185:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.219.185:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.185:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.41:8002",
      "gossip": "51.83.137.117:8001",
      "pubkey": "9rmQmy2sDctMz6bKG4mW8EZKin5ef2RMLnhQ4UYtBLbw",
      "pubsub": null,
      "tpuQuic": "51.83.137.117:8003",
      "tpuVote": "51.83.137.117:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.83.137.117:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.83.137.117:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.176:8002",
      "gossip": "51.81.42.230:8001",
      "pubkey": "FzBpoHgvReDbjJkUXpMdHTtpo8iB3yhgi9QPGQY1N9Vy",
      "pubsub": null,
      "tpuQuic": "51.81.42.230:8003",
      "tpuVote": "51.81.42.230:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.42.230:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.42.230:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.138:8888",
      "gossip": "198.13.141.42:8000",
      "pubkey": "CveW3rcvLN56aodAMtCLenrVGYX1WWEZjfyHuhDGV5cN",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.116.200:8000",
      "gossip": "185.191.116.200:8001",
      "pubkey": "ChvrgvuXyXcD6aXvtXCaFgrqMtKRDBtdyZimQTfxDwho",
      "pubsub": null,
      "tpuQuic": "185.191.116.200:8009",
      "tpuVote": "185.191.116.200:8005",
      "version": "3.1.11",
      "clientId": "Agave",
      "featureSet": 4140108451,
      "serveRepair": "185.191.116.200:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.116.200:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.136:8002",
      "gossip": "51.38.67.28:8001",
      "pubkey": "HTbTbywfMQ6fem6SMMq9qAKbn9C3h25JMNEXXUVBudkR",
      "pubsub": null,
      "tpuQuic": "51.38.67.28:8003",
      "tpuVote": "51.38.67.28:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.67.28:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.67.28:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.141:8888",
      "gossip": "198.13.141.45:8000",
      "pubkey": "E4b21DKEpG5jTY73eEHBbu9i4bDtE51QxtvrwxYKoiPC",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.63.70:8001",
      "gossip": "84.32.63.70:8000",
      "pubkey": "DbuCCdxHiMghepgqFrYyYEAgCMCcwZBrJBsvfLYk2kWB",
      "pubsub": null,
      "tpuQuic": "84.32.63.70:8002",
      "tpuVote": "84.32.63.70:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "84.32.63.70:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.63.70:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.109.23:8002",
      "gossip": "208.91.109.23:8001",
      "pubkey": "BTkreMKWKDJL2xvAgwgDmt3sQBaZNxb1rbdJ3CX3UCFu",
      "pubsub": null,
      "tpuQuic": "208.91.109.23:8010",
      "tpuVote": "208.91.109.23:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "208.91.109.23:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.23:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.224:8002",
      "gossip": "51.81.149.102:8001",
      "pubkey": "6FiZAsaXEd3GPg2WMeqDEksG2sjGoQtRBzKGPXyDXPk7",
      "pubsub": null,
      "tpuQuic": "51.81.149.102:8003",
      "tpuVote": "51.81.149.102:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.149.102:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.149.102:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "98.82.179.110:38001",
      "gossip": "98.82.179.110:38000",
      "pubkey": "EMLyrbHshSP2tVbPFc2ysYCAiX2uBrxRmafH8Lne49WR",
      "pubsub": null,
      "tpuQuic": "98.82.179.110:38002",
      "tpuVote": "98.82.179.110:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "98.82.179.110:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "98.82.179.110:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.50:8000",
      "gossip": "198.13.134.50:8001",
      "pubkey": "D7RMPEwiJjfbJJ3NFjavcuZu6ddJd6jwS7QpMt88EZAw",
      "pubsub": null,
      "tpuQuic": "198.13.134.50:8002",
      "tpuVote": "198.13.134.50:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.50:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.50:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.132.12.4:8001",
      "gossip": "23.132.12.4:8000",
      "pubkey": "375G9RCMELBHniohdYwYmZXpDPu6sdW5d8o3XrgUWFVp",
      "pubsub": null,
      "tpuQuic": "23.132.12.4:8002",
      "tpuVote": "23.132.12.4:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "23.132.12.4:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.132.12.4:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.32:8002",
      "gossip": "51.75.32.60:8001",
      "pubkey": "8L23FJ9up3zvh4uKdWwm4sY1MVdzci7dufYJH63Fd4rA",
      "pubsub": null,
      "tpuQuic": "51.75.32.60:8003",
      "tpuVote": "51.75.32.60:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.75.32.60:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.75.32.60:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.138.112:8000",
      "gossip": "198.13.138.112:8001",
      "pubkey": "GPhNmU1b6LgNxBiB9qNtasVuNyCLa6ujAKDRsX6hReQf",
      "pubsub": null,
      "tpuQuic": "198.13.138.112:8002",
      "tpuVote": "198.13.138.112:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.138.112:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.138.112:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.44.207.197:8001",
      "gossip": "185.44.207.197:8000",
      "pubkey": "Eatnb5RKdKPDTi3jKA8uHLjC89XMZsKksznCDiJ1fxYN",
      "pubsub": null,
      "tpuQuic": "185.44.207.197:8002",
      "tpuVote": "185.44.207.197:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.44.207.197:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.44.207.197:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "54.65.204.51:8000",
      "pubkey": "FSdYQCaM1P3NAows12Aor4mKMyecv5aKXULEuf8ijtb9",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.171:8002",
      "gossip": "64.130.42.171:8001",
      "pubkey": "4ELftaMepkjy16G6sS6x8EeWhHDbnsujrZdfUn2T8Nkg",
      "pubsub": null,
      "tpuQuic": "64.130.42.171:8003",
      "tpuVote": "64.130.42.171:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.171:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.171:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "161.33.142.96:8001",
      "pubkey": "8e13g4JHGSjSRco3WiWMgY9U6VfDi5otfMS2XKV7VdBk",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.17:8000",
      "gossip": "198.13.134.17:8001",
      "pubkey": "9TxLfw7iLoK26o6m5XCUMbcCCaPhKqs3a72gdc8qSEqW",
      "pubsub": null,
      "tpuQuic": "198.13.134.17:8002",
      "tpuVote": "198.13.134.17:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.17:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.17:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.175:8001",
      "gossip": "64.130.37.175:8000",
      "pubkey": "8s15BRTzAYi3xBbxuC8CankTUwzMyMDpc33hY2MgEJNz",
      "pubsub": null,
      "tpuQuic": "64.130.37.175:8002",
      "tpuVote": "64.130.37.175:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.37.175:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.175:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.124:8002",
      "gossip": "64.130.44.124:8001",
      "pubkey": "ChsXtSWYz52W7xn3cBj2ZASKrFRdRu3zJk8DSC2KYGNr",
      "pubsub": null,
      "tpuQuic": "64.130.44.124:8003",
      "tpuVote": "64.130.44.124:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.124:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.124:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.226:8002",
      "gossip": "51.81.162.24:8001",
      "pubkey": "F1v2exk6A3WSmxC6hMY3TjBXao3PkyqNUDYCb7S9s649",
      "pubsub": null,
      "tpuQuic": "51.81.162.24:8003",
      "tpuVote": "51.81.162.24:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.162.24:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.162.24:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.22.115.201:8001",
      "gossip": "64.22.115.201:8000",
      "pubkey": "AN7iYYkqDGJeYRLjpySvcygPZQvEvFov8tSgQr8JDdN6",
      "pubsub": null,
      "tpuQuic": "64.22.115.201:8002",
      "tpuVote": "64.22.115.201:8004",
      "version": "4.1.0-beta.2",
      "clientId": "JitoLabs",
      "featureSet": 713536442,
      "serveRepair": "64.22.115.201:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.22.115.201:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.25:8002",
      "gossip": "5.135.124.19:8001",
      "pubkey": "2SufDHyTqfVBTViJUSBej1BZuHpxcHLrPBU8jDfo4x5V",
      "pubsub": null,
      "tpuQuic": "5.135.124.19:8003",
      "tpuVote": "5.135.124.19:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.124.19:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.124.19:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.23:8888",
      "gossip": "63.254.161.183:8000",
      "pubkey": "EmLZmwx3dXPXaUUQY4AB6shk2u1wHf4mQnnhzL5mah8E",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.117.241:8001",
      "gossip": "67.213.117.241:8000",
      "pubkey": "F4pPHpCwH9EDDQ1VGVHVBomRqDvBP89KmBKx6HDymTZh",
      "pubsub": null,
      "tpuQuic": "67.213.117.241:8002",
      "tpuVote": "67.213.117.241:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "67.213.117.241:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.117.241:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.58.178.114:8001",
      "gossip": "38.58.178.114:8000",
      "pubkey": "jUnKceXUMXKNDfren3SQsvBBe73y5nnpbrjSUXu3aWF",
      "pubsub": null,
      "tpuQuic": "38.58.178.114:8002",
      "tpuVote": "38.58.178.114:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "38.58.178.114:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.58.178.114:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.58:8888",
      "gossip": "198.13.133.42:8000",
      "pubkey": "ea5sd6jRUkusq5Q75L6DMRSaj1PeibX7hjQ9CyziLrD",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.73:8001",
      "gossip": "64.130.32.73:8000",
      "pubkey": "CuF2D1m58y7nrKeETrFsqbWnWnWH9aJZLiMVhvZRpULH",
      "pubsub": null,
      "tpuQuic": "64.130.32.73:8002",
      "tpuVote": "64.130.32.73:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.32.73:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.73:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.81:8001",
      "gossip": "64.130.54.81:8000",
      "pubkey": "7QgFJjod2SkMSubrkVaGaTPMzkToSg7EdKv2eoiuhsBW",
      "pubsub": null,
      "tpuQuic": "64.130.54.81:8002",
      "tpuVote": "64.130.54.81:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.81:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.81:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.202:8002",
      "gossip": "176.31.67.94:8001",
      "pubkey": "B7zomQSspfhbEEvCy8kLQ7MRzjKBDCxtZWyE9mZVkZEA",
      "pubsub": null,
      "tpuQuic": "176.31.67.94:8003",
      "tpuVote": "176.31.67.94:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "176.31.67.94:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "176.31.67.94:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.109.86:8001",
      "gossip": "208.91.109.86:8000",
      "pubkey": "8qq9ZCYRWE3tXwaaCrQumViTuRcmGPHkqfurDB4Kj9mu",
      "pubsub": null,
      "tpuQuic": "208.91.109.86:8002",
      "tpuVote": "208.91.109.86:8004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "208.91.109.86:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.86:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.162.93.121:8002",
      "gossip": "69.162.93.121:8001",
      "pubkey": "FPBUHDNpSBM6mTGZ14nzYKbwmNFQKu6p7waFJJnfVHc",
      "pubsub": null,
      "tpuQuic": "69.162.93.121:8003",
      "tpuVote": "69.162.93.121:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "69.162.93.121:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.162.93.121:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.206:8001",
      "gossip": "64.130.42.206:8000",
      "pubkey": "9XZ8Y3fahBaYPRfx6FSxGJNCNUMrRLnnHcdv9QNa5WnJ",
      "pubsub": null,
      "tpuQuic": "64.130.42.206:8002",
      "tpuVote": "64.130.42.206:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.206:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.206:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.56:8888",
      "gossip": "198.13.133.40:8000",
      "pubkey": "HMBLFS4XMS2Mz8GtSDPd5v77orpMEU7FQSceRVxa3Mg2",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.216:8002",
      "gossip": "64.130.32.216:8001",
      "pubkey": "HSk6h7VaVeV1jXWY6TJHbx1YkXJmdJRuceVTpYsVLxBq",
      "pubsub": null,
      "tpuQuic": "64.130.32.216:8003",
      "tpuVote": "64.130.32.216:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.216:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.216:8004"
    },
    {
      "rpc": "64.130.42.69:8899",
      "tpu": null,
      "tvu": "64.130.42.69:8001",
      "gossip": "64.130.42.69:8000",
      "pubkey": "8ZpiKbPMaJQZR6HZM6KYt5F7KKRZYfAmK4vAG6RtpfAh",
      "pubsub": "64.130.42.69:8900",
      "tpuQuic": "64.130.42.69:8002",
      "tpuVote": "64.130.42.69:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.69:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.69:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.123:8002",
      "gossip": "51.222.171.25:8001",
      "pubkey": "Dfwh6hRWPx6D3Z9wKi9odMme5MDXqfzoqzC4FaBZsTg8",
      "pubsub": null,
      "tpuQuic": "51.222.171.25:8003",
      "tpuVote": "51.222.171.25:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.171.25:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.171.25:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.253:8000",
      "pubkey": "C9CLMRv1cQDSsP53p8p7DyA2K9B2LoRasv31Q1TCEjq4",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.181:8002",
      "gossip": "51.81.42.235:8001",
      "pubkey": "5odNThBPA2DyqiTbPLNdG2qZ2Mx8W6j6omwMefG3w8vR",
      "pubsub": null,
      "tpuQuic": "51.81.42.235:8003",
      "tpuVote": "51.81.42.235:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.42.235:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.42.235:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.120:8002",
      "gossip": "51.222.169.198:8001",
      "pubkey": "CEt6i8t5gVPeXEZ2fgYfrc7KovCWaaUXHc1291GuAkX7",
      "pubsub": null,
      "tpuQuic": "51.222.169.198:8003",
      "tpuVote": "51.222.169.198:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.169.198:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.169.198:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.249.134:8002",
      "gossip": "208.115.249.134:8001",
      "pubkey": "3EiyHzKas9r2yuos1fpELNgWoGKwbGv7ezUEg4mgpT6T",
      "pubsub": null,
      "tpuQuic": "208.115.249.134:8003",
      "tpuVote": "208.115.249.134:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "208.115.249.134:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.249.134:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.108:8002",
      "gossip": "202.8.11.108:8001",
      "pubkey": "FFz94BntdVzbHo1uh58ysxLk1M2b4nX9RgzKWPNxhw1f",
      "pubsub": null,
      "tpuQuic": "202.8.11.108:8003",
      "tpuVote": "202.8.11.108:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.108:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.108:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.62:8888",
      "gossip": "198.13.136.239:8000",
      "pubkey": "4ZjA66mBCJuhyBBDWiqprDCPt8B9HRnjewgzBbzGfED5",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.16:8002",
      "gossip": "64.130.33.16:8001",
      "pubkey": "7nBiyTcG5UTcp8Zx79cs1y3tumpwHq3f8foZkvV5yiV9",
      "pubsub": null,
      "tpuQuic": "64.130.33.16:8003",
      "tpuVote": "64.130.33.16:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.33.16:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.16:8004"
    },
    {
      "rpc": "64.130.47.136:8899",
      "tpu": null,
      "tvu": "64.130.47.136:8001",
      "gossip": "64.130.47.136:8000",
      "pubkey": "BUekem63xxYdNoG3ZYmazQ8wwUfJfnA8eyoAHuYvZZ7i",
      "pubsub": "64.130.47.136:8900",
      "tpuQuic": "64.130.47.136:8002",
      "tpuVote": "64.130.47.136:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "64.130.47.136:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.136:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.193:8002",
      "gossip": "145.239.203.29:8001",
      "pubkey": "D837tShJHxUxcYfddcEwn1o3V7ZBmytHvaB3bpQLHAN4",
      "pubsub": null,
      "tpuQuic": "145.239.203.29:8003",
      "tpuVote": "145.239.203.29:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "145.239.203.29:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "145.239.203.29:8004"
    },
    {
      "rpc": "64.130.63.254:8899",
      "tpu": null,
      "tvu": "64.130.63.254:8001",
      "gossip": "64.130.63.254:8000",
      "pubkey": "D2zE3vSQeS32aHcntEi22d9szVWjMx59kocJ3KPdGHin",
      "pubsub": "64.130.63.254:8900",
      "tpuQuic": "64.130.63.254:8002",
      "tpuVote": "64.130.63.254:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.254:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.254:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.23.174:8002",
      "gossip": "64.31.23.174:8001",
      "pubkey": "HGSkV8vFUhPBiVMQUgBgnscKBk2STntLAK3kqQreeoyU",
      "pubsub": null,
      "tpuQuic": "64.31.23.174:8003",
      "tpuVote": "64.31.23.174:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.23.174:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.23.174:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.189.81:8002",
      "gossip": "84.32.189.81:8001",
      "pubkey": "FegupyRyRtE7F3VTkSmnBYRKXLgLrv8DyDL64bbf4Z9W",
      "pubsub": null,
      "tpuQuic": "84.32.189.81:8003",
      "tpuVote": "84.32.189.81:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "84.32.189.81:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.189.81:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.43:8000",
      "pubkey": "6U7WXLXK6DUDNnD7URBqYoYcuGyRBivqn3MNVqmjLmf6",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.48:8888",
      "gossip": "198.13.136.225:8000",
      "pubkey": "8QjeUeSdLJo5u4FqJYqiDTLxAyDynVQW6nhGbipd9pFM",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.173:8000",
      "pubkey": "AVVCu1EFL1VZ7dLR9wctXmVrDat3g9ciixkFinGu6mYN",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.210:8003",
      "gossip": "208.91.110.210:8001",
      "pubkey": "FVZax298zj5VB9dEHvyC3LPeQ8PZwBAiBzBzZe5QNc3X",
      "pubsub": null,
      "tpuQuic": "208.91.110.210:9007",
      "tpuVote": "208.91.110.210:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "208.91.110.210:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.210:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.42.231.99:8001",
      "gossip": "89.42.231.99:8000",
      "pubkey": "EN3WJGTgEph4dyVa2vLMS2T8BcFvBwL55pccLyEwUchT",
      "pubsub": null,
      "tpuQuic": "89.42.231.99:8002",
      "tpuVote": "89.42.231.99:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "89.42.231.99:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.42.231.99:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.214.67:8001",
      "gossip": "2.57.214.67:8000",
      "pubkey": "EjXEu7NjWnQg7i8dqEhfaeyLD2oQ5chUhSt3GjUX23SG",
      "pubsub": null,
      "tpuQuic": "2.57.214.67:8002",
      "tpuVote": "2.57.214.67:8004",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "2.57.214.67:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "2.57.214.67:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.239:8002",
      "gossip": "5.135.193.218:8001",
      "pubkey": "EQiVF1AqNcLUEQnjRnUKbq6UuCo32M64rkAjpM3ysYMC",
      "pubsub": null,
      "tpuQuic": "5.135.193.218:8003",
      "tpuVote": "5.135.193.218:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.193.218:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.193.218:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.120.79:8001",
      "gossip": "67.213.120.79:8000",
      "pubkey": "2Vku5LUXQg9jeUVjYeoAzEK3bgoWuwCTy2JW1QhbjTK8",
      "pubsub": null,
      "tpuQuic": "67.213.120.79:8002",
      "tpuVote": "67.213.120.79:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.120.79:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.120.79:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.16.242.196:8001",
      "gossip": "84.16.242.196:8000",
      "pubkey": "81PhMM4Ttf9ipPyEdG5xykyDqQap7LxdZu3UWn6Xs6qV",
      "pubsub": null,
      "tpuQuic": "84.16.242.196:8002",
      "tpuVote": "84.16.242.196:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "84.16.242.196:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.16.242.196:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.42.231.164:8001",
      "gossip": "89.42.231.164:8000",
      "pubkey": "89kGiSeYDLo2iWY2nFk8zNbZNFasPqF5Hy8eYXGaJJTe",
      "pubsub": null,
      "tpuQuic": "89.42.231.164:8002",
      "tpuVote": "89.42.231.164:8004",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "89.42.231.164:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.42.231.164:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.148:8002",
      "gossip": "51.81.27.86:8001",
      "pubkey": "5rt8WFRwxx7H6aPT1Vefo5S2sM7mggFqCRTbjb672rFA",
      "pubsub": null,
      "tpuQuic": "51.81.27.86:8003",
      "tpuVote": "51.81.27.86:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.27.86:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.27.86:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.133:8001",
      "gossip": "64.130.63.133:8000",
      "pubkey": "5m9PAnmq4YaqboKEwgMNrSdzpiLBnHojYRAFs24rXkKj",
      "pubsub": null,
      "tpuQuic": "64.130.63.133:8002",
      "tpuVote": "64.130.63.133:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.63.133:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.133:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "139.162.158.144:8003",
      "gossip": "139.162.158.144:8004",
      "pubkey": "2d3TuZEDZuCwuAfB7ZsQCEEw5cMYiVWcJ37jN9UEWtc3",
      "pubsub": null,
      "tpuQuic": "139.162.158.144:8007",
      "tpuVote": null,
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 1670369118,
      "serveRepair": "139.162.158.144:8006",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "139.162.158.144:8008"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.31:8002",
      "gossip": "51.75.32.27:8001",
      "pubkey": "FbDvE8TuVRjEhC28cnXvhck7d5Yy5aEnTaks7WYtKwLA",
      "pubsub": null,
      "tpuQuic": "51.75.32.27:8003",
      "tpuVote": "51.75.32.27:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.75.32.27:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.75.32.27:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.116:8002",
      "gossip": "51.222.169.170:8001",
      "pubkey": "8uCFiPLmhpyqqCQcX8C6RtmW3zLCk67zQCCfBwzZw9Mz",
      "pubsub": null,
      "tpuQuic": "51.222.169.170:8003",
      "tpuVote": "51.222.169.170:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.169.170:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.169.170:8004"
    },
    {
      "rpc": "64.130.49.117:8899",
      "tpu": null,
      "tvu": "64.130.49.117:8001",
      "gossip": "64.130.49.117:8000",
      "pubkey": "AbaEAqMJpm9xBQXb5twXDG7xPXvmZhrQXeezvNDN6gPo",
      "pubsub": "64.130.49.117:8900",
      "tpuQuic": "64.130.49.117:8002",
      "tpuVote": "64.130.49.117:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.49.117:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.117:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.134:8000",
      "gossip": "64.130.44.134:8001",
      "pubkey": "4bs5EkZPjNSmxmtnVMTBc76vMhF8Uu6p9Kn9JazXNLE3",
      "pubsub": null,
      "tpuQuic": "64.130.44.134:8002",
      "tpuVote": "64.130.44.134:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.134:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.134:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.54.152.245:8003",
      "gossip": "86.54.152.245:8001",
      "pubkey": "9gXW6yP4bpvfkySMiQjTaxe3XLdJBohBfUovSg4c2qa8",
      "pubsub": null,
      "tpuQuic": "86.54.152.245:8037",
      "tpuVote": "86.54.152.245:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "86.54.152.245:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.54.152.245:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.250:8002",
      "gossip": "51.255.148.97:8001",
      "pubkey": "FFWW7Mn26WhLjpJULU6SvfA6NKaMQqog166XG3ammscG",
      "pubsub": null,
      "tpuQuic": "51.255.148.97:8003",
      "tpuVote": "51.255.148.97:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.255.148.97:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.255.148.97:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.192:8002",
      "gossip": "145.239.203.28:8001",
      "pubkey": "2Jjud1FdoFxmUWxoQ9CSPLLj2vXSCcyi6LfTCNTDv7pg",
      "pubsub": null,
      "tpuQuic": "145.239.203.28:8003",
      "tpuVote": "145.239.203.28:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "145.239.203.28:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "145.239.203.28:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.211:8001",
      "gossip": "64.130.40.211:8000",
      "pubkey": "GS9eb2PLMknmoByQwADXbnNMFXBf5nStXYJQCNV7ozAf",
      "pubsub": null,
      "tpuQuic": "64.130.40.211:8002",
      "tpuVote": "64.130.40.211:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.211:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.211:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.136.189:8000",
      "gossip": "198.13.136.189:8001",
      "pubkey": "5m7WHQxY6DJ11wwT9cYqfm7hnuna2XvneZhiJkS5zbJh",
      "pubsub": null,
      "tpuQuic": "198.13.136.189:8002",
      "tpuVote": "198.13.136.189:8004",
      "version": "4.1.0-rc.0",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "198.13.136.189:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.136.189:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "62.113.194.149:8002",
      "gossip": "62.113.194.149:8001",
      "pubkey": "2st6cu2gHCkMxZ54ZfFrVsM8iwounT7rUu5B39BJyKq7",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": "62.113.194.149:8005",
      "version": "4.1.0-beta.3",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.156:8002",
      "gossip": "51.81.30.22:8001",
      "pubkey": "4Lq1d72tmE1uwma8ZkRgvkRrcXDgx4XqwJuJkEXENkRi",
      "pubsub": null,
      "tpuQuic": "51.81.30.22:8003",
      "tpuVote": "51.81.30.22:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.30.22:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.30.22:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.194.56.22:8101",
      "gossip": "185.194.56.22:8100",
      "pubkey": "7yRpFxt4femAwuCfu2HKKTJf8c12TCq7MH8nceyiDZGn",
      "pubsub": null,
      "tpuQuic": "185.194.56.22:8102",
      "tpuVote": "185.194.56.22:8104",
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": "185.194.56.22:8109",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.194.56.22:8103"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "43.167.160.84:8000",
      "gossip": "43.167.160.84:9000",
      "pubkey": "AkRU5Q8PfE5A7gZetv3HRMDUFT6kCjWNey4RsdfLwzV7",
      "pubsub": null,
      "tpuQuic": "43.167.160.84:8001",
      "tpuVote": "43.167.160.84:8003",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "43.167.160.84:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "43.167.160.84:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "148.72.141.215:8000",
      "gossip": "148.72.141.215:8001",
      "pubkey": "DRXT8ddhB8KH8S8owKBSMNBpuf9XaYNCAaKk4rJh6GeE",
      "pubsub": null,
      "tpuQuic": "148.72.141.215:8002",
      "tpuVote": "148.72.141.215:8004",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "148.72.141.215:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "148.72.141.215:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "67.213.123.118:8000",
      "pubkey": "9spU2b9W45tw6kmpHoFWxciVeYVQ5aRGE5Lt36iriKXR",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.83.103:8000",
      "pubkey": "8jtQfcsqKY31tZsgf19cvfgV89BezduufvPVCfQeVSG",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.209:8888",
      "gossip": "64.130.46.209:8000",
      "pubkey": "B6xbtYBoVPpEEzNYeRLFJCyaKHKrc258KPm7BdTFchFf",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.234:8002",
      "gossip": "198.13.130.234:8001",
      "pubkey": "DWSdoqTaZnUUZ2pskqvLYuv78Vkjk1KgRfZtkmexsa9r",
      "pubsub": null,
      "tpuQuic": "198.13.130.234:8003",
      "tpuVote": "198.13.130.234:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "198.13.130.234:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.234:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.250:8001",
      "gossip": "64.130.33.250:8000",
      "pubkey": "9RBEKp8VLGs6Sn6CYb1oAWCXzgcBdX2RyhsxTMUA3jHa",
      "pubsub": null,
      "tpuQuic": "64.130.33.250:8002",
      "tpuVote": "64.130.33.250:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.33.250:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.250:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.172:8000",
      "pubkey": "6Bk2SvzLLePTRUVYXpGA6JsN3xZKRWtzWExGQYfVVUYs",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.24:8002",
      "gossip": "5.135.124.18:8001",
      "pubkey": "14M8twnCNZbAESGVa7nkztFH8gvtJ6622WKwUqMNpZr5",
      "pubsub": null,
      "tpuQuic": "5.135.124.18:8003",
      "tpuVote": "5.135.124.18:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.124.18:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.124.18:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.54.153.245:8003",
      "gossip": "86.54.153.245:8001",
      "pubkey": "7nkWFS3gc5zKFJmjMHdJRwhvddPRW8fyo3zih3NJdjD1",
      "pubsub": null,
      "tpuQuic": "86.54.153.245:8037",
      "tpuVote": "86.54.153.245:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "86.54.153.245:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.54.153.245:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.238:8002",
      "gossip": "51.81.190.0:8001",
      "pubkey": "12a6SXr4jM6uZ3QtBBR7ejhK8jbaHv8d3GQtfpK5TF1M",
      "pubsub": null,
      "tpuQuic": "51.81.190.0:8003",
      "tpuVote": "51.81.190.0:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.190.0:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.190.0:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.251:8002",
      "gossip": "51.81.214.69:8001",
      "pubkey": "FT3hDP9jUahJ9jTahDYAfyXPoAv9CCLXvALhLSFe1nhv",
      "pubsub": null,
      "tpuQuic": "51.81.214.69:8003",
      "tpuVote": "51.81.214.69:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.214.69:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.214.69:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.47:8888",
      "gossip": "63.254.162.95:8000",
      "pubkey": "Bo5xdmNop8npMoE9fvbPwwnqwGZR32tuQ6Lu3FgY4vo9",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.221:8002",
      "gossip": "5.135.174.157:8001",
      "pubkey": "DkNTdWG8SZW6UFKPPtvkDFD6ELe1MyZ7tjycxTzpDy8y",
      "pubsub": null,
      "tpuQuic": "5.135.174.157:8003",
      "tpuVote": "5.135.174.157:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.174.157:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.174.157:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.78:8002",
      "gossip": "51.222.146.244:8001",
      "pubkey": "G43T2jH6tUiwYz3MnnmMBQC8ZGvztb81LhqJCfPXCzAU",
      "pubsub": null,
      "tpuQuic": "51.222.146.244:8003",
      "tpuVote": "51.222.146.244:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.146.244:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.146.244:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.8.147:8002",
      "gossip": "202.8.8.147:8001",
      "pubkey": "4JA9cGbgAKEbkomJ9VM2gm9SzfafNJsrPE5GMsNzW4xn",
      "pubsub": null,
      "tpuQuic": "202.8.8.147:8003",
      "tpuVote": "202.8.8.147:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.8.147:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.8.147:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.115:8000",
      "pubkey": "GzDxdrePxRmLPwDP98B7qoVERKSc9LV98DSyDdVUCLQF",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.107:8000",
      "pubkey": "G8Pyj66fDFWBreiBgqyahDBxUvkF6CJZDB7GQB6M3fqA",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.135:8002",
      "gossip": "141.98.219.135:8001",
      "pubkey": "Jb7rQ1MieKdhtmLp1X3wbZYwGTJDVFtLyJrVpb6oM1U",
      "pubsub": null,
      "tpuQuic": "141.98.219.135:8003",
      "tpuVote": "141.98.219.135:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.219.135:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.135:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.10:8888",
      "gossip": "198.13.140.171:8000",
      "pubkey": "5dKwTwJGw1j5SU47Twk9BqL7zpKQbBVWixpcCwAdjWLD",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.208:8002",
      "gossip": "5.135.171.252:8001",
      "pubkey": "6iiaWdLPzNYX4EGvXzfn628emupUuqFLccfdkLQs2GfZ",
      "pubsub": null,
      "tpuQuic": "5.135.171.252:8003",
      "tpuVote": "5.135.171.252:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.171.252:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.171.252:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.188:8002",
      "gossip": "57.128.146.12:8001",
      "pubkey": "GkJjXRdqswg2aYUgJ3W4uE525aqoftdnv8JK6mBEB5fi",
      "pubsub": null,
      "tpuQuic": "57.128.146.12:8003",
      "tpuVote": "57.128.146.12:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "57.128.146.12:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.128.146.12:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.243:8002",
      "gossip": "5.135.194.218:8001",
      "pubkey": "8dMvrPr3bAKNt6rctsdWu9Jkw9E6fKR6Vq9GfPRNbTjD",
      "pubsub": null,
      "tpuQuic": "5.135.194.218:8003",
      "tpuVote": "5.135.194.218:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.194.218:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.194.218:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.181:8002",
      "gossip": "64.130.57.181:8001",
      "pubkey": "Yc692jxnDSN3hoY3xK5a1wYSGau2Qo6tnapAxSySQhS",
      "pubsub": null,
      "tpuQuic": "64.130.57.181:8003",
      "tpuVote": "64.130.57.181:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.57.181:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.181:8004"
    },
    {
      "rpc": "67.213.115.9:8899",
      "tpu": null,
      "tvu": "67.213.115.9:8002",
      "gossip": "67.213.115.9:8001",
      "pubkey": "7Np41oeYqPefeNQEHSv1UDhYrehxin3NStELsSKCT4K2",
      "pubsub": "67.213.115.9:8900",
      "tpuQuic": "67.213.115.9:8003",
      "tpuVote": "67.213.115.9:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.115.9:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.115.9:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.12:8002",
      "gossip": "64.130.58.12:8001",
      "pubkey": "9YPDYNXfYsfwBQnyp32ntzGrENczxhw94vBSDGmpukPS",
      "pubsub": null,
      "tpuQuic": "64.130.58.12:8003",
      "tpuVote": "64.130.58.12:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.58.12:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.12:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.10.163:8001",
      "gossip": "202.8.10.163:8000",
      "pubkey": "5wg1KQL6kb1qwFknjVkdz8dcDj86xfX2bDgKTPmZESbs",
      "pubsub": null,
      "tpuQuic": "202.8.10.163:8002",
      "tpuVote": "202.8.10.163:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.10.163:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.10.163:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.217.184:8001",
      "gossip": "141.98.217.184:8000",
      "pubkey": "Fg88LMe81uEoeFPV1YLBJ14hGzkLM3WEan8EunerbYau",
      "pubsub": null,
      "tpuQuic": "141.98.217.184:8002",
      "tpuVote": "141.98.217.184:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "141.98.217.184:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.217.184:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.52.162:8002",
      "gossip": "64.31.52.162:8001",
      "pubkey": "AFG3eBxZR5PMP1KTgoLoDwL7vr5oeHrmYy329MnQwhqT",
      "pubsub": null,
      "tpuQuic": "64.31.52.162:8003",
      "tpuVote": "64.31.52.162:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.52.162:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.52.162:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.253:8001",
      "gossip": "198.13.134.253:8000",
      "pubkey": "DNPTvDYtaRxNR93La2b8uRKWFR159ZJWvNZ39QzUy8mE",
      "pubsub": null,
      "tpuQuic": "198.13.134.253:8002",
      "tpuVote": "198.13.134.253:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "198.13.134.253:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.253:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "203.23.178.55:8001",
      "gossip": "203.23.178.55:8000",
      "pubkey": "3Smohbfb9i3Zr6NHyGwsnPcgySHvoQ1hHC1zUs1CTJgx",
      "pubsub": null,
      "tpuQuic": "203.23.178.55:8009",
      "tpuVote": "203.23.178.55:8003",
      "version": "0.910.40000",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 3718597879,
      "serveRepair": "203.23.178.55:8018",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "203.23.178.55:8009"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.32.62:8002",
      "gossip": "64.31.32.62:8001",
      "pubkey": "HqznV1r74mTAAoEfvw1gkpeXHZyTvKTst3yGiqvpUeyJ",
      "pubsub": null,
      "tpuQuic": "64.31.32.62:8003",
      "tpuVote": "64.31.32.62:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.32.62:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.32.62:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.235:8001",
      "gossip": "185.191.117.235:8000",
      "pubkey": "89MrDfV3BZ7ExXe5X2GasXcv5eLJoZezigmttKpU9ibk",
      "pubsub": null,
      "tpuQuic": "185.191.117.235:8009",
      "tpuVote": "185.191.117.235:8005",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "185.191.117.235:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.235:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.178:8002",
      "gossip": "51.89.161.226:8001",
      "pubkey": "s9UUo59QLFeCSqQRYum2cyGzeZPg7CsfYbkekcMwY3Y",
      "pubsub": null,
      "tpuQuic": "51.89.161.226:8003",
      "tpuVote": "51.89.161.226:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.161.226:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.161.226:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.216:8002",
      "gossip": "5.135.174.16:8001",
      "pubkey": "BVN7cj1GV5mZYDk7svycpBsYAuctrSy1dFHbAanrRa43",
      "pubsub": null,
      "tpuQuic": "5.135.174.16:8003",
      "tpuVote": "5.135.174.16:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.174.16:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.174.16:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.238.89.228:8001",
      "gossip": "216.238.89.228:8000",
      "pubkey": "1unarWPGGseFag2WfnoFv8o9P7vTPU8eHex9GinP3eY",
      "pubsub": null,
      "tpuQuic": "216.238.89.228:8009",
      "tpuVote": "216.238.89.228:8005",
      "version": "3.1.13",
      "clientId": "JitoLabs",
      "featureSet": 534737035,
      "serveRepair": "216.238.89.228:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.238.89.228:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "199.254.199.89:8991",
      "gossip": "199.254.199.89:8000",
      "pubkey": "HzzCxwDfnf819ZeN8ZoNiFy9ewDYAo9Gdzazp3hA5K46",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.1.13",
      "clientId": "Agave",
      "featureSet": 1725507508,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.107:8002",
      "gossip": "51.89.106.39:8001",
      "pubkey": "2WX5yMbE8KKfrGq3MjRnwppNj1LqhFHWXRGUKzcxf5sn",
      "pubsub": null,
      "tpuQuic": "51.89.106.39:8003",
      "tpuVote": "51.89.106.39:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.106.39:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.106.39:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.156:8888",
      "gossip": "198.13.141.60:8000",
      "pubkey": "3C4MrAcVqT76Ge8Uua3wrRJRZidpgQYe44Xunx3fNbUH",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "34.84.189.139:38001",
      "gossip": "34.84.189.139:38000",
      "pubkey": "9h8gj8vSZGbntjbVZCWDQJmyBwxJe2ikQeUk2Q5VqQgz",
      "pubsub": null,
      "tpuQuic": "34.84.189.139:38002",
      "tpuVote": "34.84.189.139:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "34.84.189.139:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "34.84.189.139:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.51:8000",
      "pubkey": "EUery7NeNQkGRmxuKLYisYzSLYHJjE1bv2XL6bsMiJ2v",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "18.171.177.103:8000",
      "pubkey": "8LBtW4B5CXSiR1JzZsdCejwAWAkuHDeWHcYJGHHNqkbB",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.151:8003",
      "gossip": "64.130.33.151:8001",
      "pubkey": "BJykitA3jrsqPUq3ctn42PU6oezoF4VpGcMPbaXHtpAJ",
      "pubsub": null,
      "tpuQuic": "64.130.33.151:9007",
      "tpuVote": "64.130.33.151:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "64.130.33.151:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.151:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.172:8002",
      "gossip": "51.77.102.100:8001",
      "pubkey": "GrgK1LKbTxiy3x1wpJc7QYw74KM38yoVDJctPJtE9go2",
      "pubsub": null,
      "tpuQuic": "51.77.102.100:8003",
      "tpuVote": "51.77.102.100:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.77.102.100:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.77.102.100:8004"
    },
    {
      "rpc": "189.1.171.101:21611",
      "tpu": null,
      "tvu": "189.1.171.101:11601",
      "gossip": "189.1.171.101:21610",
      "pubkey": "J2wfaArHx7W2rZjoYBeBANJqQmpBzQvMyMshGHkAiYNu",
      "pubsub": "189.1.171.101:21612",
      "tpuQuic": "189.1.171.101:11602",
      "tpuVote": "189.1.171.101:11604",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "189.1.171.101:11609",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "189.1.171.101:11603"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.166:8000",
      "pubkey": "HxNBhR5wThtn6Z3L8KB2YWkUUkAVj5CAvEknTnw8PBMo",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.130:8002",
      "gossip": "51.81.25.224:8001",
      "pubkey": "A7ehG5bPLtJWQbCFoqRJrjpFsVeEybZWkEoJk2fGbXfh",
      "pubsub": null,
      "tpuQuic": "51.81.25.224:8003",
      "tpuVote": "51.81.25.224:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.25.224:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.25.224:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.40:8000",
      "pubkey": "AvdkbnGpTgknoHyzFPzdRk7UyzcbF69w1cfnAVviZTbd",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.229:8002",
      "gossip": "5.135.193.192:8001",
      "pubkey": "7iwBCwQ4o5PSaMTCyBrjM2d56UT7bn1MUBHjEG3MjYJ7",
      "pubsub": null,
      "tpuQuic": "5.135.193.192:8003",
      "tpuVote": "5.135.193.192:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.193.192:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.193.192:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "204.16.244.99:7001",
      "pubkey": "3Tq877iEyDe5s2NCGjAZhqwngJvvBCuS3hGNbxuiCM9g",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.113:8002",
      "gossip": "198.13.130.113:8001",
      "pubkey": "FFyNPEaXAtZ1raysJq4djh4n92tVFF4FDG1DkoufCNcz",
      "pubsub": null,
      "tpuQuic": "198.13.130.113:8003",
      "tpuVote": "198.13.130.113:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.113:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.113:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.80:8002",
      "gossip": "51.222.146.246:8001",
      "pubkey": "Fgq64joFcndcZajHeTTcdiz4NxMKpVm8atemv5M1ygGi",
      "pubsub": null,
      "tpuQuic": "51.222.146.246:8003",
      "tpuVote": "51.222.146.246:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.146.246:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.146.246:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.71:8001",
      "gossip": "185.191.117.71:8000",
      "pubkey": "EgThzACchazqmpK3RxgHQxWCZSHDAqbkAFv43KCJzPi",
      "pubsub": null,
      "tpuQuic": "185.191.117.71:8002",
      "tpuVote": "185.191.117.71:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.71:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.71:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.104:8000",
      "gossip": "64.130.50.104:8001",
      "pubkey": "Agygf19u4PFuFVp1x8cAyXL9a4jbPUmmFsZh9KF5Lt8A",
      "pubsub": null,
      "tpuQuic": "64.130.50.104:8009",
      "tpuVote": "64.130.50.104:8005",
      "version": "2.2.15",
      "clientId": "JitoLabs",
      "featureSet": 798020478,
      "serveRepair": "64.130.50.104:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.104:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.147:8002",
      "gossip": "51.38.85.19:8001",
      "pubkey": "3q2zEYgUxdNqotdixLY5dyeMJnmS9g4qK6ioqVxrZ9rJ",
      "pubsub": null,
      "tpuQuic": "51.38.85.19:8003",
      "tpuVote": "51.38.85.19:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.85.19:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.85.19:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.55.93.247:8001",
      "gossip": "162.55.93.247:8000",
      "pubkey": "DoXJMeDkLriEzKPfsoXSmXUbxiR4ZXikA8SWm7CGSLV",
      "pubsub": null,
      "tpuQuic": "162.55.93.247:8002",
      "tpuVote": "162.55.93.247:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "162.55.93.247:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.55.93.247:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.29:8002",
      "gossip": "5.135.126.175:8001",
      "pubkey": "AoMTqEqNsmXw14G3Zj1NCbosWBiuGRXXwz7DYXRjvcZf",
      "pubsub": null,
      "tpuQuic": "5.135.126.175:8003",
      "tpuVote": "5.135.126.175:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.126.175:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.126.175:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.134:8002",
      "gossip": "51.81.25.244:8001",
      "pubkey": "J9fDR8djXU8qJ73UdkZxAycDrgeD8H4Ed944UDSPRYTW",
      "pubsub": null,
      "tpuQuic": "51.81.25.244:8003",
      "tpuVote": "51.81.25.244:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.25.244:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.25.244:8004"
    },
    {
      "rpc": "206.223.231.171:21611",
      "tpu": null,
      "tvu": "206.223.231.171:11601",
      "gossip": "206.223.231.171:21610",
      "pubkey": "7Vi5c1LagFTgmuEbvHRWM7UbbAMWNthiQXac2y5fueDr",
      "pubsub": "206.223.231.171:21612",
      "tpuQuic": "206.223.231.171:11602",
      "tpuVote": "206.223.231.171:11604",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "206.223.231.171:11609",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "206.223.231.171:11603"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.35:8888",
      "gossip": "63.254.162.83:8000",
      "pubkey": "AWMwvwbiN5DSA5KaYJwAb1TRRzz1JrmFEZfZmuTeHfHA",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "141.98.219.140:8001",
      "pubkey": "Gq6s2XfTViN6MtM2v6XjqiXKFPrJEvj8CGMWe67JTEET",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.134.64:8003",
      "gossip": "45.139.134.64:8001",
      "pubkey": "DummYHDp8T9T7EVRczNJynFLEBGD49bvbTDtvj1gF5GZ",
      "pubsub": null,
      "tpuQuic": "45.139.134.64:9007",
      "tpuVote": "45.139.134.64:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "45.139.134.64:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.139.134.64:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.14:8888",
      "gossip": "198.13.140.175:8000",
      "pubkey": "44ofst3tYTV54Uam7GeuQkTFuY57k1UkgXwb8nLrCnVs",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "193.118.169.103:8001",
      "gossip": "193.118.169.103:8000",
      "pubkey": "3hHE11QAwb3MjpHGF6UqPPtc6dV1eYut4nzJUUcmPmbH",
      "pubsub": null,
      "tpuQuic": "193.118.169.103:8002",
      "tpuVote": "193.118.169.103:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "193.118.169.103:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "193.118.169.103:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.221:8001",
      "gossip": "64.130.63.221:8000",
      "pubkey": "EHgBPwWpUKDmcpLsVVBRV6x5pS4eK3Px2L9ux9qpLjSV",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "64.130.63.221:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.90.84:8001",
      "gossip": "57.129.90.84:8000",
      "pubkey": "8s3AVwE3Q8SGf7MEwTAtNoUuP2gCobuGn57XRVqfapu4",
      "pubsub": null,
      "tpuQuic": "57.129.90.84:8002",
      "tpuVote": "57.129.90.84:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "57.129.90.84:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.90.84:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.169:8000",
      "pubkey": "owRVgYxyHeX1d5quQ7qoEJj8BBsXaSLxgo3UdHGgiXW",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.40:8888",
      "gossip": "63.254.162.88:8000",
      "pubkey": "416Bqrospc54CbHqMhVgqgMPxgY8PQUMPXcPhcfJUix9",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.255:8001",
      "gossip": "64.130.51.255:8000",
      "pubkey": "79K8nzNRoc46ZZAZes3PJim8xyPnQcZtLNHBKE8uvNME",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.112:8000",
      "pubkey": "5pwQE5wDxFc8HoWoGDwpfeK3PNcPDYcbBcE4MrNTgkkN",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.52:8002",
      "gossip": "64.130.63.52:8001",
      "pubkey": "Fqo2eYdhRXJQmrtYcFM47A5ve8zmmDQsaPjXYEAwVgVr",
      "pubsub": null,
      "tpuQuic": "64.130.63.52:8003",
      "tpuVote": "64.130.63.52:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.52:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.52:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "160.250.106.253:8001",
      "gossip": "160.250.106.253:8000",
      "pubkey": "4KPUZCF6Tu4HppNSwqiFZNy9nXthifQnzPiQHuvDkJiT",
      "pubsub": null,
      "tpuQuic": "160.250.106.253:8002",
      "tpuVote": "160.250.106.253:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "160.250.106.253:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "160.250.106.253:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.82:8001",
      "gossip": "64.130.63.82:8000",
      "pubkey": "4fDos9H5DdJ9EJ6ksV4NyiUZb1rTDPKnd5vteDrJW7kH",
      "pubsub": null,
      "tpuQuic": "64.130.63.82:8002",
      "tpuVote": "64.130.63.82:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.63.82:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.82:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.184:8002",
      "gossip": "54.36.227.236:8001",
      "pubkey": "8Bg9MywJgP1K22vYgtRGjCA8Cn7UhKJEmWxh2kchZPbE",
      "pubsub": null,
      "tpuQuic": "54.36.227.236:8003",
      "tpuVote": "54.36.227.236:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.36.227.236:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.36.227.236:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.120.75:8008",
      "gossip": "67.213.120.75:8007",
      "pubkey": "2LiMEoVspjA62nCqdQVf2K9zq53YnsLKtDcraPsMHihS",
      "pubsub": null,
      "tpuQuic": "67.213.120.75:8010",
      "tpuVote": "67.213.120.75:8014",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.120.75:8024",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.120.75:8013"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.99.106:8001",
      "gossip": "57.129.99.106:8000",
      "pubkey": "5Koaw7QrCscanzAyehgWJKRX559ZTQaYtLimLf5SEGCD",
      "pubsub": null,
      "tpuQuic": "57.129.99.106:8002",
      "tpuVote": "57.129.99.106:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "57.129.99.106:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.99.106:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.94:8002",
      "gossip": "64.130.54.94:8001",
      "pubkey": "96sNuJ6i2HnfFZgR9wJ7twJwNkwUvTNQq2PhRiv79KvL",
      "pubsub": null,
      "tpuQuic": "64.130.54.94:8003",
      "tpuVote": "64.130.54.94:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.94:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.94:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "146.0.227.119:8002",
      "gossip": "146.0.227.119:8001",
      "pubkey": "7eGwp3c9fyKxrbofA7aTLNBfWZ59i34aUY5qEH1aBXHT",
      "pubsub": null,
      "tpuQuic": "146.0.227.119:8003",
      "tpuVote": "146.0.227.119:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "146.0.227.119:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.0.227.119:8004"
    },
    {
      "rpc": "155.138.205.169:8899",
      "tpu": null,
      "tvu": "155.138.205.169:8001",
      "gossip": "155.138.205.169:8000",
      "pubkey": "3CZB8EX1H5t3iwA4AZEwFuKnDVKa7FsgcqzsjcKrJWt6",
      "pubsub": "155.138.205.169:8900",
      "tpuQuic": "155.138.205.169:8002",
      "tpuVote": "155.138.205.169:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "155.138.205.169:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "155.138.205.169:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.26:8888",
      "gossip": "63.254.161.186:8000",
      "pubkey": "G5W4PLrPeyXiJHFYZC9E3WRm59yiqecWKz8eoeRAvyuU",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.165:8002",
      "gossip": "51.81.38.19:8001",
      "pubkey": "HbcVw59vtrW2TDTxDBgZ4GzN3YoSrmhoFURvPnfr4P9f",
      "pubsub": null,
      "tpuQuic": "51.81.38.19:8003",
      "tpuVote": "51.81.38.19:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.38.19:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.38.19:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.51.253:8002",
      "gossip": "64.31.51.253:8001",
      "pubkey": "HoEmZYuXcVVzeNUTBTw1oidScqv5WrcXq2NZWJ72do33",
      "pubsub": null,
      "tpuQuic": "64.31.51.253:8003",
      "tpuVote": "64.31.51.253:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.51.253:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.51.253:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.42.231.18:8001",
      "gossip": "89.42.231.18:8000",
      "pubkey": "FWm8kAhQJVX5ffhEb5v81nRmE5zcf3qYPBEB8oDX2VEV",
      "pubsub": null,
      "tpuQuic": "89.42.231.18:8002",
      "tpuVote": "89.42.231.18:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "89.42.231.18:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.42.231.18:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.134.51:8001",
      "gossip": "45.139.134.51:8000",
      "pubkey": "GX7htPeiHuiMJrjgHuzmM1vE4RvWogQJo1Ad2efiAkkF",
      "pubsub": null,
      "tpuQuic": "45.139.134.51:8002",
      "tpuVote": "45.139.134.51:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "45.139.134.51:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.139.134.51:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.70:8002",
      "gossip": "64.130.58.70:8001",
      "pubkey": "945keLNPMHJ1iiaFY4Cz2p7iiTtGVCRWYeE5xzvsxBwT",
      "pubsub": null,
      "tpuQuic": "64.130.58.70:8003",
      "tpuVote": "64.130.58.70:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.58.70:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.70:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.33:8000",
      "pubkey": "5Aq9TooMXsn4KWRCsQeswSmw1AQ8C4xAM2c1r74jGiPM",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.134.108.254:8001",
      "gossip": "45.134.108.254:8000",
      "pubkey": "EK6SjLmNm37ui8mCx6WqZ8dg4aeSfTZkrmHUW3zcegsx",
      "pubsub": null,
      "tpuQuic": "45.134.108.254:8002",
      "tpuVote": "45.134.108.254:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "45.134.108.254:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.134.108.254:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.93:8002",
      "gossip": "51.89.25.69:8001",
      "pubkey": "6ZgWPGk2x2nY8nGsDqLhU4zj9BKFR6zoVy1hQsqiCxZg",
      "pubsub": null,
      "tpuQuic": "51.89.25.69:8003",
      "tpuVote": "51.89.25.69:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.69:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.69:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.249.206:8002",
      "gossip": "208.115.249.206:8001",
      "pubkey": "9JVnawVbNNuVjsrTxCbkzatA3DWbphjyd6ZBRgYkVhmb",
      "pubsub": null,
      "tpuQuic": "208.115.249.206:8003",
      "tpuVote": "208.115.249.206:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.249.206:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.249.206:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.52:8001",
      "gossip": "185.191.117.52:8000",
      "pubkey": "ykgdd19Tp3hNQpFp9JFMekWXoZh8EhwZwn6wX3BZSLV",
      "pubsub": null,
      "tpuQuic": "185.191.117.52:8002",
      "tpuVote": "185.191.117.52:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "185.191.117.52:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.52:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.186.116:8001",
      "gossip": "84.32.186.116:8000",
      "pubkey": "HgkX21YEqBf9bGcUMLvANarCyCEyPUnoqWqDhdBjiRLz",
      "pubsub": null,
      "tpuQuic": "84.32.186.116:8002",
      "tpuVote": "84.32.186.116:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "84.32.186.116:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.186.116:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.138:8002",
      "gossip": "51.38.67.30:8001",
      "pubkey": "FAe3mPn6HPCtyvazqaLLPz8UQKYGtbvHd8FtisGm8zJ4",
      "pubsub": null,
      "tpuQuic": "51.38.67.30:8003",
      "tpuVote": "51.38.67.30:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.67.30:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.67.30:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.19.222.235:8021",
      "gossip": "162.19.222.235:8001",
      "pubkey": "AjjW2TULNUNir7RbbYc6VLNZTm6GJ1GUAMNc2CUm5EKZ",
      "pubsub": null,
      "tpuQuic": "162.19.222.235:8022",
      "tpuVote": "162.19.222.235:8024",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "162.19.222.235:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.222.235:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.241.211:8002",
      "gossip": "204.16.241.211:8001",
      "pubkey": "HJHKuxLNMFmoJ5v4AzxwFc2pvuP9Axyco1WqRCzjWf5y",
      "pubsub": null,
      "tpuQuic": "204.16.241.211:8003",
      "tpuVote": "204.16.241.211:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.241.211:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.241.211:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.141.162:8001",
      "gossip": "104.204.141.162:8000",
      "pubkey": "FdomBWWgkavLFuTKS8KPJCWJku4eu3cMBsJ4tHBvFjdo",
      "pubsub": null,
      "tpuQuic": "104.204.141.162:8009",
      "tpuVote": "104.204.141.162:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.204.141.162:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.141.162:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.233:8002",
      "gossip": "51.81.171.3:8001",
      "pubkey": "7Uu4yZCrpTNZsLC6usUMohFT3KexU2E2QPHyyh6iSf9y",
      "pubsub": null,
      "tpuQuic": "51.81.171.3:8003",
      "tpuVote": "51.81.171.3:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.171.3:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.171.3:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.241:8000",
      "pubkey": "55W55rEEMGNn22p5SUvwD8GtvcK9hkQMHiLfi86HwNPj",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.29.34:8002",
      "gossip": "64.31.29.34:8001",
      "pubkey": "Cdcn2yAqBYHCDr7FSuSs1ZCVrT3t91aDrFPD6rje763Q",
      "pubsub": null,
      "tpuQuic": "64.31.29.34:8003",
      "tpuVote": "64.31.29.34:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.29.34:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.29.34:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.116.179:8002",
      "gossip": "185.191.116.179:8001",
      "pubkey": "3nDmxzyEe9RtkCQG3qQGxfjPohN6JhZSSrH43Tfo9qcX",
      "pubsub": null,
      "tpuQuic": "185.191.116.179:8003",
      "tpuVote": "185.191.116.179:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "185.191.116.179:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.116.179:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.39:8888",
      "gossip": "198.13.136.199:8000",
      "pubkey": "8FytMXNwzAkZA4CwiK7sN1thhcwQztmS4GDxwgVRAbpQ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.36:8000",
      "pubkey": "7sBtn7tZYH6Wwb9YmUjbLWnyDSnja7MZrbLUS3mccxLQ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.184.166:8000",
      "gossip": "70.40.184.166:8001",
      "pubkey": "2c4BFEXJsoyFsk2aiS7tuwCYadUXrSHek83ifH2sqNWV",
      "pubsub": null,
      "tpuQuic": "70.40.184.166:8002",
      "tpuVote": "70.40.184.166:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "70.40.184.166:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.184.166:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.62:8002",
      "gossip": "198.13.134.62:8001",
      "pubkey": "HQK4FfXXDMUzv7yRfMQ5ZAyeozRF9z9YC51rqJ3JcLRA",
      "pubsub": null,
      "tpuQuic": "198.13.134.62:8003",
      "tpuVote": "198.13.134.62:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.62:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.62:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "79.127.224.184:8002",
      "gossip": "79.127.224.184:8001",
      "pubkey": "FXuy8txNqsaR83k4Qd5dXVenf3bsjdfCo8oY4LJm1dkZ",
      "pubsub": null,
      "tpuQuic": "79.127.224.184:8003",
      "tpuVote": "79.127.224.184:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "79.127.224.184:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "79.127.224.184:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.194:8002",
      "gossip": "145.239.203.30:8001",
      "pubkey": "2YurNubBDP436Lqrc4j5u1XA1sWMMA5Uc4zaLaMnxkcv",
      "pubsub": null,
      "tpuQuic": "145.239.203.30:8003",
      "tpuVote": "145.239.203.30:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "145.239.203.30:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "145.239.203.30:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.126.185:8003",
      "gossip": "67.213.126.185:8001",
      "pubkey": "AEMy7GWXVp4aoRx65UvR5QZQif3YXd2uJ19PDp5yYu3N",
      "pubsub": null,
      "tpuQuic": "67.213.126.185:9007",
      "tpuVote": "67.213.126.185:9001",
      "version": "0.101.0-beta.40103",
      "clientId": "Frankendancer",
      "featureSet": 3345198602,
      "serveRepair": "67.213.126.185:8907",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.126.185:9007"
    },
    {
      "rpc": "67.213.126.171:8899",
      "tpu": null,
      "tvu": "67.213.126.171:8001",
      "gossip": "67.213.126.171:8000",
      "pubkey": "4tJEVjbgBDi39HPC3Ez2URuByHR6HK6NTFdTmouGU9Yf",
      "pubsub": "67.213.126.171:8900",
      "tpuQuic": "67.213.126.171:8002",
      "tpuVote": "67.213.126.171:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.213.126.171:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.126.171:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "157.180.107.109:8001",
      "gossip": "157.180.107.109:8000",
      "pubkey": "BiJyo45nA3tG7MnUE5ypbN8XmKuogoTYSVzHHYoTnK1B",
      "pubsub": null,
      "tpuQuic": "157.180.107.109:8002",
      "tpuVote": "157.180.107.109:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "157.180.107.109:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "157.180.107.109:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.253:8002",
      "gossip": "54.36.192.204:8001",
      "pubkey": "7iPoS8ghUoJNUGumfdTWR8oRoJ1q1RLPG8Wb7cP6TS4t",
      "pubsub": null,
      "tpuQuic": "54.36.192.204:8003",
      "tpuVote": "54.36.192.204:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.36.192.204:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.36.192.204:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.237:8002",
      "gossip": "5.135.193.216:8001",
      "pubkey": "ApEszetRG1xY3VdW9eoUepjX4a3qGsxVjwgp4d4oTjfF",
      "pubsub": null,
      "tpuQuic": "5.135.193.216:8003",
      "tpuVote": "5.135.193.216:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.193.216:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.193.216:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "191.44.100.11:8001",
      "gossip": "191.44.100.11:8000",
      "pubkey": "6FDrsYEY9x9LqD2k81cLBj7upmYPNjCBhogFEkK73JiE",
      "pubsub": null,
      "tpuQuic": "191.44.100.11:8002",
      "tpuVote": "191.44.100.11:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "191.44.100.11:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "191.44.100.11:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.53:8002",
      "gossip": "46.105.157.251:8001",
      "pubkey": "DSknPmRdB8GEdcC5nR1qyr6JR68pAxQpTg7sRb9F2rBg",
      "pubsub": null,
      "tpuQuic": "46.105.157.251:8003",
      "tpuVote": "46.105.157.251:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "46.105.157.251:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "46.105.157.251:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.55.154:8001",
      "gossip": "64.130.55.154:8000",
      "pubkey": "HRNuSacRrxDjKPMY29P5oZPfrKpxUFbpR4CpLTa18ttp",
      "pubsub": null,
      "tpuQuic": "64.130.55.154:8002",
      "tpuVote": "64.130.55.154:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.55.154:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.55.154:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.106:8002",
      "gossip": "51.222.167.152:8001",
      "pubkey": "Ehza2a2oCQ7pAtKTovUP4SGCyTe88FRcXG8RxBqCD8NH",
      "pubsub": null,
      "tpuQuic": "51.222.167.152:8003",
      "tpuVote": "51.222.167.152:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.167.152:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.167.152:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.11:8888",
      "gossip": "198.13.140.172:8000",
      "pubkey": "5H36G6EymiKe1Lwbr5xfMakk17D2UMuz2uz6oSAjETpz",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.117.47:8001",
      "gossip": "67.213.117.47:8000",
      "pubkey": "86wHBX2C6jmPKhZRbjYMBxVKFVZrcf44nGXzhEkuEHyF",
      "pubsub": null,
      "tpuQuic": "67.213.117.47:8002",
      "tpuVote": "67.213.117.47:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "67.213.117.47:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.117.47:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.51:8888",
      "gossip": "198.13.136.228:8000",
      "pubkey": "EfzcAKBeZgCgPXatBHg8jp3a9KscGNVkhQ5XDdYz4Y3b",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.6:8888",
      "gossip": "198.13.140.167:8000",
      "pubkey": "4z1oDDCrgywdqMvr7apoNvaJBBAd2qKEtwmcRFCzJBBd",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.205:8002",
      "gossip": "64.130.57.205:8001",
      "pubkey": "H7fur4SksVTcqEcSHMmzSvpMPkCmKGkazBRUT9bMaPa8",
      "pubsub": null,
      "tpuQuic": "64.130.57.205:8003",
      "tpuVote": "64.130.57.205:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.57.205:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.205:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.252:8000",
      "pubkey": "8AXw1U4FPikrZzq7L1QgR36LDmpiVdY9JszkbNCeYMY6",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.42:8888",
      "gossip": "63.254.162.90:8000",
      "pubkey": "2hLmFa2cKW6YFyaVjssWh9cA5UchBqrPB6K2FLpYvnPR",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.176:18001",
      "gossip": "84.32.103.176:18000",
      "pubkey": "9o3vpTZwgoXNwPEPq11iGBjkrBgC1QS39Pm8ETXQHstw",
      "pubsub": null,
      "tpuQuic": "84.32.103.176:18002",
      "tpuVote": "84.32.103.176:18004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "84.32.103.176:18009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.176:18003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.40:8002",
      "gossip": "51.83.137.116:8001",
      "pubkey": "F2WGZLWViDsQ5bwkKkjpHPjaJVYQxTm2CtxUQRm2D75Q",
      "pubsub": null,
      "tpuQuic": "51.83.137.116:8003",
      "tpuVote": "51.83.137.116:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.83.137.116:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.83.137.116:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.223.230:8002",
      "gossip": "208.115.223.230:8001",
      "pubkey": "8Ba1qH3upYfx42B3qrYAgHVabgDsUyLgrdq7DP1HREyg",
      "pubsub": null,
      "tpuQuic": "208.115.223.230:8003",
      "tpuVote": "208.115.223.230:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.223.230:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.223.230:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.38.8:8002",
      "gossip": "64.130.42.75:8001",
      "pubkey": "4bEEiBkxTsBA6G6JN2BakT2csZrm4ZxCJkD5ozfyCzBC",
      "pubsub": null,
      "tpuQuic": "64.130.42.75:8002",
      "tpuVote": "64.130.42.75:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.75:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.75:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.136.228:8002",
      "gossip": "74.118.136.228:8001",
      "pubkey": "5JmvFjQQUb8cdyPktaq949wWHmV9C3CGR7HHDmaUPJqK",
      "pubsub": null,
      "tpuQuic": "74.118.136.228:8003",
      "tpuVote": "74.118.136.228:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.136.228:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.136.228:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.146:8002",
      "gossip": "51.38.85.18:8001",
      "pubkey": "7NsBUFu3XFHaLbawr1NEZaUxfbAwpeVWWecfhua2tv9h",
      "pubsub": null,
      "tpuQuic": "51.38.85.18:8003",
      "tpuVote": "51.38.85.18:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.85.18:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.85.18:8004"
    },
    {
      "rpc": "208.91.110.221:8899",
      "tpu": null,
      "tvu": "208.91.110.221:8001",
      "gossip": "208.91.110.221:8000",
      "pubkey": "4W2RUKmZvQ2gt5o5aiygjHnhzTFJgpi7oEDQFQX4ERXX",
      "pubsub": "208.91.110.221:8900",
      "tpuQuic": "208.91.110.221:8002",
      "tpuVote": "208.91.110.221:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.221:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.221:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "194.126.175.82:8002",
      "gossip": "194.126.175.82:8001",
      "pubkey": "3eUZMSK4UovuF7zFDQZxmhDenHU9aysEjvEY29hoob3s",
      "pubsub": null,
      "tpuQuic": "194.126.175.82:8003",
      "tpuVote": "194.126.175.82:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "194.126.175.82:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "194.126.175.82:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.39:8888",
      "gossip": "63.254.162.87:8000",
      "pubkey": "7hShTD9mRnuEi9DpdkJYBxBx24q2FAKfaFqUYGkUmTmY",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.55.185:8002",
      "gossip": "64.130.55.185:8001",
      "pubkey": "GRadiKHcNYRrGWj1kEfJob6aoCnz7XxuwxRBsFvUUkxG",
      "pubsub": null,
      "tpuQuic": "64.130.55.185:8003",
      "tpuVote": "64.130.55.185:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.55.185:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.55.185:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.220:8888",
      "gossip": "64.130.46.220:8000",
      "pubkey": "APq4o6EWnvPz7GSQV5hBS41YQvEeBFD3DAxQkGuY2in1",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.182:8000",
      "pubkey": "3qRzUKrdTbHxAWbvgHFCtnamYXUH91ThDfSQCBsAbzRm",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.57:8002",
      "gossip": "64.130.50.57:8001",
      "pubkey": "7em8MZ9PFf1aDGREu81warhphqRDd1FSgGtvatn7f1GS",
      "pubsub": null,
      "tpuQuic": "64.130.50.57:8003",
      "tpuVote": "64.130.50.57:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.57:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.57:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.13:8001",
      "gossip": "64.130.37.13:8000",
      "pubkey": "1RgFLaXxhNAwqqAC77n6YTmUAkabGKM5tyhf5CBY71a",
      "pubsub": null,
      "tpuQuic": "64.130.37.13:8002",
      "tpuVote": "64.130.37.13:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.37.13:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.13:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.145:8002",
      "gossip": "51.38.85.17:8001",
      "pubkey": "6N2fPBtxrTEWK8X586iAVJDBBvc8WuSUTfLt4FHbmpca",
      "pubsub": null,
      "tpuQuic": "51.38.85.17:8003",
      "tpuVote": "51.38.85.17:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.85.17:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.85.17:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "67.209.54.133:7002",
      "pubkey": "Gbf6XQKuGPwisvdMNrto213bMW3y7hdDuV2TYzH4LGz8",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.74:10333",
      "gossip": "45.152.160.74:8001",
      "pubkey": "8NNe7128SMzNSyMS5x6jmWe3MUmSaGZYV82DiWn2Xv6e",
      "pubsub": null,
      "tpuQuic": "45.152.160.74:9007",
      "tpuVote": "45.152.160.74:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "45.152.160.74:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.74:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "31.134.207.213:20000",
      "gossip": "31.134.207.213:22000",
      "pubkey": "FNjKM1sN3NkyFE3vHhYzJB5JMEVsBpTsrX8ZzDs6WCcN",
      "pubsub": null,
      "tpuQuic": "31.134.207.213:20001",
      "tpuVote": "31.134.207.213:20003",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "31.134.207.213:20008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "31.134.207.213:20002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.60:8888",
      "gossip": "198.13.136.237:8000",
      "pubkey": "CTdnNqayFGqPZCzL89tFbJNMzouDMrDqcXVPMo1J2WXu",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.130.59.51:8001",
      "pubkey": "BvumHuMJewTo1GyoVVhuvpM5R9AzPCtZAKmrRPS5EgqH",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "23.227.220.195:8895",
      "tpu": null,
      "tvu": "23.227.220.195:8002",
      "gossip": "23.227.220.195:8001",
      "pubkey": "D5Uob3kJC6sJQttuGNjvzR2NMzaYbXwdJNoAxtxx4mze",
      "pubsub": "23.227.220.195:8895",
      "tpuQuic": "23.227.220.195:8003",
      "tpuVote": "23.227.220.195:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "23.227.220.195:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.227.220.195:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.52:8002",
      "gossip": "64.130.32.52:8001",
      "pubkey": "E37LBMbQ5pfC63bkzocABb3ed4xSQQw6gd6zNsyzdbbQ",
      "pubsub": null,
      "tpuQuic": "64.130.32.52:8003",
      "tpuVote": "64.130.32.52:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.52:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.52:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.192:8002",
      "gossip": "15.204.3.173:8001",
      "pubkey": "EVYVvHUzyGqV5Q3BXezWwA7evTcQCQbqeJyUHkyS42Dd",
      "pubsub": null,
      "tpuQuic": "15.204.3.173:8003",
      "tpuVote": "15.204.3.173:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "15.204.3.173:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.3.173:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "18.179.199.253:8000",
      "pubkey": "DYBk94gAWwqFkEaQi9Hxk8uyvu15wn9QARCK8kNAETEV",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.50:8888",
      "gossip": "198.13.136.227:8000",
      "pubkey": "69pcEdKbpsP48W9VR7JGvHVyneHdCKufshxNRMpbbjQW",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "3.248.194.171:38001",
      "gossip": "3.248.194.171:38000",
      "pubkey": "BaRZVyeu4qmuQdYEZnJH8Zci7teZFJFwk47LT5Pnucno",
      "pubsub": null,
      "tpuQuic": "3.248.194.171:38002",
      "tpuVote": "3.248.194.171:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "3.248.194.171:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "3.248.194.171:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.140.56:8001",
      "gossip": "198.13.140.56:8000",
      "pubkey": "XcKfMZMzU7Mdh6iZX5a3K9ixkrpCKwtodm7QXa6k5H3",
      "pubsub": null,
      "tpuQuic": "198.13.140.56:8002",
      "tpuVote": "198.13.140.56:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.140.56:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.56:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.57:8000",
      "pubkey": "CaCzLMi3B5UzpH254U8nzsaZtmVQqNWYNcbrq8kt77yt",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.131:8002",
      "gossip": "145.239.233.183:8001",
      "pubkey": "BWesKrcjFC1QUPanSLJEKGNUeHiUWC5AqoWfkgxqzkX5",
      "pubsub": null,
      "tpuQuic": "145.239.233.183:8003",
      "tpuVote": "145.239.233.183:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "145.239.233.183:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "145.239.233.183:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.59:8002",
      "gossip": "54.38.48.191:8001",
      "pubkey": "FQG3fodSjE16s5z7fb5fHsWjmWqJ3aEn6epyS8vgevP8",
      "pubsub": null,
      "tpuQuic": "54.38.48.191:8003",
      "tpuVote": "54.38.48.191:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.38.48.191:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.38.48.191:8004"
    },
    {
      "rpc": "148.72.133.153:8899",
      "tpu": null,
      "tvu": "148.72.133.153:8001",
      "gossip": "148.72.133.153:8000",
      "pubkey": "FdgR3EPWXqqnrCNQ34MADqe8BS9y3WFrjmE4SoP52b8w",
      "pubsub": "148.72.133.153:8900",
      "tpuQuic": "148.72.133.153:8009",
      "tpuVote": "148.72.133.153:8005",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "148.72.133.153:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "148.72.133.153:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "54.255.238.220:8000",
      "pubkey": "B62GHqpU2pjxAuBTktTjkPAqxHBkekvQhgebHWzSVx5L",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.181:8001",
      "gossip": "70.40.185.181:8000",
      "pubkey": "GfGjs8VvADex5jiPfoZ1zsd697fJGKg4fGFRYKpp7oPb",
      "pubsub": null,
      "tpuQuic": "70.40.185.181:8002",
      "tpuVote": "70.40.185.181:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.181:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.181:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.186:8002",
      "gossip": "64.130.41.186:8001",
      "pubkey": "3NZxFxiN4UWSbnrAZ7Jo2LoNsB5AGCfGN3VQ31dkptCx",
      "pubsub": null,
      "tpuQuic": "64.130.41.186:8003",
      "tpuVote": "64.130.41.186:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.186:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.186:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.227:13700",
      "gossip": "64.130.32.227:13910",
      "pubkey": "9GSMKLmwmGxdStbPCUwSktyo6NSMqgNM2hfbKUE9QS3d",
      "pubsub": null,
      "tpuQuic": "64.130.32.227:13701",
      "tpuVote": "64.130.32.227:13703",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.32.227:13708",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.227:13702"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.213:8002",
      "gossip": "51.81.229.143:8001",
      "pubkey": "EhEMjPeSpWkkYiKYwSXjyphwkzsgzVBefdvUK6SkcRi",
      "pubsub": null,
      "tpuQuic": "51.81.229.143:8003",
      "tpuVote": "51.81.229.143:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.229.143:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.229.143:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.164:8000",
      "pubkey": "5V8wCiJ62jPRkpYpiGe8p7vkUoVAeBMG4kvNS4cbPAsW",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.122.15:8002",
      "gossip": "67.213.122.15:8001",
      "pubkey": "9oNFxTezbignqmDCUa2jSZ3txC7E7JnTCJzpnopT5N2W",
      "pubsub": null,
      "tpuQuic": "67.213.122.15:8003",
      "tpuVote": "67.213.122.15:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "67.213.122.15:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.122.15:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.56:8000",
      "pubkey": "AkgmwgmWs3uWtxQ2D66FseYhktYYE52hygfpozfY4LgC",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.178:8000",
      "pubkey": "6cjKFgfkbEofCtp5vQcBQMjSbwfCp5wY6JkyxAnpMpD1",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.193:8002",
      "gossip": "15.204.3.174:8001",
      "pubkey": "5VksVfTuSj2qczEGD2tF49RAs9Khpvf5ENvFLJ596nVg",
      "pubsub": null,
      "tpuQuic": "15.204.3.174:8003",
      "tpuVote": "15.204.3.174:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "15.204.3.174:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.3.174:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.164.133:8002",
      "gossip": "5.199.164.133:8001",
      "pubkey": "2xgjpZeRyE65UUUYnjQgfqBxtDy6uLajgbHSvecfzQKS",
      "pubsub": null,
      "tpuQuic": "5.199.164.133:8003",
      "tpuVote": "5.199.164.133:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "5.199.164.133:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.164.133:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.97.149:18001",
      "gossip": "109.94.97.149:18000",
      "pubkey": "FSB6zy2hVmykejgx7LnikeKSzkzcQAM1AKgWxezfdQq5",
      "pubsub": null,
      "tpuQuic": "109.94.97.149:18002",
      "tpuVote": "109.94.97.149:18004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "109.94.97.149:18009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.97.149:18003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.182:8001",
      "gossip": "70.40.185.182:8000",
      "pubkey": "Kg3zY8sbTrDnDc28k5GtaA946SJFm5aduhLAb1Wp5Ft",
      "pubsub": null,
      "tpuQuic": "70.40.185.182:8002",
      "tpuVote": "70.40.185.182:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.182:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.182:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.82.111:8001",
      "gossip": "85.195.82.111:8000",
      "pubkey": "Enfiw83LMyegbX2xHMztoW56fq8XH9ogSevanS1DZTpM",
      "pubsub": null,
      "tpuQuic": "85.195.82.111:8002",
      "tpuVote": "85.195.82.111:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "85.195.82.111:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.82.111:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.202:8001",
      "gossip": "45.152.160.202:8000",
      "pubkey": "BLwUJxeCpDWW36YpPapquVjqiwjqjDvKv1gYeD4WjkWL",
      "pubsub": null,
      "tpuQuic": "45.152.160.202:8002",
      "tpuVote": "45.152.160.202:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "45.152.160.202:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.202:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.143:8002",
      "gossip": "51.81.26.33:8001",
      "pubkey": "6wxdnjY7wqYfMu1ZGbXApqmsnYCnz6MDT6B7mextpdTu",
      "pubsub": null,
      "tpuQuic": "51.81.26.33:8003",
      "tpuVote": "51.81.26.33:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.26.33:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.26.33:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.151:8888",
      "gossip": "198.13.141.55:8000",
      "pubkey": "7upqMo6z3ofWKfru5nL6zs4uB3cKbSb6SNnJcWePb41r",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.143:8002",
      "gossip": "51.38.76.207:8001",
      "pubkey": "Pe2mDmnXTFUVHjcTBSjWcHPo4iBbLw3mnDKj5XxSG7n",
      "pubsub": null,
      "tpuQuic": "51.38.76.207:8003",
      "tpuVote": "51.38.76.207:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.76.207:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.76.207:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.179:8000",
      "pubkey": "CyH2Pv4eBphxVEB4juD6krVDr8LZKpC8KQv5N1ogou1L",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.53:8888",
      "gossip": "198.13.133.37:8000",
      "pubkey": "BZ1BSpScHp7WramLN6VA9afFdXoMaGdnGVtewZ8SbaNJ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.2:8002",
      "gossip": "51.38.146.234:8001",
      "pubkey": "Ehf5nh9vVDqJQ8QaACebrGXg94KhsFyHdSpvMJNzk4yC",
      "pubsub": null,
      "tpuQuic": "51.38.146.234:8003",
      "tpuVote": "51.38.146.234:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.146.234:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.146.234:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.97.127:8001",
      "gossip": "109.94.97.127:8000",
      "pubkey": "GPsiyxSqTuLhpGEVXAxzht5fCQhsJnS7RC1ComcywB3p",
      "pubsub": null,
      "tpuQuic": "109.94.97.127:8002",
      "tpuVote": "109.94.97.127:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.94.97.127:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.97.127:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.76.180.253:8000",
      "gossip": "47.76.180.253:8001",
      "pubkey": "C8Y1mjhFYV2a2J2h4V6jezx9fVTdmpuSyx4YS4JGr4qD",
      "pubsub": null,
      "tpuQuic": "47.76.180.253:8002",
      "tpuVote": "47.76.180.253:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "47.76.180.253:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "47.76.180.253:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.233:8002",
      "gossip": "5.135.193.208:8001",
      "pubkey": "2yRvMjR24mnkCkVTRHUrpJ3zxnfusbq31mTj1rJbUpLg",
      "pubsub": null,
      "tpuQuic": "5.135.193.208:8003",
      "tpuVote": "5.135.193.208:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.193.208:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.193.208:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.135.82.243:8002",
      "gossip": "185.135.82.243:8001",
      "pubkey": "6yCuMEiGnFV5T6hGi8zgFz2PCDzCyM1kpBrFyvUBemxq",
      "pubsub": null,
      "tpuQuic": "185.135.82.243:8003",
      "tpuVote": "185.135.82.243:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.135.82.243:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.135.82.243:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.16:8001",
      "gossip": "64.130.37.16:8000",
      "pubkey": "4RRqbX4m5Y6LxkUTB1ADsxJYEpbtGpDiV93x4GewYXp5",
      "pubsub": null,
      "tpuQuic": "64.130.37.16:8002",
      "tpuVote": "64.130.37.16:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.16:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.16:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.83.216.237:8000",
      "gossip": "47.83.216.237:8001",
      "pubkey": "5jWZkYRoBxk7imyvD3W9Fi1KREzMnxQ1o3sFYgQYcJbV",
      "pubsub": null,
      "tpuQuic": "47.83.216.237:8002",
      "tpuVote": "47.83.216.237:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "47.83.216.237:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "47.83.216.237:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.9.84:8002",
      "gossip": "202.8.9.84:8001",
      "pubkey": "8Gjfy8qU3z6VjEuYHS9R2o6tyQ7mDrQwb5jqVg7tiNCs",
      "pubsub": null,
      "tpuQuic": "202.8.9.84:8003",
      "tpuVote": "202.8.9.84:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.9.84:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.9.84:8004"
    },
    {
      "rpc": "157.90.95.154:8899",
      "tpu": null,
      "tvu": "157.90.95.154:8000",
      "gossip": "157.90.95.154:8001",
      "pubkey": "4PwPiQu7DdeBa6fawdyXpSFcLtABAp3LPAAwen2W6CcB",
      "pubsub": "157.90.95.154:8900",
      "tpuQuic": "157.90.95.154:8002",
      "tpuVote": "157.90.95.154:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "157.90.95.154:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "157.90.95.154:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.44:8001",
      "gossip": "64.130.50.44:8000",
      "pubkey": "BCCqBnTiHspTq5McQWXWv4VSjamWeCgU6wvhVnB3ccxe",
      "pubsub": null,
      "tpuQuic": "64.130.50.44:8002",
      "tpuVote": "64.130.50.44:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.44:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.44:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.164:8002",
      "gossip": "64.130.42.164:8001",
      "pubkey": "AE3QJw3CYHCTWu28gEjkARgpTRad3zoZurzsWjHg7k7h",
      "pubsub": null,
      "tpuQuic": "64.130.42.164:8010",
      "tpuVote": "64.130.42.164:8006",
      "version": "3.1.14",
      "clientId": "JitoLabs",
      "featureSet": 534737035,
      "serveRepair": "64.130.42.164:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.164:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.18.195.226:8001",
      "gossip": "216.18.195.226:8000",
      "pubkey": "EGE3jsD4gUZXGyzET2SdwXjWgr6m4xiJZVG7pBPSf2b8",
      "pubsub": null,
      "tpuQuic": "216.18.195.226:8002",
      "tpuVote": "216.18.195.226:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.18.195.226:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.18.195.226:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.22:8002",
      "gossip": "5.135.124.16:8001",
      "pubkey": "BRQQmDg4JEZHyHJJYBGo3dMYG1y1kiwt3onyggLz3qSc",
      "pubsub": null,
      "tpuQuic": "5.135.124.16:8003",
      "tpuVote": "5.135.124.16:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.124.16:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.124.16:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.79:38001",
      "gossip": "64.130.44.79:38000",
      "pubkey": "9BbPLiyP1fhya7zJp5H1re9JsyRm1u5Y8phmZp2EcLXH",
      "pubsub": null,
      "tpuQuic": "64.130.44.79:38002",
      "tpuVote": "64.130.44.79:38004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.79:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.79:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.137.182:8001",
      "gossip": "198.13.137.182:8000",
      "pubkey": "8xnUTF2oXhLXP61DPchuaCLXQiKpgWzgyzp4BFghtNyQ",
      "pubsub": null,
      "tpuQuic": "198.13.137.182:8002",
      "tpuVote": "198.13.137.182:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.137.182:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.137.182:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.156:8000",
      "pubkey": "G99gAX7gL3yAZrD7hvtrMz4SA7tGJAViGW2BTcXi3PXB",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "91.189.180.78:8910",
      "gossip": "91.189.180.78:8001",
      "pubkey": "DTTHmPr5WgBGnYZNoGwskSnwpFkCuqjakBSFRvWB9W5R",
      "pubsub": null,
      "tpuQuic": "91.189.180.78:8911",
      "tpuVote": "91.189.180.78:8913",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "91.189.180.78:8918",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.189.180.78:8912"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.144:8002",
      "gossip": "51.81.26.34:8001",
      "pubkey": "9d6gJsdRBaC8uo1nZ1ATyfZ7ChLn28KjYwYaET8kmQLT",
      "pubsub": null,
      "tpuQuic": "51.81.26.34:8003",
      "tpuVote": "51.81.26.34:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.26.34:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.26.34:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "34.83.231.102:8001",
      "pubkey": "4sqzjod3iiA9ndVCbR911grDJeipn5z6CqiwDrZ33shF",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.68:8002",
      "gossip": "51.89.17.28:8001",
      "pubkey": "FJseRfeSp7F9msQ6K7CEJcybSrGnTrDqR4XPrAgDfLqP",
      "pubsub": null,
      "tpuQuic": "51.89.17.28:8003",
      "tpuVote": "51.89.17.28:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.17.28:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.17.28:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.216:8888",
      "gossip": "64.130.46.216:8000",
      "pubkey": "Ewd3MyPLyQoSwUU3LR4CERLrN54aMPzAUqQEffnry8Qn",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "62.113.194.139:8001",
      "gossip": "62.113.194.139:8000",
      "pubkey": "17Y8oQmuv1GcNnfeoWJCYtiEiSoZzbRj1WsBvGcMJgx",
      "pubsub": null,
      "tpuQuic": "62.113.194.139:8009",
      "tpuVote": "62.113.194.139:8005",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "62.113.194.139:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "62.113.194.139:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "158.178.242.109:8002",
      "gossip": "158.178.242.109:8001",
      "pubkey": "EZ3YFNwLUzLux6wcjK4qNruk3V7EX9enk8qkjexNicWp",
      "pubsub": null,
      "tpuQuic": "158.178.242.109:8010",
      "tpuVote": "158.178.242.109:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "158.178.242.109:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "158.178.242.109:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.143:8001",
      "gossip": "64.130.63.143:8000",
      "pubkey": "GgPjdjzG8tZCurZBgwwP4LqbLGUqLCP5pZswKXP3sFzw",
      "pubsub": null,
      "tpuQuic": "64.130.63.143:8002",
      "tpuVote": "64.130.63.143:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.63.143:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.143:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.235:8000",
      "pubkey": "371Xcc5FxE1du9A6bP42TVWBCij9B9wk1APt8MsXsAhg",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "185.26.10.219:8899",
      "tpu": null,
      "tvu": "185.26.10.219:8001",
      "gossip": "185.26.10.219:8000",
      "pubkey": "ARjog7qHVCP3NGax4Uv2u3MWamyMcfpFPGHRkHJ6xXWg",
      "pubsub": "185.26.10.219:8900",
      "tpuQuic": "185.26.10.219:8002",
      "tpuVote": "185.26.10.219:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "185.26.10.219:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.10.219:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.43:8002",
      "gossip": "64.130.33.43:8001",
      "pubkey": "AVjh8LeuX891VWGfsi9HHXbXH7r4dki4TXsPwWDyeXEo",
      "pubsub": null,
      "tpuQuic": "64.130.33.43:8003",
      "tpuVote": "64.130.33.43:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.33.43:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.43:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.71:8001",
      "gossip": "64.130.44.71:8000",
      "pubkey": "2j7p8ftP2JiJrdt6iQrSVWWvMAtrLsws6UW9shLm46MK",
      "pubsub": null,
      "tpuQuic": "64.130.44.71:8002",
      "tpuVote": "64.130.44.71:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.71:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.71:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "177.54.159.71:8000",
      "gossip": "177.54.159.71:8001",
      "pubkey": "h8iV6mpY13P3rzMEqRFc4uWdKEEGE5ozDwKCfHx2BXe",
      "pubsub": null,
      "tpuQuic": "177.54.159.71:8002",
      "tpuVote": "177.54.159.71:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "177.54.159.71:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "177.54.159.71:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.181:8002",
      "gossip": "141.98.219.181:8001",
      "pubkey": "7HWw86AmsxbYqN2FZs7wyKXjMfTNHkHsQWagQMUDok2M",
      "pubsub": null,
      "tpuQuic": "141.98.219.181:8003",
      "tpuVote": "141.98.219.181:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.219.181:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.181:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.92:8000",
      "pubkey": "HJU53KSjpN5zAM8dfRC3s2GV3CR151pAJXuCRaKaEbbK",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.144:8002",
      "gossip": "64.130.49.144:8001",
      "pubkey": "26EQFKEmNDA4Tbh5whLz8jujrhW8KmFwTLZvKFr8M749",
      "pubsub": null,
      "tpuQuic": "64.130.49.144:8010",
      "tpuVote": "64.130.49.144:8006",
      "version": "3.0.6",
      "clientId": "Agave",
      "featureSet": 3604001754,
      "serveRepair": "64.130.49.144:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.144:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.221:8001",
      "gossip": "64.130.54.221:8000",
      "pubkey": "7MDLXiEdhvVNUSt7Y6Zb431SG8r18cocac3gxomgJBxZ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.36.35.226:8001",
      "gossip": "89.36.35.226:8000",
      "pubkey": "HpDYCYYbYFjXd26YgpJmAbnMAgeJFDh5v1vXJz3x6Bmc",
      "pubsub": null,
      "tpuQuic": "89.36.35.226:8002",
      "tpuVote": "89.36.35.226:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "89.36.35.226:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.36.35.226:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.136:8003",
      "gossip": "64.130.41.136:8001",
      "pubkey": "9JENpDcMwruaA7PMssnHZh3SaH5jNFzt1xuKYPrZ1bHv",
      "pubsub": null,
      "tpuQuic": "64.130.41.136:9007",
      "tpuVote": "64.130.41.136:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "64.130.41.136:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.136:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.36.180:8002",
      "gossip": "64.130.36.180:8001",
      "pubkey": "mcb2predgwpB63b7MgwryjDVfxG41smUVnd9VHptDbS",
      "pubsub": null,
      "tpuQuic": "64.130.36.180:8003",
      "tpuVote": "64.130.36.180:8005",
      "version": "4.1.0-rc.0",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.36.180:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.36.180:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.67.149.165:8000",
      "gossip": "69.67.149.165:8001",
      "pubkey": "HJEySioakfax5erb512c7xqe6Gjx4JSLTgdQFPu25kEx",
      "pubsub": null,
      "tpuQuic": "69.67.149.165:8002",
      "tpuVote": "69.67.149.165:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "69.67.149.165:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.67.149.165:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.52.253:8000",
      "gossip": "67.209.52.253:8001",
      "pubkey": "GL83eqMDxBX4g4ApCxtW6BPfpUsQhLtAgFE81Hqwkpy4",
      "pubsub": null,
      "tpuQuic": "67.209.52.253:8002",
      "tpuVote": "67.209.52.253:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.209.52.253:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.52.253:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.33:8002",
      "gossip": "5.135.171.187:8001",
      "pubkey": "FYuUP6uURw7sxruNk8Vxf2i3xdV77Cvd575DWPkFviDm",
      "pubsub": null,
      "tpuQuic": "5.135.171.187:8003",
      "tpuVote": "5.135.171.187:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.171.187:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.171.187:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.167:8000",
      "pubkey": "GLvyLiMm3ZPYKpDWxgmswi6NDEXdyRygHRUknAhoTAQW",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.146:8001",
      "gossip": "64.130.52.146:8000",
      "pubkey": "HXdTKKyPCXXxr2rc7Xc24nyCfACpobXLkUHm5Ce59dWz",
      "pubsub": null,
      "tpuQuic": "64.130.52.146:8002",
      "tpuVote": "64.130.52.146:8004",
      "version": "4.1.0-rc.1",
      "clientId": "HarmonicAgave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.52.146:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.146:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.140.68:8003",
      "gossip": "104.204.140.68:7000",
      "pubkey": "AJKvmgqaigwtzM3LhwDzJhu8z74tDCx6bokgsuu7Jc78",
      "pubsub": null,
      "tpuQuic": "104.204.140.68:9007",
      "tpuVote": "104.204.140.68:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "104.204.140.68:7009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.140.68:9007"
    },
    {
      "rpc": "154.60.100.82:58000",
      "tpu": null,
      "tvu": "154.60.100.82:50001",
      "gossip": "154.60.100.82:50000",
      "pubkey": "2K9jUA6Z9M7ZmuMiW5ogrVBoAeeT6kgC93GecbtpV3DZ",
      "pubsub": "154.60.100.82:58001",
      "tpuQuic": "154.60.100.82:50002",
      "tpuVote": "154.60.100.82:50004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "154.60.100.82:50009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "154.60.100.82:50003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "189.1.171.191:8001",
      "gossip": "189.1.171.191:8000",
      "pubkey": "EJfZEKUjTDBPtLe249LF5EPCtRSdjEfqDxrn3C3AaWD3",
      "pubsub": null,
      "tpuQuic": "189.1.171.191:8002",
      "tpuVote": "189.1.171.191:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "189.1.171.191:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "189.1.171.191:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.48:8002",
      "gossip": "5.135.243.150:8001",
      "pubkey": "79G1aAzgTRwi7SdsKc7UFVwsVBKZGtyvUg2Agf9s953k",
      "pubsub": null,
      "tpuQuic": "5.135.243.150:8003",
      "tpuVote": "5.135.243.150:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.243.150:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.243.150:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.127.249:8001",
      "gossip": "67.213.127.249:8000",
      "pubkey": "6NF7MuxNEFtVEKC6sKNuj1wTfLLNg7LwvjTZar4bGdB2",
      "pubsub": null,
      "tpuQuic": "67.213.127.249:8002",
      "tpuVote": "67.213.127.249:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.213.127.249:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.127.249:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.73:8002",
      "gossip": "213.32.63.27:8001",
      "pubkey": "BZaKoLFyWmAxvVwU1a6fBkuG2gSax7pojLPvHTZAno7a",
      "pubsub": null,
      "tpuQuic": "213.32.63.27:8003",
      "tpuVote": "213.32.63.27:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "213.32.63.27:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "213.32.63.27:8004"
    },
    {
      "rpc": "185.8.106.211:8899",
      "tpu": null,
      "tvu": "185.8.106.211:8001",
      "gossip": "185.8.106.211:8000",
      "pubkey": "DCDLtoqk72CWP9ChwYL3vobKgQWdpq9LeKpxK6P6WJrp",
      "pubsub": "185.8.106.211:8900",
      "tpuQuic": "185.8.106.211:8002",
      "tpuVote": "185.8.106.211:8004",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "185.8.106.211:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.8.106.211:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.0:8002",
      "gossip": "51.38.146.232:8001",
      "pubkey": "BdGkzPyYo9CsTse9ZUfDKCxLjXM2MsB2N5XqrgZnMEBY",
      "pubsub": null,
      "tpuQuic": "51.38.146.232:8003",
      "tpuVote": "51.38.146.232:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.146.232:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.146.232:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.225.119:8002",
      "gossip": "74.63.225.119:8001",
      "pubkey": "7X9Az5LqSJA9oxBMnnkrVrg7ritF932RAx5PgbTKp5Q9",
      "pubsub": null,
      "tpuQuic": "74.63.225.119:8003",
      "tpuVote": "74.63.225.119:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.225.119:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.225.119:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.130.32.207:8000",
      "pubkey": "97spx8rTsbWNZaCQDBLq1xFoMPNeveuhXt8P6vkEWkoJ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "3.223.129.10:8001",
      "gossip": "3.223.129.10:8000",
      "pubkey": "7bJHFdEHwKAHhCZcxAioN2Ag1QMbhppvNRZSnMCtPb4t",
      "pubsub": null,
      "tpuQuic": "3.223.129.10:8009",
      "tpuVote": "3.223.129.10:8005",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "3.223.129.10:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "3.223.129.10:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.47:8002",
      "gossip": "51.83.231.159:8001",
      "pubkey": "8SaLpVdCZovbxMgWX1RftV2k17Bh8fwLq6rtqNePH3yj",
      "pubsub": null,
      "tpuQuic": "51.83.231.159:8003",
      "tpuVote": "51.83.231.159:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.83.231.159:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.83.231.159:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.189.44.169:8001",
      "gossip": "185.189.44.169:8000",
      "pubkey": "Fk5GgQd9ZgQ1RbEeKKKsvWN4VSazEwUJi9VsS1ek7DQk",
      "pubsub": null,
      "tpuQuic": "185.189.44.169:8002",
      "tpuVote": "185.189.44.169:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.189.44.169:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.189.44.169:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.106:8002",
      "gossip": "208.91.110.106:8001",
      "pubkey": "CsEjK2EuiAtWSiLSYeifSaMtPMUqqN3yuY1Rh74gguUb",
      "pubsub": null,
      "tpuQuic": "208.91.110.106:8003",
      "tpuVote": "208.91.110.106:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.106:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.106:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.202:8002",
      "gossip": "198.13.138.183:9005",
      "pubkey": "74HJgVPEqXg2r9opbP1TYa43T78Wy2dyyQHdFjzaJeae",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 1718981463,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.76:8002",
      "gossip": "64.130.42.76:8001",
      "pubkey": "27ut2nfnKaPicqQRZ29aGEcbpdPbMdMLe5QbshpEWQwU",
      "pubsub": null,
      "tpuQuic": "64.130.42.76:8003",
      "tpuVote": "64.130.42.76:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.76:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.76:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.187:8888",
      "gossip": "198.13.136.219:8000",
      "pubkey": "JDPwmQ2KPojt5rPZ2UF5a2amKePnZAaMWAzadxZow7aq",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.162.108:8002",
      "gossip": "63.254.162.108:8001",
      "pubkey": "5XP8yU5AndypjxULJzzHuxoeUhS5kGsKmqTo99VcPe9d",
      "pubsub": null,
      "tpuQuic": "63.254.162.108:8003",
      "tpuVote": "63.254.162.108:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "63.254.162.108:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.162.108:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.243:8000",
      "gossip": "45.152.160.243:8001",
      "pubkey": "HCtdqHzLp51aMxBR15ioPysXSxpiR8sgjPkNMAfsKKE5",
      "pubsub": null,
      "tpuQuic": "45.152.160.243:8002",
      "tpuVote": "45.152.160.243:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.152.160.243:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.243:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.225.105:8002",
      "gossip": "74.63.225.105:8001",
      "pubkey": "HLMKsKvZi9D2d8m7tx499mMnBcYDjR7KUy6ZyNroDLhd",
      "pubsub": null,
      "tpuQuic": "74.63.225.105:8003",
      "tpuVote": "74.63.225.105:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.225.105:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.225.105:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.97:8002",
      "gossip": "51.89.25.97:8001",
      "pubkey": "5Uy34XuP1pQLB1GUnvCnkhGew1wyfdNDRg5Borak8M1n",
      "pubsub": null,
      "tpuQuic": "51.89.25.97:8003",
      "tpuVote": "51.89.25.97:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.97:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.97:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.177:8002",
      "gossip": "51.81.42.231:8001",
      "pubkey": "3UwYupsjBYNNrSERpsXTJ8wkSG4wZvUuX2KYMYeMqcyn",
      "pubsub": null,
      "tpuQuic": "51.81.42.231:8003",
      "tpuVote": "51.81.42.231:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.42.231:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.42.231:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "173.231.11.106:11971",
      "gossip": "173.231.11.106:11970",
      "pubkey": "HiKAFiqLxd3xqonFdYAjR1BUtyVvuHUPsAZWhJjN7opa",
      "pubsub": null,
      "tpuQuic": "173.231.11.106:11972",
      "tpuVote": "173.231.11.106:11974",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "173.231.11.106:11979",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "173.231.11.106:11973"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.134.108.161:8001",
      "gossip": "45.134.108.161:8000",
      "pubkey": "BnDEKv62c7tg3qp1DASicDyp5wJxpRyAWxG8z1PyLQwf",
      "pubsub": null,
      "tpuQuic": "45.134.108.161:8002",
      "tpuVote": "45.134.108.161:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "45.134.108.161:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.134.108.161:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.42:8002",
      "gossip": "5.135.196.120:8001",
      "pubkey": "4YoPXmjRiDoEYLLukeyLLyqVPGE5E9cB2WFatseUjzrT",
      "pubsub": null,
      "tpuQuic": "5.135.196.120:8003",
      "tpuVote": "5.135.196.120:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.196.120:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.196.120:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.179:8002",
      "gossip": "64.130.59.179:8001",
      "pubkey": "DaUoLhNffMHY1LKgZppvqdBEJBK7hfmfaDDj1423RwgT",
      "pubsub": null,
      "tpuQuic": "64.130.59.179:8003",
      "tpuVote": "64.130.59.179:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.179:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.179:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.105:8002",
      "gossip": "51.222.162.255:8001",
      "pubkey": "AmTD3D4PJRc4ayKkRW5R7zdPaFmNKuY5qown84nxDRy8",
      "pubsub": null,
      "tpuQuic": "51.222.162.255:8003",
      "tpuVote": "51.222.162.255:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.255:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.255:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.193.234:8000",
      "gossip": "208.115.193.234:8801",
      "pubkey": "AGxPAGrcxRsY5TTPFFt4mxVsBqmJwsniMJ1sv4pFiTBJ",
      "pubsub": null,
      "tpuQuic": "208.115.193.234:8001",
      "tpuVote": "208.115.193.234:8003",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "208.115.193.234:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.193.234:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.84:8000",
      "pubkey": "B6RJLnBkie2jEFLZEhLnn5FFPa4gwDh2wmenzYAZyKWD",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.237.55.114:10002",
      "gossip": "104.237.55.114:8001",
      "pubkey": "4wTWs25g6TmzeRTtmzXVMNrR9bNfrbpcJLaNyAsPcnYc",
      "pubsub": null,
      "tpuQuic": "104.237.55.114:10003",
      "tpuVote": "104.237.55.114:10005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "104.237.55.114:10010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.237.55.114:10004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.218:7733",
      "gossip": "45.152.160.218:8001",
      "pubkey": "CwQ5bApcrXUpF3b4pGyL5Tza99YsXcEwpt6qqPCyBBzE",
      "pubsub": null,
      "tpuQuic": "45.152.160.218:9007",
      "tpuVote": "45.152.160.218:9001",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 1429815730,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.218:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.235:8002",
      "gossip": "64.130.59.235:8001",
      "pubkey": "6MVfwFhyPfzxnexudVnbA1JxDRFM1F7Fj8zXadgr1urz",
      "pubsub": null,
      "tpuQuic": "64.130.59.235:8003",
      "tpuVote": "64.130.59.235:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.235:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.235:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.246.168:8002",
      "gossip": "204.16.246.168:8001",
      "pubkey": "4KneSxZW9Kj3Kvu2CYJLwcM1exKy3E3JDDyLP7yqYsjD",
      "pubsub": null,
      "tpuQuic": "204.16.246.168:8003",
      "tpuVote": "204.16.246.168:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.246.168:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.246.168:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "18.191.212.143:8000",
      "gossip": "18.191.212.143:8001",
      "pubkey": "EnYAzNB2khR24rHMYYvVANjnwJdz579xyN1wfvj4tVLi",
      "pubsub": null,
      "tpuQuic": "18.191.212.143:8002",
      "tpuVote": "18.191.212.143:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "18.191.212.143:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "18.191.212.143:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "45.250.253.122:8000",
      "pubkey": "8fJ8LfzzgsqMzVZbF71U8M6MPnqPjPVTqJ1Ynof5yski",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.183:8001",
      "gossip": "64.130.33.183:8000",
      "pubkey": "4RBdLuaRzhvA1t6ms1pPYSGgh1ns9nL6QKdTCMPxXBxk",
      "pubsub": null,
      "tpuQuic": "64.130.33.183:8002",
      "tpuVote": "64.130.33.183:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.33.183:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.183:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.189.45.13:8001",
      "gossip": "185.189.45.13:8000",
      "pubkey": "AreCFzbUi8XMYFckUZU2NeFgL56AUXoLNomCGYBttuCn",
      "pubsub": null,
      "tpuQuic": "185.189.45.13:8002",
      "tpuVote": "185.189.45.13:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.189.45.13:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.189.45.13:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.55.202:8000",
      "gossip": "64.130.55.202:8001",
      "pubkey": "BJ3ABvFajaqh9a54DDLdTJG6k8mSMntaiLUdKXoFTtm8",
      "pubsub": null,
      "tpuQuic": "64.130.55.202:9036",
      "tpuVote": "64.130.55.202:8211",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "64.130.55.202:9015",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.55.202:9044"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.217.132:8002",
      "gossip": "141.98.217.132:8001",
      "pubkey": "3CkQBX8wUdwegBF5fynTXhWYQAapNGDQmH3mBqY3RiYD",
      "pubsub": null,
      "tpuQuic": "141.98.217.132:8003",
      "tpuVote": "141.98.217.132:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.217.132:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.217.132:8004"
    },
    {
      "rpc": "67.213.126.47:8899",
      "tpu": null,
      "tvu": "67.213.126.47:8002",
      "gossip": "67.213.126.47:8001",
      "pubkey": "DE1bawNcRJB9rVm3buyMVfr8mBEoyyu73NBovf2oXJsJ",
      "pubsub": "67.213.126.47:8900",
      "tpuQuic": "67.213.126.47:8003",
      "tpuVote": "67.213.126.47:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.126.47:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.126.47:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.26:8002",
      "gossip": "51.75.32.14:8001",
      "pubkey": "GrLneucToXwsKvBz3Q42D1QVEoFxYQCPMW4d1qVvLwDb",
      "pubsub": null,
      "tpuQuic": "51.75.32.14:8003",
      "tpuVote": "51.75.32.14:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.75.32.14:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.75.32.14:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.74:8002",
      "gossip": "64.130.42.74:8001",
      "pubkey": "96JZkRR3q3744nzpERrhFufR4NSZ7pqqyJfZK5NZz6dE",
      "pubsub": null,
      "tpuQuic": "64.130.42.74:8003",
      "tpuVote": "64.130.42.74:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.74:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.74:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.104:8000",
      "pubkey": "HedkXQgMQEdXJmdvhxTKwdp6hSH9Cs51gz5zvLsjoj4g",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.36.5:7733",
      "gossip": "88.216.36.5:8001",
      "pubkey": "9gf42GSbv5vUdEGaF2TNteUJpt8H7HjT9LjLvm93ubCS",
      "pubsub": null,
      "tpuQuic": "88.216.36.5:9007",
      "tpuVote": "88.216.36.5:9001",
      "version": "4.1.0-rc.0",
      "clientId": "Agave",
      "featureSet": 1668064299,
      "serveRepair": "88.216.36.5:8702",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.36.5:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.59:8001",
      "gossip": "64.130.61.59:8000",
      "pubkey": "72htvTPUvQXJrMWYrmwEtGGTHzZYfUThmPx9iFtxE51B",
      "pubsub": null,
      "tpuQuic": "64.130.61.59:8002",
      "tpuVote": "64.130.61.59:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.61.59:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.59:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.53.42:8001",
      "gossip": "64.130.53.42:8000",
      "pubkey": "CpXWq74oe4zK6GJZS9dzJhk41nF5viCwd5Wftyns4ndC",
      "pubsub": null,
      "tpuQuic": "64.130.53.42:8002",
      "tpuVote": "64.130.53.42:8004",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2543003515,
      "serveRepair": "64.130.53.42:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.42:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "54.160.207.203:38001",
      "gossip": "54.160.207.203:38000",
      "pubkey": "7ZZCdcRUwXved8wUoAaKXnBjogpRnvitcuTy71BPpGAR",
      "pubsub": null,
      "tpuQuic": "54.160.207.203:38002",
      "tpuVote": "54.160.207.203:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "54.160.207.203:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.160.207.203:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.59:8000",
      "pubkey": "5FYueSg8LkfHeaFkkpR1ssUtDAkfmzUXqwsmhmy3uRuQ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.18.207.90:8002",
      "gossip": "216.18.207.90:8001",
      "pubkey": "9iCVcFFafXTAUspMTzg3CP9xVV8sbh1SZeHwmrLMPvv2",
      "pubsub": null,
      "tpuQuic": "216.18.207.90:8003",
      "tpuVote": "216.18.207.90:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "216.18.207.90:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.18.207.90:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.39:8001",
      "gossip": "64.130.52.39:8000",
      "pubkey": "EYrAYcyVBiq4LNnQ7mURzSJujEJkwBj81uqDGBntFyvN",
      "pubsub": null,
      "tpuQuic": "64.130.52.39:8002",
      "tpuVote": "64.130.52.39:8004",
      "version": "4.0.0-rc.0",
      "clientId": "JitoLabs",
      "featureSet": 767961353,
      "serveRepair": "64.130.52.39:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.39:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.245:8002",
      "gossip": "64.130.32.245:8001",
      "pubkey": "B1wtbGikuVx8UXWqci8fUGsjDDDCCVwZBmpARYpk6MQm",
      "pubsub": null,
      "tpuQuic": "64.130.32.245:8003",
      "tpuVote": "64.130.32.245:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.245:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.245:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.117:8002",
      "gossip": "51.222.169.171:8001",
      "pubkey": "8Z59RgUDaXpcVDx8xjPf2HPuJPKQuEunnuVfUyE6AV3N",
      "pubsub": null,
      "tpuQuic": "51.222.169.171:8003",
      "tpuVote": "51.222.169.171:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.169.171:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.169.171:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "62.113.196.178:8000",
      "gossip": "62.113.196.178:8001",
      "pubkey": "EHZmfrqditku4RUq232nprwE3cDUaSoK7SKh3Jw4PXSV",
      "pubsub": null,
      "tpuQuic": "62.113.196.178:8002",
      "tpuVote": "62.113.196.178:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "62.113.196.178:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "62.113.196.178:8003"
    },
    {
      "rpc": "103.28.89.185:8899",
      "tpu": null,
      "tvu": "103.28.89.185:8003",
      "gossip": "103.28.89.185:8001",
      "pubkey": "5NKXDxYv4KurWxNSBQqHv5Wq5ZghXzA1uz9e7Zh4hqz4",
      "pubsub": "103.28.89.185:8900",
      "tpuQuic": "103.28.89.185:9007",
      "tpuVote": "103.28.89.185:9001",
      "version": "0.910.40000",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 3718597879,
      "serveRepair": "103.28.89.185:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.28.89.185:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.206:8002",
      "gossip": "5.135.168.162:8001",
      "pubkey": "72iAF76FQJc3NntGZRBNKe4usFDtboNNbZcZquW8jK7g",
      "pubsub": null,
      "tpuQuic": "5.135.168.162:8003",
      "tpuVote": "5.135.168.162:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.168.162:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.168.162:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.254.202.63:8000",
      "gossip": "162.254.202.63:8001",
      "pubkey": "DbP4VwikxMBHsGyaQauYz8nTkePKzqgbKWzqp6AeuDMh",
      "pubsub": null,
      "tpuQuic": "162.254.202.63:8002",
      "tpuVote": "162.254.202.63:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "162.254.202.63:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.254.202.63:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.202:8002",
      "gossip": "51.81.146.127:8001",
      "pubkey": "HaxHZg4zPNrcwsWGD7ygiUSummy1oJw1nWxnxSRuYW3q",
      "pubsub": null,
      "tpuQuic": "51.81.146.127:8003",
      "tpuVote": "51.81.146.127:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.146.127:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.146.127:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.246:8000",
      "pubkey": "F9yaukbX8MKMqSYnwWjzqpwhmTMJcPqayRasGwcsgg7f",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.128:8888",
      "gossip": "198.13.141.32:8000",
      "pubkey": "93paDRRN9y8gwhQrvTQQVa3KzERGmCnrEph9udP4LCGV",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "178.33.122.121:8001",
      "gossip": "178.33.122.121:8000",
      "pubkey": "64C1ogwiC56Bdrh83GtUMTdZb6yoncpapBVQiBwA9Grr",
      "pubsub": null,
      "tpuQuic": "178.33.122.121:8002",
      "tpuVote": "178.33.122.121:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "178.33.122.121:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "178.33.122.121:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.143.5:8002",
      "gossip": "74.118.143.5:8001",
      "pubkey": "3hP7yZ6DuztAggTt38BX18iF9qShmDCRcRkoDLxxfdCW",
      "pubsub": null,
      "tpuQuic": "74.118.143.5:8003",
      "tpuVote": "74.118.143.5:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.143.5:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.143.5:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.122.207.111:8001",
      "gossip": "109.122.207.111:8000",
      "pubkey": "8cHVM48jeBdCiuNMT6wcENEjaT3yTYd9H3RueLZPvGFJ",
      "pubsub": null,
      "tpuQuic": "109.122.207.111:8002",
      "tpuVote": "109.122.207.111:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "109.122.207.111:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.122.207.111:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.244:8002",
      "gossip": "64.130.33.244:8001",
      "pubkey": "mce3HZNYJ4VcYE7SkxZ6KsLCkoWcmj1ckfec1XLz9Fc",
      "pubsub": null,
      "tpuQuic": "64.130.33.244:8003",
      "tpuVote": "64.130.33.244:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "64.130.33.244:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.244:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "129.150.58.242:8002",
      "gossip": "129.150.58.242:8001",
      "pubkey": "AEUMHmrpVmv719ExgmtJ7cBEoKu2bQ9tfAoPGrPhWgTX",
      "pubsub": null,
      "tpuQuic": "129.150.58.242:8010",
      "tpuVote": "129.150.58.242:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "129.150.58.242:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "129.150.58.242:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.76.82.164:8002",
      "gossip": "47.76.82.164:8001",
      "pubkey": "H2pJH2qgit5Y2rFGWpZbs4bhHwTbGYqQzt5XY47zj11u",
      "pubsub": null,
      "tpuQuic": "47.76.82.164:8003",
      "tpuVote": "47.76.82.164:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "47.76.82.164:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "47.76.82.164:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "54.157.46.64:8000",
      "pubkey": "4BJqwZxgb21A2P2KcE6AFSPyheMz3hsE6DTHm19W2t1r",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.119:8000",
      "pubkey": "E8mF19CNfUd2MESFHbfaqDXWHKfZzwQV9p2Uw3o1HgEM",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.24:8888",
      "gossip": "63.254.161.184:8000",
      "pubkey": "FhedQZDBt41KQsjv6fTRXgBNGhQWcnYnDw8PEbq7kb31",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "177.54.159.67:8001",
      "gossip": "177.54.159.67:8000",
      "pubkey": "4kVchpGqyMwfzMJpEWmNhpYFk2D9iaWmkmefH92F5y3c",
      "pubsub": null,
      "tpuQuic": "177.54.159.67:8002",
      "tpuVote": "177.54.159.67:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "177.54.159.67:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "177.54.159.67:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "140.245.123.62:8002",
      "gossip": "140.245.123.62:8001",
      "pubkey": "ARf6meW7FVZpF92kBY4kdqrzDo6bGaL6GxPM4Su7w4i6",
      "pubsub": null,
      "tpuQuic": "140.245.123.62:8010",
      "tpuVote": "140.245.123.62:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "140.245.123.62:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "140.245.123.62:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.80.127:8002",
      "gossip": "64.34.80.127:8001",
      "pubkey": "F3hf1BjSpE5nnqHd57J4F4CVFPp3FtpHZ8rCVqEmhtPE",
      "pubsub": null,
      "tpuQuic": "64.34.80.127:8003",
      "tpuVote": "64.34.80.127:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.34.80.127:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.80.127:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "67.213.123.115:8000",
      "pubkey": "81Lh6fxJUBrfczznabe4TmQG2opPAqqCG7ipS4AJ9Tba",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.202.182:8002",
      "gossip": "208.115.202.182:8001",
      "pubkey": "5iJrp9dGYq3UbSWKy6F2Zxa5ru7V4shJLqBrMuFr4KBS",
      "pubsub": null,
      "tpuQuic": "208.115.202.182:8003",
      "tpuVote": "208.115.202.182:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.202.182:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.202.182:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.180:8002",
      "gossip": "51.81.42.234:8001",
      "pubkey": "EdsAHQgJBtK42GL3rK8Mbk43QmFnBLyjZ7ePgKohcR4x",
      "pubsub": null,
      "tpuQuic": "51.81.42.234:8003",
      "tpuVote": "51.81.42.234:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.42.234:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.42.234:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.113.109:8001",
      "gossip": "67.213.113.109:8000",
      "pubkey": "NdMS3uCMgKoK54RKZ6zHxvKWhS5XuBDeqemNgu2FTg4",
      "pubsub": null,
      "tpuQuic": "67.213.113.109:8002",
      "tpuVote": "67.213.113.109:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.213.113.109:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.113.109:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.51:8002",
      "gossip": "54.36.184.235:8001",
      "pubkey": "231GDL4ZwqD5WBq7od4YKfkvopQ6t4izsQ5bhw4XxYRB",
      "pubsub": null,
      "tpuQuic": "54.36.184.235:8003",
      "tpuVote": "54.36.184.235:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.36.184.235:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.36.184.235:8004"
    },
    {
      "rpc": "23.92.177.79:21611",
      "tpu": null,
      "tvu": "23.92.177.79:11601",
      "gossip": "23.92.177.79:21610",
      "pubkey": "DSssXReKnYxAdyuCdA8bpXgY58D89tW95GWBGxoH6sok",
      "pubsub": "23.92.177.79:21612",
      "tpuQuic": "23.92.177.79:11602",
      "tpuVote": "23.92.177.79:11604",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "23.92.177.79:11609",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.92.177.79:11603"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.92:8001",
      "gossip": "64.130.47.92:8000",
      "pubkey": "E2eEFcZGVezqeDZr6MZHPkySzLYopV1MdTMUYU6QyySV",
      "pubsub": null,
      "tpuQuic": "64.130.47.92:8003",
      "tpuVote": "64.130.47.92:8005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.47.92:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.92:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.95:8002",
      "gossip": "208.115.227.95:8001",
      "pubkey": "J24kNDooK7icwMC8jnZBgrAKqqRsRZ3kQczpX5CiSsww",
      "pubsub": null,
      "tpuQuic": "208.115.227.95:8003",
      "tpuVote": "208.115.227.95:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.95:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.95:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.170.59.22:8003",
      "gossip": "185.170.59.22:8001",
      "pubkey": "7B9oESJuRCCMH5o7hQyTtYtx1NDJQCSywyan5ZmMuZqu",
      "pubsub": null,
      "tpuQuic": "185.170.59.22:9007",
      "tpuVote": "185.170.59.22:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "185.170.59.22:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.170.59.22:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "43.167.173.148:8001",
      "gossip": "43.167.173.148:8000",
      "pubkey": "4Qu4qbqjy73hxkit5XiSKRDmmNckg9cXRyaiPb2YD8nE",
      "pubsub": null,
      "tpuQuic": "43.167.173.148:8009",
      "tpuVote": "43.167.173.148:8005",
      "version": "3.0.13",
      "clientId": "Agave",
      "featureSet": 3604001754,
      "serveRepair": "43.167.173.148:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "43.167.173.148:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.155:8002",
      "gossip": "64.130.47.155:8001",
      "pubkey": "4DPH69o8Qq7KAJCrGVUMsV8eGHAkuqDfHD1hgBwp3qCo",
      "pubsub": null,
      "tpuQuic": "64.130.47.155:8003",
      "tpuVote": "64.130.47.155:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.47.155:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.155:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.232:8002",
      "gossip": "5.135.193.195:8001",
      "pubkey": "Hyxa8tBvPAfMku9EnES5N8yjj9g9SDcb41aG7nB3MnKt",
      "pubsub": null,
      "tpuQuic": "5.135.193.195:8003",
      "tpuVote": "5.135.193.195:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.193.195:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.193.195:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.232:8002",
      "gossip": "51.81.171.2:8001",
      "pubkey": "8uzkbgQCzmtYzbw9XmEnVprnP4ijurwhv53BT7e4LdWn",
      "pubsub": null,
      "tpuQuic": "51.81.171.2:8003",
      "tpuVote": "51.81.171.2:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.171.2:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.171.2:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.219:8003",
      "gossip": "198.13.130.219:8001",
      "pubkey": "2pmufEhbPuFATrb8ajuCnzxkNUiwfe25po2fMmS2uFGy",
      "pubsub": null,
      "tpuQuic": "198.13.130.219:9007",
      "tpuVote": "198.13.130.219:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "198.13.130.219:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.219:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "207.211.190.36:8001",
      "pubkey": "7eBFfSsLCJ5WTWXk8wGKCG8BSuFY2zCBBFeAq983FLaw",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.186:8002",
      "gossip": "147.135.102.201:8001",
      "pubkey": "5UuT2bnMQ9cFZVQyuyzZxCGrMyEr8KB9bpTVSN8kWJ5z",
      "pubsub": null,
      "tpuQuic": "147.135.102.201:8003",
      "tpuVote": "147.135.102.201:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "147.135.102.201:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "147.135.102.201:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.247.213:8002",
      "gossip": "204.16.247.213:8001",
      "pubkey": "BoNPXAZqGP6NnNJLexK42UrXN29jNTkSjfTy4KaaNYBc",
      "pubsub": null,
      "tpuQuic": "204.16.247.213:8003",
      "tpuVote": "204.16.247.213:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "204.16.247.213:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.247.213:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.185:8002",
      "gossip": "64.130.44.185:8001",
      "pubkey": "7CAZQoajrc7D5vqXCUxrthtTVMTkaaZWYpmWUbB5Sbae",
      "pubsub": null,
      "tpuQuic": "64.130.44.185:8003",
      "tpuVote": "64.130.44.185:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.185:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.185:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.150:8888",
      "gossip": "198.13.141.54:8000",
      "pubkey": "BzQdzSBXhBt91iBY2DXHjYt9y6yQ9zZKYFBD7fAvVYE2",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.33:8888",
      "gossip": "63.254.162.81:8000",
      "pubkey": "7kgN6Hw8NyimX67XD2zGNMBMX1JEssuLgtoJpk8o42KH",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.144:8888",
      "gossip": "198.13.141.48:8000",
      "pubkey": "5mTBBXzdLBFmE4WEjnFrpkBxTdmondHPbkRoZe32pdhN",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "186.233.187.135:8002",
      "gossip": "186.233.187.135:8001",
      "pubkey": "EnkHDNRVADZkH2Vm9DgijvP5nHyHLjJAMHjkDDt7bx6L",
      "pubsub": null,
      "tpuQuic": "186.233.187.135:8003",
      "tpuVote": "186.233.187.135:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "186.233.187.135:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "186.233.187.135:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.202:8996",
      "gossip": "64.130.32.202:8995",
      "pubkey": "91P6NgLg1YaMhe7Fi2LqZfmeiJxaQzqh18qN8FfEAXgk",
      "pubsub": null,
      "tpuQuic": "64.130.32.202:8997",
      "tpuVote": "64.130.32.202:8999",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.32.202:9004",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.202:8998"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.118.100:8001",
      "gossip": "185.191.118.100:8000",
      "pubkey": "77aRjRMEt4jCFFEvQ4ygXi9jkXfZjyEovovCFF1odqQZ",
      "pubsub": null,
      "tpuQuic": "185.191.118.100:8002",
      "tpuVote": "185.191.118.100:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "185.191.118.100:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.118.100:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.144.245.49:8002",
      "gossip": "216.144.245.49:8001",
      "pubkey": "D8WCCcTSVnhniuY11bbWPUPBRUXo1yCFaHAtrBG8xbfu",
      "pubsub": null,
      "tpuQuic": "216.144.245.49:8003",
      "tpuVote": "216.144.245.49:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.144.245.49:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.144.245.49:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.181:8001",
      "gossip": "67.213.121.181:8000",
      "pubkey": "HBeyYGzkGcFUkfkdQiKFXjXZb8wLVBM4nFQ2Kcqs2EHD",
      "pubsub": null,
      "tpuQuic": "67.213.121.181:8002",
      "tpuVote": "67.213.121.181:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.121.181:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.181:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.101:8002",
      "gossip": "208.115.227.101:8001",
      "pubkey": "HumGC3A4Zpq8p4XBTKksrqSQvYE1PBMwHZVYMBi1Nx2d",
      "pubsub": null,
      "tpuQuic": "208.115.227.101:8003",
      "tpuVote": "208.115.227.101:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.101:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.101:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "205.209.101.42:8001",
      "gossip": "205.209.101.42:8000",
      "pubkey": "2TSEoe7zLbMN2CAHjM83PWP9xiNKAgrbvDGVp3VnR378",
      "pubsub": null,
      "tpuQuic": "205.209.101.42:8002",
      "tpuVote": "205.209.101.42:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "205.209.101.42:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "205.209.101.42:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.228:8002",
      "gossip": "51.81.162.26:8001",
      "pubkey": "9YvrXth8yJiywYJpAFHjqXcWQDBSRB2HeRvQLKQnJ24M",
      "pubsub": null,
      "tpuQuic": "51.81.162.26:8003",
      "tpuVote": "51.81.162.26:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.162.26:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.162.26:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.67:8002",
      "gossip": "208.115.227.67:8001",
      "pubkey": "4ekyTaZ3ip8R5o4AbwAia2A4eNGdnLBmyWPkejSdF8HU",
      "pubsub": null,
      "tpuQuic": "208.115.227.67:8003",
      "tpuVote": "208.115.227.67:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.67:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.67:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.151:8000",
      "pubkey": "Fhu19BLQUQDsX39ggEmJ3JjcLHfCG7Z1CgktY5uHKneE",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "78.138.96.207:8901",
      "gossip": "78.138.96.207:8900",
      "pubkey": "CWuCnftHJJdVRgtaRRaT79n9p6iFw3DGaajhqcnfw2gK",
      "pubsub": null,
      "tpuQuic": "78.138.96.207:8902",
      "tpuVote": "78.138.96.207:8904",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "78.138.96.207:8909",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "78.138.96.207:8903"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.184:8002",
      "gossip": "51.81.43.230:8001",
      "pubkey": "AFNFMRP4o3EYyHp3ZGMi59tZzEwbDkC4V7bDUqVyk3KT",
      "pubsub": null,
      "tpuQuic": "51.81.43.230:8003",
      "tpuVote": "51.81.43.230:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.43.230:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.43.230:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "54.65.219.2:8000",
      "gossip": "54.65.219.2:8020",
      "pubkey": "E4c7KTuWdMgkEF2vEnBxE6nN4ey1eWEuVGcTBXix5BGn",
      "pubsub": null,
      "tpuQuic": "54.65.219.2:8001",
      "tpuVote": "54.65.219.2:8003",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "54.65.219.2:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.65.219.2:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.61:8031",
      "gossip": "64.130.33.61:8030",
      "pubkey": "AWESDhx1pHWzqYmQcHuV9FmAsnaWtMBrE58u54kSCgLz",
      "pubsub": null,
      "tpuQuic": "64.130.33.61:8032",
      "tpuVote": "64.130.33.61:8034",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.33.61:8039",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.61:8033"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.34:8002",
      "gossip": "51.75.32.62:8001",
      "pubkey": "73k5zJA1RdVST4Ku1wiayMYQ3EsWAK8CLmBJU2q3YrVR",
      "pubsub": null,
      "tpuQuic": "51.75.32.62:8003",
      "tpuVote": "51.75.32.62:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.75.32.62:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.75.32.62:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.114:8000",
      "pubkey": "5azyEipDhMZe2FmjnYaWUcMR9nL3CqihaE8DeyxF2unq",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.171:8001",
      "gossip": "64.130.52.171:8000",
      "pubkey": "3gurTmZuBq8sXHjR6UTMueHew6qzqGKWrFCWJAtEYcmX",
      "pubsub": null,
      "tpuQuic": "64.130.52.171:8002",
      "tpuVote": "64.130.52.171:8004",
      "version": "4.1.0-beta.0",
      "clientId": "Agave",
      "featureSet": 995036072,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.35:8002",
      "gossip": "5.135.173.85:8001",
      "pubkey": "2wqReJxKAN8XvY1AQvgmRmczt2kcXeNGk6vmsHSPiewe",
      "pubsub": null,
      "tpuQuic": "5.135.173.85:8003",
      "tpuVote": "5.135.173.85:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.173.85:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.173.85:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.223:8002",
      "gossip": "5.135.174.158:8001",
      "pubkey": "5EX8PPH57JCN55v8QLsferPo9uSTZqK5CFPoE68rGPu9",
      "pubsub": null,
      "tpuQuic": "5.135.174.158:8003",
      "tpuVote": "5.135.174.158:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.174.158:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.174.158:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.173:8002",
      "gossip": "51.81.39.159:8001",
      "pubkey": "7x24PuXg4SyRXEGB3J8RBfbpnvL2zqioVcVTbkHMghV5",
      "pubsub": null,
      "tpuQuic": "51.81.39.159:8003",
      "tpuVote": "51.81.39.159:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.39.159:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.39.159:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.117:8002",
      "gossip": "64.130.63.117:8001",
      "pubkey": "mce6GbB3azbU6toq9fzTcJpf6aXHrkdCiskSZMorVSG",
      "pubsub": null,
      "tpuQuic": "64.130.63.117:8003",
      "tpuVote": "64.130.63.117:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "64.130.63.117:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.117:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.160:8002",
      "gossip": "51.68.202.156:8001",
      "pubkey": "FkG1pbs46TMGEetypa9nG9ARSyuPf4pM2F4WQFsfJFoH",
      "pubsub": null,
      "tpuQuic": "51.68.202.156:8003",
      "tpuVote": "51.68.202.156:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.202.156:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.202.156:8004"
    },
    {
      "rpc": "162.19.222.23:8899",
      "tpu": null,
      "tvu": "162.19.222.23:8001",
      "gossip": "162.19.222.23:8000",
      "pubkey": "CBZAzvNytu6R31Kqx5SXfNkNmooTaFpCD3tpeg13S25S",
      "pubsub": "162.19.222.23:8900",
      "tpuQuic": "162.19.222.23:8002",
      "tpuVote": "162.19.222.23:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "162.19.222.23:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.222.23:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.43:8002",
      "gossip": "5.135.196.121:8001",
      "pubkey": "8aUD4JNCtYd4AQCq4n5TKdt3HJ4fJiztLZEDd9hnkE7Y",
      "pubsub": null,
      "tpuQuic": "5.135.196.121:8003",
      "tpuVote": "5.135.196.121:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.196.121:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.196.121:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.42:8888",
      "gossip": "198.13.136.202:8000",
      "pubkey": "DeWorQmt9D6vuX3GE75eNP8AuTzqaCg8VcackPttsb5b",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.54.153.11:8031",
      "gossip": "86.54.153.11:8030",
      "pubkey": "5JmM2DM5ewPyNL1F3gozzbLkYx2oTVwS4iW1CfqZWfFz",
      "pubsub": null,
      "tpuQuic": "86.54.153.11:8032",
      "tpuVote": "86.54.153.11:8034",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "86.54.153.11:8039",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.54.153.11:8033"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.242:8001",
      "gossip": "198.13.134.242:8000",
      "pubkey": "E1LLQbL1vfiEnJ9W2Rq34e3jdvWm1jB7MczgXXnWc4SV",
      "pubsub": null,
      "tpuQuic": "198.13.134.242:8003",
      "tpuVote": "198.13.134.242:8005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.134.242:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.242:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.2:8002",
      "gossip": "54.37.114.160:8001",
      "pubkey": "2E1AcBw22frRDKGEKUdetUsavR8ccyWfPC27Gp9QEiCV",
      "pubsub": null,
      "tpuQuic": "54.37.114.160:8003",
      "tpuVote": "54.37.114.160:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.37.114.160:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.37.114.160:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.47:8000",
      "pubkey": "4H1VxPoDftuahUnab7CYdZXEkKnqWHXVSS5KVDJ4orwB",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "18.144.86.245:8000",
      "pubkey": "GC5tkPpt3Y6U2sC9rc9CtKcSroxUeRKaWR81spHSTTu",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.82.103:8001",
      "gossip": "85.195.82.103:8000",
      "pubkey": "9RyKhwKkchrW23DBuWVCG26pWkEnLPpnkQvCbzk1TiY6",
      "pubsub": null,
      "tpuQuic": "85.195.82.103:8002",
      "tpuVote": "85.195.82.103:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "85.195.82.103:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.82.103:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.18:8002",
      "gossip": "51.68.135.202:8001",
      "pubkey": "5YeNvMv1kUV5uc7xJPLG5XDbEu2kSEd7wY9KNqd2KQBn",
      "pubsub": null,
      "tpuQuic": "51.68.135.202:8003",
      "tpuVote": "51.68.135.202:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.135.202:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.135.202:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.127.29:8001",
      "gossip": "67.213.127.29:8000",
      "pubkey": "jzbVZPWpXMKvUxpoVMnwag5B4oX4jrbFNSuE5sX3P55",
      "pubsub": null,
      "tpuQuic": "67.213.127.29:8002",
      "tpuVote": "67.213.127.29:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.127.29:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.127.29:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.124:8002",
      "gossip": "141.95.48.148:8001",
      "pubkey": "96GvpwsuHgQTsbfKBdPPzjwDpckdH62RSrn1mVDFMGng",
      "pubsub": null,
      "tpuQuic": "141.95.48.148:8003",
      "tpuVote": "141.95.48.148:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "141.95.48.148:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.95.48.148:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.185:8002",
      "gossip": "51.81.43.231:8001",
      "pubkey": "J2mnCf5Ker8p257PzDzLLcYUpCCNM7AtBHXzK7tuNNMZ",
      "pubsub": null,
      "tpuQuic": "51.81.43.231:8003",
      "tpuVote": "51.81.43.231:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.43.231:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.43.231:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.53.242:8002",
      "gossip": "64.130.53.242:8001",
      "pubkey": "FaZtr9NsWDFasGKQk9RTkEaAWfyzE1m3kHNxUM526fG5",
      "pubsub": null,
      "tpuQuic": "64.130.53.242:8010",
      "tpuVote": "64.130.53.242:8006",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "64.130.53.242:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.242:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "160.202.131.243:8001",
      "gossip": "160.202.131.243:8000",
      "pubkey": "HMwhtzYUn5PgyWN2nTCvF1w9FN6gfM9P5Quk8QBbfS4S",
      "pubsub": null,
      "tpuQuic": "160.202.131.243:8002",
      "tpuVote": "160.202.131.243:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "160.202.131.243:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "160.202.131.243:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.46.85.183:8002",
      "gossip": "72.46.85.183:8001",
      "pubkey": "bw1Em1Hijx2kbqDGKRPo3R9cP5vPPAaPYQTLL79bLFL",
      "pubsub": null,
      "tpuQuic": "72.46.85.183:8003",
      "tpuVote": "72.46.85.183:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "72.46.85.183:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.46.85.183:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.190:8000",
      "pubkey": "98F6LisZ6BLygDbvUtNbnk6bCYXPF37QnJFga1ZFeN5P",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "198.13.134.44:8899",
      "tpu": null,
      "tvu": "198.13.134.44:8001",
      "gossip": "198.13.134.44:8000",
      "pubkey": "GSPysLgMf4Kiuwjn6gURBWENNzhg649visq8sT9R2ig8",
      "pubsub": "198.13.134.44:8900",
      "tpuQuic": "198.13.134.44:8002",
      "tpuVote": "198.13.134.44:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.44:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.44:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "152.236.22.15:8001",
      "gossip": "152.236.22.15:8000",
      "pubkey": "23nYtZLi4jqt7g9ynv9b2oZcr86n1NDwKzCtLMinPfqZ",
      "pubsub": null,
      "tpuQuic": "152.236.22.15:8009",
      "tpuVote": "152.236.22.15:8005",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "152.236.22.15:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "152.236.22.15:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.157:8002",
      "gossip": "51.81.30.23:8001",
      "pubkey": "4x5izwEuEAnvCMzBts5uRBSxqvex4nKgMWEzTnUCRdjN",
      "pubsub": null,
      "tpuQuic": "51.81.30.23:8003",
      "tpuVote": "51.81.30.23:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.30.23:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.30.23:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "95.214.54.140:8001",
      "gossip": "95.214.54.140:8000",
      "pubkey": "DwwZsFuAj8iVwfyjuQzQ2GucZurtjpT4msnBP4Kop6GX",
      "pubsub": null,
      "tpuQuic": "95.214.54.140:8002",
      "tpuVote": "95.214.54.140:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "95.214.54.140:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "95.214.54.140:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.121:8000",
      "pubkey": "BQ71si6NkV4AocEWhek2do9oup9X141YTv9fLrsM1YzU",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.36:8002",
      "gossip": "51.77.35.88:8001",
      "pubkey": "D1NDmj6eyHHvcj91rn9XMv7thjsVryFXw1fyb5P1nGCK",
      "pubsub": null,
      "tpuQuic": "51.77.35.88:8003",
      "tpuVote": "51.77.35.88:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.77.35.88:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.77.35.88:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.52:8000",
      "pubkey": "DghsGom1nSAEEQjuqCX9zMtqTz77M8sBcG67HRi132kL",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "162.19.222.84:8000",
      "pubkey": "A5SFN74Ce6JQjezexAd1i9CfC5T72TejohSoAaE2Dbn9",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "3.1.11",
      "clientId": "Agave",
      "featureSet": 4140108451,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "43.156.141.24:8001",
      "gossip": "43.156.141.24:8000",
      "pubkey": "2wEt7A8t5BmASvapduUEwkPG5kZ7VtW6rYLZZAv6ZhVA",
      "pubsub": null,
      "tpuQuic": "43.156.141.24:8002",
      "tpuVote": "43.156.141.24:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "43.156.141.24:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "43.156.141.24:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.54:8002",
      "gossip": "137.74.50.0:8001",
      "pubkey": "HEWeJ4RwhD6eefrNE8Mtz7Z83wxi6zXYHf1rdRJW6zyf",
      "pubsub": null,
      "tpuQuic": "137.74.50.0:8003",
      "tpuVote": "137.74.50.0:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "137.74.50.0:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "137.74.50.0:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.163:8000",
      "pubkey": "GG1YzWZcN3Z5tze3fUxzzgF2E6PCsDY9cGQr3PBRjzP9",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "170.23.153.201:8001",
      "gossip": "170.23.153.201:8000",
      "pubkey": "4p9zhGrdT82goFXhHVhiqJaC5eaacB3J3HNyR5mvCQBc",
      "pubsub": null,
      "tpuQuic": "170.23.153.201:8002",
      "tpuVote": "170.23.153.201:8004",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "170.23.153.201:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "170.23.153.201:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.53.75:8001",
      "gossip": "64.130.53.75:8000",
      "pubkey": "BPNP1bjV8pyiUmVxeVaqtgWFHpbQNWW9bkq9Mn2qpoU5",
      "pubsub": null,
      "tpuQuic": "64.130.53.75:8002",
      "tpuVote": "64.130.53.75:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.53.75:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.75:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.114:8002",
      "gossip": "51.195.124.110:8001",
      "pubkey": "BCPtBakGknDu8p6PMNWKFLRXqhkBMjFfxFYzpF79fakJ",
      "pubsub": null,
      "tpuQuic": "51.195.124.110:8003",
      "tpuVote": "51.195.124.110:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.195.124.110:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.195.124.110:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.133:8888",
      "gossip": "198.13.141.37:8000",
      "pubkey": "FRT5VNvXTokFN9ks1jHrCE9HU6aAuoUpQUjKKtbUyT31",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.119:8002",
      "gossip": "54.37.90.199:8001",
      "pubkey": "5SHFa6vWzbMRmTqTYr69XtvNuGYerEPrQV17jchZucQp",
      "pubsub": null,
      "tpuQuic": "54.37.90.199:8003",
      "tpuVote": "54.37.90.199:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.37.90.199:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.37.90.199:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "13.159.88.34:8000",
      "gossip": "13.159.88.34:8001",
      "pubkey": "EKh345RzwgPDqW3kctocV3gdyYSmjCP2K9NaUqZYgcEb",
      "pubsub": null,
      "tpuQuic": "13.159.88.34:8002",
      "tpuVote": "13.159.88.34:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "13.159.88.34:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "13.159.88.34:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.196:8003",
      "gossip": "64.130.43.196:8001",
      "pubkey": "DG5RDtXpZHWEqN3GRBiv2rSi87PNc6wy9pYUk18G8WGZ",
      "pubsub": null,
      "tpuQuic": "64.130.43.196:9007",
      "tpuVote": "64.130.43.196:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "64.130.43.196:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.196:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.164:8888",
      "gossip": "45.250.253.13:8000",
      "pubkey": "63wCzg7SkhvDnaMjLQNLfBJkGGEEJofAnxg59AhU7PTA",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "135.125.160.21:8001",
      "gossip": "135.125.160.21:8000",
      "pubkey": "3G4q5yD3aWLWx5C77i9e6x7FVQkwon7kQ3Ri39Lf7Avi",
      "pubsub": null,
      "tpuQuic": "135.125.160.21:8002",
      "tpuVote": "135.125.160.21:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "135.125.160.21:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "135.125.160.21:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.14:8002",
      "gossip": "51.68.135.62:8001",
      "pubkey": "4db9pFZuHtsoRyrKJCXGhwZX2WyLVTGiSE3Ecb9ih63F",
      "pubsub": null,
      "tpuQuic": "51.68.135.62:8003",
      "tpuVote": "51.68.135.62:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.135.62:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.135.62:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.15.241.5:18503",
      "gossip": "204.15.241.5:18502",
      "pubkey": "6jjqcYKghPqdxcfGUcZmAtKfYyqDhr4P9VUF1YLdq99W",
      "pubsub": null,
      "tpuQuic": "204.15.241.5:18511",
      "tpuVote": "204.15.241.5:18507",
      "version": "3.1.11",
      "clientId": "JitoLabs",
      "featureSet": 4140108451,
      "serveRepair": "204.15.241.5:18514",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.15.241.5:18512"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.127.117:8001",
      "gossip": "67.213.127.117:8000",
      "pubkey": "88v4BFtzB11yWxfqaFB9eBdsCzMSnHbbDitbyw1VaBgS",
      "pubsub": null,
      "tpuQuic": "67.213.127.117:8002",
      "tpuVote": "67.213.127.117:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.213.127.117:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.127.117:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.117:8002",
      "gossip": "54.37.90.197:8001",
      "pubkey": "7s7ZhGh4kS6Qqvfd1Kz6pSSZLVXDcjz4zGzC4juYyZVS",
      "pubsub": null,
      "tpuQuic": "54.37.90.197:8003",
      "tpuVote": "54.37.90.197:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.37.90.197:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.37.90.197:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.142:8002",
      "gossip": "51.38.76.206:8001",
      "pubkey": "EdEtUBVePs9554yZZbV5vh8exRxEz5vTNvUiWdRsV9T8",
      "pubsub": null,
      "tpuQuic": "51.38.76.206:8003",
      "tpuVote": "51.38.76.206:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.76.206:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.76.206:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.113:8003",
      "gossip": "64.130.44.113:8001",
      "pubkey": "99KFbrAcXMKPKbYYoucDC6XRvF88Cj31QnXRRP2jGogt",
      "pubsub": null,
      "tpuQuic": "64.130.44.113:9007",
      "tpuVote": "64.130.44.113:9001",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 1429815730,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.113:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.42.231.122:8001",
      "gossip": "89.42.231.122:8000",
      "pubkey": "8mpMpmjDveCFcbgB5vW1jtuLzcsgU9a66zVTySjWe6ug",
      "pubsub": null,
      "tpuQuic": "89.42.231.122:8002",
      "tpuVote": "89.42.231.122:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "89.42.231.122:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.42.231.122:8003"
    },
    {
      "rpc": "160.202.128.121:8899",
      "tpu": null,
      "tvu": "160.202.128.121:8000",
      "gossip": "160.202.128.121:8901",
      "pubkey": "5L7mb9mVyMYJxDxqUBeYrowyJDKxKE4oobw9S44B6MFo",
      "pubsub": "160.202.128.121:8900",
      "tpuQuic": "160.202.128.121:8001",
      "tpuVote": "160.202.128.121:8003",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "160.202.128.121:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "160.202.128.121:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.46.86.165:8000",
      "gossip": "72.46.86.165:8001",
      "pubkey": "4qZsoKCshtXQihXQhDdHdX1jjKLov5jaYvDXkhyfPBLL",
      "pubsub": null,
      "tpuQuic": "72.46.86.165:8002",
      "tpuVote": "72.46.86.165:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "72.46.86.165:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.46.86.165:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.88:8002",
      "gossip": "64.130.42.88:8001",
      "pubkey": "EUs4AYUNJf7czRbLjjvbERGiDeTSh8j6ckHnve6ky3bZ",
      "pubsub": null,
      "tpuQuic": "64.130.42.88:8003",
      "tpuVote": "64.130.42.88:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.88:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.88:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.117:8000",
      "gossip": "208.91.110.117:8001",
      "pubkey": "EWVD9GWPuzH8reDga9g6vwHBHsUJXk1b65NyWXmuWYSV",
      "pubsub": null,
      "tpuQuic": "208.91.110.117:8002",
      "tpuVote": "208.91.110.117:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.117:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.117:8003"
    },
    {
      "rpc": "189.1.171.215:8899",
      "tpu": null,
      "tvu": "189.1.171.215:8003",
      "gossip": "189.1.171.215:8001",
      "pubkey": "5AnwQrrKaApm9RardFUqL3PAjkP5ihGAH6i4qtEi3TKX",
      "pubsub": "189.1.171.215:8900",
      "tpuQuic": "189.1.171.215:9007",
      "tpuVote": "189.1.171.215:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "189.1.171.215:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "189.1.171.215:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.80:8000",
      "pubkey": "1hr9zpQpkTK41c9qFvLMGJT9i6z2gjm4y2dUN3ar9QW",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.76.199:8001",
      "gossip": "57.129.76.199:8000",
      "pubkey": "4QuhERVubGCMnD6gWwj7Y4oXVKFTpX7EBkLgrWqDvMgt",
      "pubsub": null,
      "tpuQuic": "57.129.76.199:8002",
      "tpuVote": "57.129.76.199:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "57.129.76.199:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.76.199:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "212.43.150.248:8002",
      "gossip": "212.43.150.248:8001",
      "pubkey": "H6cvbH2PQkeXYnkbs8yC7UY1pJ9h8hs8JVnv5cXgBRRy",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.46:8002",
      "gossip": "5.135.243.148:8001",
      "pubkey": "GgQQ8SwjoWB357ThhV9SuJDbMKXANkJQbS6i8C7su9QJ",
      "pubsub": null,
      "tpuQuic": "5.135.243.148:8003",
      "tpuVote": "5.135.243.148:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.243.148:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.243.148:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.189.129.75:8001",
      "gossip": "5.189.129.75:8000",
      "pubkey": "7ZjVzUm6ahxFzKKS1fbWGstqFcnBg1f38MHbUhTdqa56",
      "pubsub": null,
      "tpuQuic": "5.189.129.75:8009",
      "tpuVote": "5.189.129.75:8005",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "5.189.129.75:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.189.129.75:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.251.92:8000",
      "pubkey": "4KDasfCbtW4ZXienT416eriAYH2mUS6kjcmYLM6bUHzG",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.55.251:8002",
      "gossip": "64.130.55.251:8001",
      "pubkey": "6svg9AeLL3cvD3reFHEEGpXCGHQoWpz27jzpHVaD8oaD",
      "pubsub": null,
      "tpuQuic": "64.130.55.251:8003",
      "tpuVote": "64.130.55.251:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.55.251:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.55.251:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "145.239.161.197:25001",
      "gossip": "145.239.161.197:25000",
      "pubkey": "BbRinuc3pWM7wJUgUR74jPvQpctsz4uSG2rcVx8xCYjd",
      "pubsub": null,
      "tpuQuic": "145.239.161.197:25002",
      "tpuVote": "145.239.161.197:25004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "145.239.161.197:25009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "145.239.161.197:25003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "185.26.10.37:8000",
      "pubkey": "FLpDLCnCgAXDLjer1ej8BA4M2vvki9DYqRpDjMLQm3bf",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "31.172.68.134:8001",
      "gossip": "31.172.68.134:8000",
      "pubkey": "2bt6etcMBPAm1kAuvTs2ZRMH3qnLVAr4jfYWyYLLogrA",
      "pubsub": null,
      "tpuQuic": "31.172.68.134:8002",
      "tpuVote": "31.172.68.134:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "31.172.68.134:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "31.172.68.134:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.208.234.132:8003",
      "gossip": "67.208.234.132:8002",
      "pubkey": "9sW4Vz9Bf8YEbeyZMaxzD6kEYPct5yH97SUfzervHp1K",
      "pubsub": null,
      "tpuQuic": "67.208.234.132:8004",
      "tpuVote": "67.208.234.132:8006",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.208.234.132:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.208.234.132:8005"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.251:8002",
      "gossip": "208.91.110.251:8001",
      "pubkey": "EKsmGK3E5T8Lh2PLD3QPgKTGLs6cAdLJeNA5MBDthUQn",
      "pubsub": null,
      "tpuQuic": "208.91.110.251:8003",
      "tpuVote": "208.91.110.251:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.251:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.251:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.9.136:8002",
      "gossip": "202.8.9.136:8001",
      "pubkey": "4VSRBLxrwQ1VQWwstc4DJbcnzpRC3L3eRNq8cTzsNpap",
      "pubsub": null,
      "tpuQuic": "202.8.9.136:8003",
      "tpuVote": "202.8.9.136:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.9.136:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.9.136:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.176:8002",
      "gossip": "51.89.161.224:8001",
      "pubkey": "AJ4A7NZmECvvjuPC5Yj5yW4GJbudkAqfapepWE5U19fE",
      "pubsub": null,
      "tpuQuic": "51.89.161.224:8003",
      "tpuVote": "51.89.161.224:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.161.224:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.161.224:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.158:8002",
      "gossip": "51.68.192.2:8001",
      "pubkey": "CxFRF1ZoGb9PYTxSXeXnDMBvgkUqKScDBVdNkyheZ4oi",
      "pubsub": null,
      "tpuQuic": "51.68.192.2:8003",
      "tpuVote": "51.68.192.2:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.192.2:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.192.2:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "210.6.190.203:18001",
      "gossip": "210.6.190.203:18000",
      "pubkey": "4yUzdzb1fCT19Vvdpxf8Edbdtwj6RQGpZSuashCgaQtg",
      "pubsub": null,
      "tpuQuic": "210.6.190.203:18002",
      "tpuVote": "210.6.190.203:18004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "210.6.190.203:18009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "210.6.190.203:18003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.189:8888",
      "gossip": "198.13.136.221:8000",
      "pubkey": "psVf29ieVscFerkjdt51j4V9E3sKgF5VjZAdt9htvQ3",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.54:8888",
      "gossip": "198.13.136.231:8000",
      "pubkey": "BDurJtHevrTZrTMZkvkvkmNLmyr4RcJsNi2JuTjfshJW",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "103.14.27.9:18899",
      "tpu": null,
      "tvu": "103.14.27.9:8001",
      "gossip": "103.14.27.9:8000",
      "pubkey": "2ogtRQjdqFfP9nXr5wo4mc7QtUQwMgn4yTb1iN4PghHe",
      "pubsub": "103.14.27.9:18899",
      "tpuQuic": "103.14.27.9:8002",
      "tpuVote": "103.14.27.9:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.14.27.9:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.14.27.9:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.77.225.172:8000",
      "gossip": "47.77.225.172:8001",
      "pubkey": "GxQkk4ExvReCHeuGuHMbur7v65VrX6oXPZcejhQrTnxF",
      "pubsub": null,
      "tpuQuic": "47.77.225.172:8002",
      "tpuVote": "47.77.225.172:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "47.77.225.172:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "47.77.225.172:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.36.172:8003",
      "gossip": "64.130.36.172:8001",
      "pubkey": "AGUXTz4UDdbfhjehcLc7qyy9SGwMqZimL624mvC8DwwY",
      "pubsub": null,
      "tpuQuic": "64.130.36.172:9007",
      "tpuVote": "64.130.36.172:9001",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 1429815730,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.36.172:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.80:38001",
      "gossip": "64.130.44.80:38000",
      "pubkey": "GrcWch1omPRKXTweDgR3eqnCdK6XHmQz3nDupYQksfii",
      "pubsub": null,
      "tpuQuic": "64.130.44.80:38002",
      "tpuVote": "64.130.44.80:38004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.80:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.80:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.211:8002",
      "gossip": "5.135.171.255:8001",
      "pubkey": "Co5weNKTqHxrtUFNE7eB3kiLcoKzPy6sNKoRPJgBnfnN",
      "pubsub": null,
      "tpuQuic": "5.135.171.255:8003",
      "tpuVote": "5.135.171.255:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.171.255:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.171.255:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.140.46:8002",
      "gossip": "198.13.140.46:8001",
      "pubkey": "4cGtH8ikVSHLPZCCjZS2oXZjyzyJajwnRHA5zrsBsqvC",
      "pubsub": null,
      "tpuQuic": "198.13.140.46:8003",
      "tpuVote": "198.13.140.46:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.140.46:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.46:8004"
    },
    {
      "rpc": "177.54.154.39:18899",
      "tpu": null,
      "tvu": "177.54.154.39:8001",
      "gossip": "177.54.154.39:8000",
      "pubkey": "FzXRTUmqfS9Gbcxh3bPzqERf3gbxd7BqTaGjvmzSUEme",
      "pubsub": "177.54.154.39:18899",
      "tpuQuic": "177.54.154.39:8002",
      "tpuVote": "177.54.154.39:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "177.54.154.39:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "177.54.154.39:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.44:8001",
      "gossip": "64.130.43.44:8000",
      "pubkey": "GkySxXEnG9yjPcf6VnFwqYwWQU5rB8hHZqGo5msYRLTg",
      "pubsub": null,
      "tpuQuic": "64.130.43.44:8002",
      "tpuVote": "64.130.43.44:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.44:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.44:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.20:8888",
      "gossip": "63.254.161.180:8000",
      "pubkey": "BbgqaWko3Lf3ovCet88DR7chYHDK6jkc1XxfNWADB9JE",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.141:8000",
      "gossip": "63.254.172.141:8001",
      "pubkey": "5WFQGGQ8x88Rj2ZnySGSA639SrkZ8mBTEiogG2FhxMYF",
      "pubsub": null,
      "tpuQuic": "63.254.172.141:8002",
      "tpuVote": "63.254.172.141:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "63.254.172.141:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.172.141:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.71.206:11000",
      "gossip": "84.32.71.206:8001",
      "pubkey": "xkusTYMCWwVyvBJzdrWzJAm7TyTJtCA5V3dum2RZrq3",
      "pubsub": null,
      "tpuQuic": "84.32.71.206:11001",
      "tpuVote": "84.32.71.206:11003",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "84.32.71.206:11008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.71.206:11002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "82.22.51.4:8001",
      "gossip": "145.239.149.108:8000",
      "pubkey": "25r1KWeQN6f8zs78fjNUAXapG25i2b298racahov8tEP",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.225:8000",
      "pubkey": "HSBnRBMUy7x2GzPCxNvgiNPaAM6NqnBpZahb8qSSKSdy",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.70:8001",
      "gossip": "64.130.57.70:8000",
      "pubkey": "9SRzB7rnxETtdCnAsFz4kufoR5udA4R9ddj6qW7KW1t3",
      "pubsub": null,
      "tpuQuic": "64.130.57.70:8002",
      "tpuVote": "64.130.57.70:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.57.70:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.70:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "192.69.195.146:8001",
      "gossip": "192.69.195.146:8000",
      "pubkey": "5hFoe6mFfWyb6KGsFAsRxYY3qstJhm4NiqQwLDQyUmMq",
      "pubsub": null,
      "tpuQuic": "192.69.195.146:8002",
      "tpuVote": "192.69.195.146:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "192.69.195.146:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "192.69.195.146:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.151:8001",
      "gossip": "64.130.42.151:8000",
      "pubkey": "42W6Hiq3jV8FjsNMbkcQDKiv7FdzkNoJRQYdVkSivWGA",
      "pubsub": null,
      "tpuQuic": "64.130.42.151:8002",
      "tpuVote": "64.130.42.151:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.42.151:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.151:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.141:8002",
      "gossip": "51.81.26.47:8001",
      "pubkey": "9yd3WBpkjWxEf5dgL19u96kFCcFSoNzKJzp97P9dpQ24",
      "pubsub": null,
      "tpuQuic": "51.81.26.47:8003",
      "tpuVote": "51.81.26.47:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.26.47:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.26.47:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.75:8002",
      "gossip": "51.222.146.137:8001",
      "pubkey": "8V9ETjpA3nqMZhFxhiPi1EEe7HujHp1ZJEzB5tDMgFbL",
      "pubsub": null,
      "tpuQuic": "51.222.146.137:8003",
      "tpuVote": "51.222.146.137:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.146.137:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.146.137:8004"
    },
    {
      "rpc": "3.126.55.102:8899",
      "tpu": null,
      "tvu": "3.126.55.102:8001",
      "gossip": "3.126.55.102:8000",
      "pubkey": "AVdGZv59MvnkEBWG7TPTp5PnLUmjGayNXCFPthj2GZTd",
      "pubsub": "3.126.55.102:8900",
      "tpuQuic": "3.126.55.102:8002",
      "tpuVote": "3.126.55.102:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "3.126.55.102:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "3.126.55.102:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.35:8002",
      "gossip": "51.75.32.63:8001",
      "pubkey": "8Vg8FwBAWU44rFpwFJZuVccnybet1gZbvknRTaESsQKU",
      "pubsub": null,
      "tpuQuic": "51.75.32.63:8003",
      "tpuVote": "51.75.32.63:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.75.32.63:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.75.32.63:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.76:8002",
      "gossip": "51.89.19.252:8001",
      "pubkey": "Ckqp7e7mrthQnq63sKewY9F5SZPoujRjupt9XDaALdEp",
      "pubsub": null,
      "tpuQuic": "51.89.19.252:8003",
      "tpuVote": "51.89.19.252:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.19.252:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.19.252:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.118.155:18001",
      "gossip": "185.191.118.155:18000",
      "pubkey": "GtSqKHBQ1pz5BhBAmjKGCpGS6csnYsp1mCo6n29NDFW9",
      "pubsub": null,
      "tpuQuic": "185.191.118.155:18002",
      "tpuVote": "185.191.118.155:18004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "185.191.118.155:18009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.118.155:18003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.183:8002",
      "gossip": "64.130.44.183:8001",
      "pubkey": "mceXKp7x5cV1Sc3m4qJ56CszpR93ms8dRMCRJ4wRzYJ",
      "pubsub": null,
      "tpuQuic": "64.130.44.183:8003",
      "tpuVote": "64.130.44.183:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "64.130.44.183:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.183:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.71:8002",
      "gossip": "64.31.54.71:8001",
      "pubkey": "8FKC8h8rVRPhzAzrR2C8ca8Gjw7NjJtdpDKrX9YVW5p2",
      "pubsub": null,
      "tpuQuic": "64.31.54.71:8003",
      "tpuVote": "64.31.54.71:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.71:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.71:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.254:8000",
      "pubkey": "8SKRPGBert4SRauqG2veR6BXoCR3rQqGiEW2q6VnGXbf",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.137.181:8002",
      "gossip": "198.13.137.181:8001",
      "pubkey": "DDWH8aYHEYs9qGDgwUMwkRK1KjBoMhiZkCGdb2fqHVu3",
      "pubsub": null,
      "tpuQuic": "198.13.137.181:8003",
      "tpuVote": "198.13.137.181:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.137.181:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.137.181:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.207:8002",
      "gossip": "51.81.195.42:8001",
      "pubkey": "8vrhkGmbRRq1TUxdkNwM8tJSMsDBFvtk6a7tsjBYBdrb",
      "pubsub": null,
      "tpuQuic": "51.81.195.42:8003",
      "tpuVote": "51.81.195.42:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.195.42:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.195.42:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.161:8002",
      "gossip": "51.81.30.139:8001",
      "pubkey": "n4N2XfxJvTEvXjNUHN9LyzrsKSX5zs1NTyeLNH2YdvL",
      "pubsub": null,
      "tpuQuic": "51.81.30.139:8003",
      "tpuVote": "51.81.30.139:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.30.139:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.30.139:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.139:8002",
      "gossip": "64.130.42.139:8001",
      "pubkey": "CmQyqmfajeDmNACr4vufMYkFMffhiQJ3j6ikdGF5XziT",
      "pubsub": null,
      "tpuQuic": "64.130.42.139:8003",
      "tpuVote": "64.130.42.139:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.139:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.139:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "67.209.52.244:7002",
      "pubkey": "9cmhCQAUuDvbs5L6muAXznGqCLg2zb9vnZu3rG6teYms",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.62.25:8002",
      "gossip": "64.130.62.25:8001",
      "pubkey": "9aMiZgYKKLGkQJezboGYabBGW6aBzFPYaHaiCRE2o3Ah",
      "pubsub": null,
      "tpuQuic": "64.130.62.25:8003",
      "tpuVote": "64.130.62.25:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.62.25:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.62.25:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.152:8003",
      "gossip": "64.130.33.152:8001",
      "pubkey": "5En6Tg4iYzyn3dsgbYBw8mWMQGb84yh3LagdmzAWdZPX",
      "pubsub": null,
      "tpuQuic": "64.130.33.152:9007",
      "tpuVote": "64.130.33.152:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "64.130.33.152:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.152:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.48:8002",
      "gossip": "54.36.184.232:8001",
      "pubkey": "DH6CVXjwGGZY79ubcXDpNHdoTV5oGQcQj6hBBHz5bgTf",
      "pubsub": null,
      "tpuQuic": "54.36.184.232:8003",
      "tpuVote": "54.36.184.232:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.36.184.232:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.36.184.232:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.186.48:8002",
      "gossip": "84.32.186.48:8001",
      "pubkey": "F5pvQDynwiZ4EEebzcT6m5SHRRDnfPgngVbPvJCR68Rb",
      "pubsub": null,
      "tpuQuic": "84.32.186.48:8003",
      "tpuVote": "84.32.186.48:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "84.32.186.48:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.186.48:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.2.197:8002",
      "gossip": "64.31.2.197:8001",
      "pubkey": "2a9yEboVXzZ6AbkeW6j6u5JVyXaTnr9fv3w9VpfXs1wq",
      "pubsub": null,
      "tpuQuic": "64.31.2.197:8003",
      "tpuVote": "64.31.2.197:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.2.197:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.2.197:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "67.213.123.113:8000",
      "pubkey": "3VNmizqLBGA42tMbBTVSAfsHdoYdSErwxEdC5JWVeQFa",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.146:8002",
      "gossip": "51.81.27.84:8001",
      "pubkey": "4sNTKFnne4UvAK7AZ2YetxfKhnMnvx1aP3ArgvvfCbhY",
      "pubsub": null,
      "tpuQuic": "51.81.27.84:8003",
      "tpuVote": "51.81.27.84:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.27.84:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.27.84:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.198:8888",
      "gossip": "63.254.169.22:8000",
      "pubkey": "AKpovuXnhNCVbtmXQdC5eREsg9SNgEkwqzZgATFdQcF2",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.27:8002",
      "gossip": "51.75.32.15:8001",
      "pubkey": "CBMAvF5cKdTAfgwsXFUiqwch5XffuxXaGm8yPnBofCto",
      "pubsub": null,
      "tpuQuic": "51.75.32.15:8003",
      "tpuVote": "51.75.32.15:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.75.32.15:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.75.32.15:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.115:8002",
      "gossip": "64.130.51.115:8001",
      "pubkey": "H1rHk8NxTx9aBrgfpDuvbFCrjjigCrLGD75TUNzeB2wh",
      "pubsub": null,
      "tpuQuic": "64.130.51.115:8003",
      "tpuVote": "64.130.51.115:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.115:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.115:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.125:8002",
      "gossip": "141.95.48.149:8001",
      "pubkey": "C1oww7McztoW7Z1DkP2aqH7raEZdWNqV7FWtRc33xTiw",
      "pubsub": null,
      "tpuQuic": "141.95.48.149:8003",
      "tpuVote": "141.95.48.149:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "141.95.48.149:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.95.48.149:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.77:8002",
      "gossip": "51.89.19.253:8001",
      "pubkey": "AdvQdqVd7z3Gab2TD4L6XMnQDSh3fcxKaeKSoBaD63Lb",
      "pubsub": null,
      "tpuQuic": "51.89.19.253:8003",
      "tpuVote": "51.89.19.253:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.19.253:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.19.253:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.174:8888",
      "gossip": "45.250.253.60:8000",
      "pubkey": "7R9wgZ211Ngd6qK7YzawSbgU2gYjzRwfWBPwhRsdCsyp",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "82.100.58.108:8001",
      "gossip": "82.100.58.108:8000",
      "pubkey": "sis2FmpcQuaXHGpbFEfdpi1TunGovBWoxhTQkQCULvL",
      "pubsub": null,
      "tpuQuic": "82.100.58.108:8002",
      "tpuVote": "82.100.58.108:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "82.100.58.108:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "82.100.58.108:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.61:8002",
      "gossip": "151.80.89.219:8001",
      "pubkey": "ChFjtBb9KQj3N8pLPaiyZH2qzRrbUUEeCrawvZYYuiL2",
      "pubsub": null,
      "tpuQuic": "151.80.89.219:8003",
      "tpuVote": "151.80.89.219:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "151.80.89.219:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "151.80.89.219:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.123.123:8001",
      "gossip": "67.213.123.123:8000",
      "pubkey": "2b7B8ruZvmusS4UFvtxZ4Wt3sDZUiPVexvApwpRuUYaB",
      "pubsub": null,
      "tpuQuic": "67.213.123.123:8002",
      "tpuVote": "67.213.123.123:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.213.123.123:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.123.123:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.45:8002",
      "gossip": "51.83.231.157:8001",
      "pubkey": "5V5eiZX29Sa83xhsYfwctRtvRqCgnaegmSyZoYA8n3he",
      "pubsub": null,
      "tpuQuic": "51.83.231.157:8003",
      "tpuVote": "51.83.231.157:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.83.231.157:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.83.231.157:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.45:8888",
      "gossip": "198.13.136.205:8000",
      "pubkey": "8xEpLTTanFZRe6XuzBakVLsYXRo4Ww7C4dS5r3TJvZwW",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.123.17:38001",
      "gossip": "67.213.123.17:38000",
      "pubkey": "scLHrAwfxxKs2TpfEHAYYkaN6hSuKb2zZorhJTFCvev",
      "pubsub": null,
      "tpuQuic": "67.213.123.17:38002",
      "tpuVote": "67.213.123.17:38004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.213.123.17:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.123.17:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.197:8002",
      "gossip": "51.81.137.184:8001",
      "pubkey": "DjLkiQGeDwnbVo7sruMu1iQSzkA2iJFaRDY2U2aVFniu",
      "pubsub": null,
      "tpuQuic": "51.81.137.184:8003",
      "tpuVote": "51.81.137.184:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.137.184:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.137.184:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.32.83:12000",
      "gossip": "84.32.32.83:7001",
      "pubkey": "6itbcrRx8CVGr5Zao49VjZoZA1iRCsi3RF8YWh8oGehp",
      "pubsub": null,
      "tpuQuic": "84.32.32.83:12001",
      "tpuVote": "84.32.32.83:12003",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "84.32.32.83:12008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.32.83:12002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.211.253.204:8001",
      "gossip": "88.211.253.204:8000",
      "pubkey": "Fx2H4VscdiZr9pZB5qDJiJYAD28LTcdNntvA97R2HHCu",
      "pubsub": null,
      "tpuQuic": "88.211.253.204:8002",
      "tpuVote": "88.211.253.204:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "88.211.253.204:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.211.253.204:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.41:8002",
      "gossip": "64.31.54.41:8001",
      "pubkey": "GTrd2uXtkt7UyaHYfz369su2U4u7n6Gs2sqSrzoVjN3U",
      "pubsub": null,
      "tpuQuic": "64.31.54.41:8003",
      "tpuVote": "64.31.54.41:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.41:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.41:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.214:8888",
      "gossip": "64.130.46.214:8000",
      "pubkey": "JANbJwVaTneeaEs3D2MwCf7eokZvvhESUhS2aGQiocts",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.87.151:8001",
      "gossip": "64.34.87.151:8000",
      "pubkey": "DT3J6vrAVSu63F9jFbAiMx3o4D3utnECciomoU5vVEru",
      "pubsub": null,
      "tpuQuic": "64.34.87.151:8002",
      "tpuVote": "64.34.87.151:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.34.87.151:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.87.151:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.77.136.79:8001",
      "gossip": "45.77.136.79:8000",
      "pubkey": "DPjHgNzoZywHpDNZqBh5mdHSJrTZyQRQ5iA9S3Ro2udb",
      "pubsub": null,
      "tpuQuic": "45.77.136.79:8002",
      "tpuVote": "45.77.136.79:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "45.77.136.79:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.77.136.79:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.215:8002",
      "gossip": "5.135.172.139:8001",
      "pubkey": "3Vp63A2T5bperEuRFbguYpnBrjPGH8FGL6d4TN64FeMD",
      "pubsub": null,
      "tpuQuic": "5.135.172.139:8003",
      "tpuVote": "5.135.172.139:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.172.139:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.172.139:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.195:8002",
      "gossip": "15.204.42.211:8001",
      "pubkey": "CZSw9Vez6JHfZbhBwwcZhywCzfwCrHt2oP3F7CWSxCmt",
      "pubsub": null,
      "tpuQuic": "15.204.42.211:8003",
      "tpuVote": "15.204.42.211:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "15.204.42.211:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.42.211:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.19:8888",
      "gossip": "63.254.161.179:8000",
      "pubkey": "BocMM2Le1AFTi4U9wGJLRdHPcFHKssCsEwgc6rs4kY51",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "104.204.140.38:8899",
      "tpu": null,
      "tvu": "104.204.140.38:8000",
      "gossip": "104.204.140.38:8901",
      "pubkey": "oyhk1CsCzDZq3vo5UegH9yb5Aixy3qMipbvaiTGLK58",
      "pubsub": "104.204.140.38:8900",
      "tpuQuic": "104.204.140.38:8001",
      "tpuVote": "104.204.140.38:8003",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "104.204.140.38:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.140.38:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.241.103:8002",
      "gossip": "204.16.241.103:8001",
      "pubkey": "GHmiGoD5Kf9TbQHkEaGQRhzzain7XR2H2sZpxwgeZVYo",
      "pubsub": null,
      "tpuQuic": "204.16.241.103:8003",
      "tpuVote": "204.16.241.103:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.241.103:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.241.103:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.143.76:8002",
      "gossip": "74.118.143.76:8001",
      "pubkey": "3bqnoXDkWRdHMzg9XQkmZQtnPuw8HLc2Nf4qY1SnVAH7",
      "pubsub": null,
      "tpuQuic": "74.118.143.76:8003",
      "tpuVote": "74.118.143.76:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.143.76:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.143.76:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.174:8000",
      "gossip": "64.130.63.174:8001",
      "pubkey": "E47gTCYdwJpbV3VSc5PHS3wRETi3pefu1yoeSARzr7SV",
      "pubsub": null,
      "tpuQuic": "64.130.63.174:8002",
      "tpuVote": "64.130.63.174:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.174:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.174:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "157.90.32.228:10020",
      "gossip": "157.90.32.228:5001",
      "pubkey": "DqtpdyDneV3f43rGLNB6rBjV9VMAA4FMAAGrwQyo6fRJ",
      "pubsub": null,
      "tpuQuic": "157.90.32.228:10021",
      "tpuVote": "157.90.32.228:10023",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "157.90.32.228:10028",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "157.90.32.228:10022"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "195.201.85.164:8001",
      "gossip": "195.201.85.164:8000",
      "pubkey": "D8QzNVfUoudSFPGa6h2pPFSS7r9F9BqmekrKJfdqpxBX",
      "pubsub": null,
      "tpuQuic": "195.201.85.164:8009",
      "tpuVote": "195.201.85.164:8005",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "195.201.85.164:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "195.201.85.164:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "189.1.164.186:8002",
      "gossip": "189.1.164.186:8001",
      "pubkey": "FPu8tFnAsfjW9PvF9P7o2PTcH1B1a4s2GEH6PdKT2Vbv",
      "pubsub": null,
      "tpuQuic": "189.1.164.186:8003",
      "tpuVote": "189.1.164.186:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "189.1.164.186:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "189.1.164.186:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "13.112.72.110:8000",
      "pubkey": "Ft4175z2K5Z75qXxYb5DvTTjGn228zmJvSaAgphwRJzY",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.202:8002",
      "gossip": "198.13.138.183:9007",
      "pubkey": "9Fc5v6KhtMgqJBvQmRwstudnv9UkUUwiex2hTdbY6MbG",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 1718981463,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.85:8000",
      "pubkey": "GSQyekUmd16X8wNCKhm6WYXG9tm9Ju6yKEwNUivpQe3U",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.173:8001",
      "gossip": "208.91.110.173:8000",
      "pubkey": "EFLGFq7gbKXYB9XqREoPZgMvhZ1jfgZfwWHnWZjkwu2a",
      "pubsub": null,
      "tpuQuic": "208.91.110.173:8002",
      "tpuVote": "208.91.110.173:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "208.91.110.173:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.173:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.238.157.179:8000",
      "gossip": "47.238.157.179:8001",
      "pubkey": "373j9oXwE4eJWS5P2iADebA7AmdGagks6CDHgzQmut41",
      "pubsub": null,
      "tpuQuic": "47.238.157.179:8002",
      "tpuVote": "47.238.157.179:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "47.238.157.179:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "47.238.157.179:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.38:8888",
      "gossip": "63.254.162.86:8000",
      "pubkey": "4XHqEztXhsanoD2eRN2hgBgvsgg8ygjGnUeH6tL5yKtm",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.210:8002",
      "gossip": "51.81.206.202:8001",
      "pubkey": "3UsN5HgPdzgsbJimYvgHsFaKVPKpsQbgNf8jQTYxCNoc",
      "pubsub": null,
      "tpuQuic": "51.81.206.202:8003",
      "tpuVote": "51.81.206.202:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.206.202:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.206.202:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.6.13.220:8001",
      "gossip": "185.6.13.220:8000",
      "pubkey": "GrpQu9sRp5dfECSuUMKSfa1MCM4s1NVC3aMh2LKUPuvu",
      "pubsub": null,
      "tpuQuic": "185.6.13.220:8002",
      "tpuVote": "185.6.13.220:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "185.6.13.220:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.6.13.220:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.244:8002",
      "gossip": "51.81.193.146:8001",
      "pubkey": "25Ebufr9st7BUWxtG5Hg5fw2EYu63DtbNCJAQTFFKw8G",
      "pubsub": null,
      "tpuQuic": "51.81.193.146:8003",
      "tpuVote": "51.81.193.146:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.193.146:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.193.146:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.49:8001",
      "gossip": "198.13.130.49:8000",
      "pubkey": "2R5QU9hwp23U3CrH8trGjNY6PyLXwmpXRuVFWEkDXJkg",
      "pubsub": null,
      "tpuQuic": "198.13.130.49:8002",
      "tpuVote": "198.13.130.49:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.130.49:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.49:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.40:8002",
      "gossip": "64.130.44.40:8001",
      "pubkey": "7iQpzN2t3V3zCrhEhLdAqqTdQVUft3kDynyqnjxhvnja",
      "pubsub": null,
      "tpuQuic": "64.130.44.40:8003",
      "tpuVote": "64.130.44.40:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.40:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.40:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.142:8001",
      "gossip": "64.130.33.142:8000",
      "pubkey": "s1c2P3ZY3LgrHQ6XeiEFrret42F9aZzXqLN4CBZwx84",
      "pubsub": null,
      "tpuQuic": "64.130.33.142:8002",
      "tpuVote": "64.130.33.142:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.33.142:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.142:8003"
    },
    {
      "rpc": "54.250.163.37:8080",
      "tpu": null,
      "tvu": "54.250.163.37:8000",
      "gossip": "54.250.163.37:8020",
      "pubkey": "Fto2xPVkovgyvYtZLQV1bcpaYU46XgcBgjRcq6q5Lb2F",
      "pubsub": "54.250.163.37:8081",
      "tpuQuic": "54.250.163.37:8001",
      "tpuVote": "54.250.163.37:8003",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "54.250.163.37:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.250.163.37:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.53.49:8000",
      "gossip": "64.130.53.49:8001",
      "pubkey": "7aqoStQUTvhLYk1kxdBbhFtfxVz5Pik1qakZ1cJSmTrB",
      "pubsub": null,
      "tpuQuic": "64.130.53.49:8002",
      "tpuVote": "64.130.53.49:8004",
      "version": "4.1.0-rc.0",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.53.49:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.49:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.123.255:8000",
      "gossip": "67.213.123.255:8001",
      "pubkey": "CVFuFtLf86Zb1V9nkMFZcTQThDdqoQ1FZCoHah7CUBEv",
      "pubsub": null,
      "tpuQuic": "67.213.123.255:8002",
      "tpuVote": "67.213.123.255:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.213.123.255:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.123.255:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.61.208.54:8001",
      "gossip": "5.61.208.54:8000",
      "pubkey": "DzfMDhDp5kGKp3GZTmeetBnL8yvBf9yCK2u76146KZPz",
      "pubsub": null,
      "tpuQuic": "5.61.208.54:8002",
      "tpuVote": "5.61.208.54:8004",
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": "5.61.208.54:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.61.208.54:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.247.212:8001",
      "gossip": "204.16.247.212:8000",
      "pubkey": "EMyd7TAewcdUttEtzitaCgSnNMZAe3N8vNda1LXuKpXp",
      "pubsub": null,
      "tpuQuic": "204.16.247.212:8002",
      "tpuVote": "204.16.247.212:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.247.212:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.247.212:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.168:8001",
      "gossip": "202.8.11.168:8000",
      "pubkey": "5Ei36L6WMHymCESevd6SieYSC6SbvWcdoVLfucyRP59J",
      "pubsub": null,
      "tpuQuic": "202.8.11.168:8002",
      "tpuVote": "202.8.11.168:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "202.8.11.168:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.168:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.140.74:8001",
      "gossip": "198.13.140.74:8000",
      "pubkey": "YT12rSevejQ9xSP89pfV6jhgdXHnb2tmmm2JJQ98Nah",
      "pubsub": null,
      "tpuQuic": "198.13.140.74:8002",
      "tpuVote": "198.13.140.74:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.140.74:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.74:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.64.3:8001",
      "gossip": "84.32.64.3:8000",
      "pubkey": "Af1RNEKMtfe812XLg59Xxm5ZehU93PBnNoRECzQc74bT",
      "pubsub": null,
      "tpuQuic": "84.32.64.3:8002",
      "tpuVote": "84.32.64.3:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "84.32.64.3:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.64.3:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.118:8002",
      "gossip": "64.130.42.118:8001",
      "pubkey": "Bib11dbhdMmmjqGeMfmj7ZjjMewyHYDLiwSk5pDbF2hF",
      "pubsub": null,
      "tpuQuic": "64.130.42.118:8003",
      "tpuVote": "64.130.42.118:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.118:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.118:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.185:8002",
      "gossip": "64.130.32.185:8001",
      "pubkey": "AFZ7vQFbXkGAhX1J9FaSwqU42PWyNKCBj3ZSz23m3tu1",
      "pubsub": null,
      "tpuQuic": "64.130.32.185:8003",
      "tpuVote": "64.130.32.185:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.185:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.185:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.227:8002",
      "gossip": "51.81.162.25:8001",
      "pubkey": "3mFedMnHKUBj7jQL9WzPQR7WkCmjguEBtQXt6i4ChHDW",
      "pubsub": null,
      "tpuQuic": "51.81.162.25:8003",
      "tpuVote": "51.81.162.25:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.162.25:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.162.25:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.116.246:8001",
      "gossip": "185.191.116.246:8000",
      "pubkey": "C7QQvWGSCqxmpX7P34FvXQMZaUCB2YnPXCGXzeSeqi8Q",
      "pubsub": null,
      "tpuQuic": "185.191.116.246:8002",
      "tpuVote": "185.191.116.246:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "185.191.116.246:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.116.246:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.93:8000",
      "pubkey": "7SesunXJkac2L8F5W6KuXoM1W9KJV4FxCUXw2hWhcGdv",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "173.231.43.218:8000",
      "gossip": "173.231.43.218:8026",
      "pubkey": "491mwDAeCuVWP5fzZKNPC3bM8Fihc42MgqkXNHBSs1ow",
      "pubsub": null,
      "tpuQuic": "173.231.43.218:8001",
      "tpuVote": "173.231.43.218:8003",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "173.231.43.218:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "173.231.43.218:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.181:8000",
      "pubkey": "GCjKR2nWFz6Fbau2iTmYwhpCmu8Ky4RGKCeXVA32Kr6K",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "213.136.69.192:8001",
      "gossip": "213.136.69.192:8000",
      "pubkey": "GYqZ44fsQ5Bgkjgxc2NVSAa83F6oK5LJGbqN4BP2FHc",
      "pubsub": null,
      "tpuQuic": "213.136.69.192:8002",
      "tpuVote": "213.136.69.192:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "213.136.69.192:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "213.136.69.192:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.251.11.24:8021",
      "gossip": "72.251.11.24:8001",
      "pubkey": "9qSwJpKeFThKnhKjXfJGwX5rWG5PCR7wULDSNyREnnaM",
      "pubsub": null,
      "tpuQuic": "72.251.11.24:8022",
      "tpuVote": "72.251.11.24:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "72.251.11.24:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.251.11.24:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.29:8002",
      "gossip": "51.75.32.25:8001",
      "pubkey": "HTsunWdquQ8PGBMw9vwb5nyXWkdYRT62QGBPVmkaiBDc",
      "pubsub": null,
      "tpuQuic": "51.75.32.25:8003",
      "tpuVote": "51.75.32.25:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.75.32.25:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.75.32.25:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.111:8002",
      "gossip": "51.222.167.241:8001",
      "pubkey": "EF4vMUUSZwuMGcxBi49W1RxwQdPQdEmWzrH7oKbNqx8s",
      "pubsub": null,
      "tpuQuic": "51.222.167.241:8003",
      "tpuVote": "51.222.167.241:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.167.241:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.167.241:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.76.96:8000",
      "gossip": "57.129.76.96:8001",
      "pubkey": "AAbwsh1F2efxCcf1wb5t6Gba53QfxXML2e9EVgZccDWv",
      "pubsub": null,
      "tpuQuic": "57.129.76.96:8002",
      "tpuVote": "57.129.76.96:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "57.129.76.96:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.76.96:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.138.119:11001",
      "gossip": "198.13.138.119:11000",
      "pubkey": "73fEqpcZXySAW5F31Tjxyks6ichfEdwjUpR6JRAhj5fh",
      "pubsub": null,
      "tpuQuic": "198.13.138.119:11002",
      "tpuVote": "198.13.138.119:11004",
      "version": "4.0.0-beta.6",
      "clientId": "Agave",
      "featureSet": 2475355604,
      "serveRepair": "198.13.138.119:11009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.138.119:11003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.182:8000",
      "gossip": "64.130.32.182:8001",
      "pubkey": "8dzeJdhGtb8njp2p7NY8N8xJLqVSJMDyvKrASEforgxW",
      "pubsub": null,
      "tpuQuic": "64.130.32.182:8002",
      "tpuVote": "64.130.32.182:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.32.182:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.182:8003"
    },
    {
      "rpc": "64.130.42.49:8899",
      "tpu": null,
      "tvu": "64.130.42.49:8001",
      "gossip": "64.130.42.49:8000",
      "pubkey": "3SwFYpY9PZHXFaTeFccgxK7L5ywgvKrKLrd3xymMYigR",
      "pubsub": "64.130.42.49:8900",
      "tpuQuic": "64.130.42.49:8002",
      "tpuVote": "64.130.42.49:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "64.130.42.49:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.49:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "13.215.52.36:7001",
      "gossip": "13.215.52.36:7000",
      "pubkey": "9UjkyAr7gJuPP8rVtkSyQo9KtgKjWgSpEhC7Q4NEyP95",
      "pubsub": null,
      "tpuQuic": "13.215.52.36:7002",
      "tpuVote": "13.215.52.36:7004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "13.215.52.36:7009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "13.215.52.36:7003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "212.95.38.10:8000",
      "gossip": "212.95.38.10:8001",
      "pubkey": "87c8VmTfRVLfGXWGVVn2RfHSJC7K46KjyHuSDsjNtYxp",
      "pubsub": null,
      "tpuQuic": "212.95.38.10:8002",
      "tpuVote": "212.95.38.10:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "212.95.38.10:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "212.95.38.10:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.190:8888",
      "gossip": "198.13.136.222:8000",
      "pubkey": "CoR122sAw57RFKpSkDSixh48XUZyAr3dTFCF77AEuPdQ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.20:8001",
      "gossip": "64.130.47.20:8000",
      "pubkey": "E6goM4WEcjTkCncSMr4RHTjG8sE33hXQUZ4SoTtN5JSV",
      "pubsub": null,
      "tpuQuic": "64.130.47.20:8002",
      "tpuVote": "64.130.47.20:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.47.20:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.20:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.125:8000",
      "pubkey": "6VAxHLcGVnXt9X4pVWzx5aBZr8ExadhCmQUxsJxVfSBK",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.26:8002",
      "gossip": "64.130.63.26:8001",
      "pubkey": "7qb72e9f36syCjBCfWbssu7xvZPYwtETxZy6RZkUEAY3",
      "pubsub": null,
      "tpuQuic": "64.130.63.26:8003",
      "tpuVote": "64.130.63.26:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.26:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.26:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.18:50001",
      "gossip": "64.130.47.18:50000",
      "pubkey": "GhyfPX5JMfb2HjvbvfRihm9hoPZP8e3VZ8fGfu2fFafK",
      "pubsub": null,
      "tpuQuic": "64.130.47.18:50002",
      "tpuVote": "64.130.47.18:50004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.47.18:50009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.18:50003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.61.208.56:8001",
      "gossip": "5.61.208.54:8000",
      "pubkey": "B5fxUa8fjeQEpEs6xQ4b2pVAxgtMPJYMbsTf5r57vnLv",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.251.3.187:8001",
      "gossip": "72.251.3.187:8000",
      "pubkey": "A6JuS18BthF8RijNSzy2jue7E9WTirgVNm7QtNnZPyEC",
      "pubsub": null,
      "tpuQuic": "72.251.3.187:8002",
      "tpuVote": "72.251.3.187:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "72.251.3.187:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.251.3.187:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.108:8002",
      "gossip": "64.130.42.108:8001",
      "pubkey": "2kyABtusFdoZoBfmMSXCbW5zR7R3ZpfwrphcYtAub5nN",
      "pubsub": null,
      "tpuQuic": "64.130.42.108:8003",
      "tpuVote": "64.130.42.108:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.108:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.108:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.59:8888",
      "gossip": "198.13.133.43:8000",
      "pubkey": "73PVcpdanCPdEsa4YVecLfvPWDuceiomM9LYURAbpHKd",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.126.204:8000",
      "gossip": "67.213.126.204:8801",
      "pubkey": "3dANrpriqc2feHdu2GJGC7L3hzEm4mySo44b6BdSV28o",
      "pubsub": null,
      "tpuQuic": "67.213.126.204:8001",
      "tpuVote": "67.213.126.204:8003",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "67.213.126.204:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.126.204:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.163:8001",
      "gossip": "64.130.50.163:8000",
      "pubkey": "4FvdBpBETxtaB1EPaAXvi7zPn487Lhe8Y5FnC7iDCk6c",
      "pubsub": null,
      "tpuQuic": "64.130.50.163:8002",
      "tpuVote": "64.130.50.163:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.163:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.163:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.116:8000",
      "pubkey": "HMvfzj8gP7W8abRGCHokTJFrrq17xTcrvayigNMqdfe2",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.69:8002",
      "gossip": "178.32.184.119:8001",
      "pubkey": "2c4n3tFXjoMD9HSnEBBjC427uccerZChP7ikccRWWrJL",
      "pubsub": null,
      "tpuQuic": "178.32.184.119:8003",
      "tpuVote": "178.32.184.119:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "178.32.184.119:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "178.32.184.119:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.183:8002",
      "gossip": "51.81.43.229:8001",
      "pubkey": "vQWg5krJAibpafYj2nCNRZ6AZPcowEEtTRbAvQKXZ8m",
      "pubsub": null,
      "tpuQuic": "51.81.43.229:8003",
      "tpuVote": "51.81.43.229:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.43.229:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.43.229:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "91.134.22.18:8000",
      "gossip": "91.134.22.18:8001",
      "pubkey": "AHKPfZmnjFJ3avS6N4SovvWJQmgTnvWg39ANr2T15gvT",
      "pubsub": null,
      "tpuQuic": "91.134.22.18:8009",
      "tpuVote": "91.134.22.18:8005",
      "version": "3.1.11",
      "clientId": "Agave",
      "featureSet": 4140108451,
      "serveRepair": "91.134.22.18:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.134.22.18:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.48.182:8002",
      "gossip": "64.31.48.182:8001",
      "pubkey": "4syCsE8MbykMmUhAa8j9kvrWeSixWxwhRGfRwygnsBaz",
      "pubsub": null,
      "tpuQuic": "64.31.48.182:8003",
      "tpuVote": "64.31.48.182:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.48.182:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.48.182:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.94.251:8002",
      "gossip": "64.34.94.251:8001",
      "pubkey": "J3nqfxNmQtoQSzUW5jbVsCiiBsVLN4BqVZqThppwXZbm",
      "pubsub": null,
      "tpuQuic": "64.34.94.251:8003",
      "tpuVote": "64.34.94.251:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.34.94.251:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.94.251:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.105:8002",
      "gossip": "51.89.106.37:8001",
      "pubkey": "E85JeYCsR9HMvGYo2NZeLLFEtbFJ49cR42X7nUkfH1pa",
      "pubsub": null,
      "tpuQuic": "51.89.106.37:8003",
      "tpuVote": "51.89.106.37:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.106.37:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.106.37:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.106.59.135:8001",
      "gossip": "103.106.59.135:8000",
      "pubkey": "CaxhCyn8vn3k5VDkK4oKoe6qspwokKvfLwhPL1BvfF8o",
      "pubsub": null,
      "tpuQuic": "103.106.59.135:8002",
      "tpuVote": "103.106.59.135:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "103.106.59.135:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.106.59.135:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.203.25:8002",
      "gossip": "208.115.203.25:8001",
      "pubkey": "GQQHzy2qqF59bhVxB7srg2VuELF4sewGRdXQd6dEuEaT",
      "pubsub": null,
      "tpuQuic": "208.115.203.25:8003",
      "tpuVote": "208.115.203.25:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.203.25:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.203.25:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.132.41:8001",
      "gossip": "198.13.132.41:8000",
      "pubkey": "H3zftJAcPDnde8vnhqSMT8gEEfzmPpgQdh8jDjfCXQ6G",
      "pubsub": null,
      "tpuQuic": "198.13.132.41:8002",
      "tpuVote": "198.13.132.41:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.132.41:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.132.41:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.184:8000",
      "pubkey": "AHiCdDWnzPpzyUT39tESfrSKeMyFoa6RHmjLsWPGsR6C",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.70.68:8101",
      "gossip": "84.32.70.68:8100",
      "pubkey": "AH68U4kz4v8EatLmZsCBy7Fm8AJMxGXU8D8tfoqXpWdB",
      "pubsub": null,
      "tpuQuic": "84.32.70.68:8102",
      "tpuVote": "84.32.70.68:8104",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "84.32.70.68:8109",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.70.68:8103"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.146:5556",
      "gossip": "45.152.160.146:5555",
      "pubkey": "6UTvnQismEQ7dhLk9cegTnDKQ2PRNj99bSa4pbXsoMxh",
      "pubsub": null,
      "tpuQuic": "45.152.160.146:5557",
      "tpuVote": "45.152.160.146:5559",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.152.160.146:5564",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.146:5558"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.89:8002",
      "gossip": "208.115.227.89:8001",
      "pubkey": "4u4QTT19s8PPKUPUupPCKPTbf8nEeQZunvtS3M2w6veg",
      "pubsub": null,
      "tpuQuic": "208.115.227.89:8003",
      "tpuVote": "208.115.227.89:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.89:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.89:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.200:8002",
      "gossip": "176.31.67.92:8001",
      "pubkey": "BsCCUJxsjfiQ2BveKePczdTgBUnmax6eoqoFVYyRjZHy",
      "pubsub": null,
      "tpuQuic": "176.31.67.92:8003",
      "tpuVote": "176.31.67.92:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "176.31.67.92:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "176.31.67.92:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.15:8002",
      "gossip": "51.68.135.63:8001",
      "pubkey": "BNefugYZEPowcXXodQpAvUK9azFD3jkVUHV7vqJMfqeL",
      "pubsub": null,
      "tpuQuic": "51.68.135.63:8003",
      "tpuVote": "51.68.135.63:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.135.63:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.135.63:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.19:8002",
      "gossip": "51.68.135.203:8001",
      "pubkey": "bDgK4FES2WNGjvp2JLL7VLoQyZ3AZxCL6sZy9rSfGSi",
      "pubsub": null,
      "tpuQuic": "51.68.135.203:8003",
      "tpuVote": "51.68.135.203:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.135.203:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.135.203:8004"
    },
    {
      "rpc": "177.54.147.77:18899",
      "tpu": null,
      "tvu": "177.54.147.77:8002",
      "gossip": "177.54.147.77:8001",
      "pubkey": "Ax7KggS7tMKbYCa2LzLgdhupd22KMDdWVbY63imrWW2Y",
      "pubsub": "177.54.147.77:18899",
      "tpuQuic": "177.54.147.77:8003",
      "tpuVote": "177.54.147.77:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "177.54.147.77:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "177.54.147.77:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.201:8003",
      "gossip": "64.130.43.201:8001",
      "pubkey": "8JDDBvapmHNvuJ7K1fcC6WJCycfciQrdre8hMx8P3mf1",
      "pubsub": null,
      "tpuQuic": "64.130.43.201:9007",
      "tpuVote": "64.130.43.201:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "64.130.43.201:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.201:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "185.26.10.79:8000",
      "pubkey": "4dKRysBZPkfmxVaQ9QKcv2pWDAJwQWfxvsTaSViR9W3S",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.123:8000",
      "pubkey": "3gDHvduBVrt4CJ8Ficn9RQhkqufjh8sAuXiB7H6wKFhA",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.145:8001",
      "gossip": "64.130.41.145:8000",
      "pubkey": "BK5YdWptTQGrtLxLmrx4PjQh33Fzxemfdf1EMGWRV3wT",
      "pubsub": null,
      "tpuQuic": "64.130.41.145:8002",
      "tpuVote": "64.130.41.145:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.41.145:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.145:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "43.156.148.140:8001",
      "gossip": "43.156.148.140:8000",
      "pubkey": "FHJAXeG3SmzE4D9YVWaYiDWGUV7mAXyJLbxA7vm3k9wc",
      "pubsub": null,
      "tpuQuic": "43.156.148.140:8002",
      "tpuVote": "43.156.148.140:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "43.156.148.140:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "43.156.148.140:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.46:8000",
      "pubkey": "CpUX3EnVypGRw7BStZLXgK3Juf3nVamYu6xEuywVMisK",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.127:8002",
      "gossip": "51.222.171.77:8001",
      "pubkey": "HA6QMnuubJiSQiMsZk3RTEvd3gJAxV3SqA9J3NSR96eo",
      "pubsub": null,
      "tpuQuic": "51.222.171.77:8003",
      "tpuVote": "51.222.171.77:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.171.77:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.171.77:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.53.237:8002",
      "gossip": "64.130.53.237:8001",
      "pubkey": "EtVbFjSmHDTjpHBvdxLC2kBYi75MEXvpHvPDPycje3ae",
      "pubsub": null,
      "tpuQuic": "64.130.53.237:8003",
      "tpuVote": "64.130.53.237:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.53.237:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.237:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.205:8888",
      "gossip": "63.254.169.29:8000",
      "pubkey": "78VF7kvpwL3hpUy5DyVotKnXcCTE8FitN4hpxSbQuyzN",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.144.245.51:8002",
      "gossip": "216.144.245.51:8001",
      "pubkey": "Dkx9YAMwcyH46Y2mMYr3AL9fEhBfADNYFTTn5ps6Lgjv",
      "pubsub": null,
      "tpuQuic": "216.144.245.51:8003",
      "tpuVote": "216.144.245.51:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.144.245.51:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.144.245.51:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.165:8002",
      "gossip": "51.68.222.125:8001",
      "pubkey": "BmhcZcNhLfjmTX1xmTkuwF1uVs6MCQY8K4HzUanGBguj",
      "pubsub": null,
      "tpuQuic": "51.68.222.125:8003",
      "tpuVote": "51.68.222.125:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.222.125:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.222.125:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.85:8002",
      "gossip": "51.89.25.29:8001",
      "pubkey": "FJ34KT35WbriyAuSr2Rn17K8PJBpwz51D9H8zg9gzdrt",
      "pubsub": null,
      "tpuQuic": "51.89.25.29:8003",
      "tpuVote": "51.89.25.29:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.29:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.29:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.13:8002",
      "gossip": "64.130.40.13:8001",
      "pubkey": "AiEzsSFXVHJHDVb7PeKbRcTnQXQsRoYj66yADBCUiPmC",
      "pubsub": null,
      "tpuQuic": "64.130.40.13:8003",
      "tpuVote": "64.130.40.13:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.13:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.13:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.37:8888",
      "gossip": "63.254.162.85:8000",
      "pubkey": "5pZ3WbbcnvXfAwRnymtj9NKqGkLYC7Vn9JyMnLkVN2xH",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.34:8002",
      "gossip": "5.135.173.84:8001",
      "pubkey": "8o4n7Gja7qEfbPTEKMrXcyyEFNvK2NEZ2vdBBv9UFHnn",
      "pubsub": null,
      "tpuQuic": "5.135.173.84:8003",
      "tpuVote": "5.135.173.84:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.173.84:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.173.84:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.170:8888",
      "gossip": "45.250.253.50:8000",
      "pubkey": "Ho3SM8DLjkeZZwF3gehhwoSKnxyxs2mgkNFnUZeXxLZM",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.244.147:8002",
      "gossip": "204.16.244.147:8001",
      "pubkey": "8b1yWwAkbzjKxaAWCuMXLZpKnbjGx742EDaKQNDmX3Ja",
      "pubsub": null,
      "tpuQuic": "204.16.244.147:8010",
      "tpuVote": "204.16.244.147:8006",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "204.16.244.147:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.244.147:8011"
    },
    {
      "rpc": "64.130.63.85:8899",
      "tpu": null,
      "tvu": "64.130.63.85:8000",
      "gossip": "64.130.63.85:8001",
      "pubkey": "HxWC5FtpxTLK7cfP7sFqenaPCp25CyETyZB3VemQ59Wk",
      "pubsub": "64.130.63.85:8900",
      "tpuQuic": "64.130.63.85:8002",
      "tpuVote": "64.130.63.85:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.85:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.85:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.249.137:8002",
      "gossip": "208.115.249.137:8001",
      "pubkey": "6mTkkmXwQGwifDMWd6b8swjKRqxh2xfJDeQfQBBVeQTM",
      "pubsub": null,
      "tpuQuic": "208.115.249.137:8003",
      "tpuVote": "208.115.249.137:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.249.137:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.249.137:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.172:8000",
      "pubkey": "3xMwDPHnmkGoC3NsoR59j3NhE66PsegdSohdQME5kBbn",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.108:8002",
      "gossip": "51.195.26.44:8001",
      "pubkey": "FqeAkBYu9LDTCd39k2Lz5bpBC52RjvYwjNZCPtyRFsgG",
      "pubsub": null,
      "tpuQuic": "51.195.26.44:8003",
      "tpuVote": "51.195.26.44:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.195.26.44:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.195.26.44:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.152:8002",
      "gossip": "51.38.95.152:8001",
      "pubkey": "9D25GL4qa7JY2eSK7rWN2obgZXGdBQm4dhkVp46ugtib",
      "pubsub": null,
      "tpuQuic": "51.38.95.152:8003",
      "tpuVote": "51.38.95.152:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.95.152:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.95.152:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.76.124.69:8000",
      "gossip": "47.76.124.69:8001",
      "pubkey": "9WsAiKv4JYZHGhGVBKZhYhfkxPEKwJkMoNpuTCc6ZL18",
      "pubsub": null,
      "tpuQuic": "47.76.124.69:8002",
      "tpuVote": "47.76.124.69:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "47.76.124.69:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "47.76.124.69:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.28:8002",
      "gossip": "51.75.32.24:8001",
      "pubkey": "F78pDneUQeaU8rXPvV6Cy4RockUJgokRhLqF9DLgzE76",
      "pubsub": null,
      "tpuQuic": "51.75.32.24:8003",
      "tpuVote": "51.75.32.24:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.75.32.24:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.75.32.24:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.162:8002",
      "gossip": "51.81.38.16:8001",
      "pubkey": "2txhmspnnqeV1bLm8QyKjoTE3JFyyPgu1g8AaPxgExCu",
      "pubsub": null,
      "tpuQuic": "51.81.38.16:8003",
      "tpuVote": "51.81.38.16:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.38.16:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.38.16:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "140.245.89.101:8002",
      "gossip": "140.245.89.101:8001",
      "pubkey": "83XLRciFTK9cA3fmGgn5GLvJBQy4ee9udDMZMndmmYQF",
      "pubsub": null,
      "tpuQuic": "140.245.89.101:8010",
      "tpuVote": "140.245.89.101:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "140.245.89.101:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "140.245.89.101:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.158:8003",
      "gossip": "64.130.47.158:8002",
      "pubkey": "E7YER5q2vFbGWzUrzJLaYgGW1hoYmUMyto89tW9LKy4",
      "pubsub": null,
      "tpuQuic": "64.130.47.158:8011",
      "tpuVote": "64.130.47.158:8007",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "64.130.47.158:8014",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.158:8012"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "92.5.141.66:8001",
      "pubkey": "AQ4tQeQNT84JYbwbCsh9bFUJAG5TKg6tfqcX4Gp3qo1n",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.51.251:8002",
      "gossip": "64.31.51.251:8001",
      "pubkey": "DDWexuhkJ7v4fdVm9FiudMTPeVnoh5HdF1UYVY48v2gj",
      "pubsub": null,
      "tpuQuic": "64.31.51.251:8003",
      "tpuVote": "64.31.51.251:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.51.251:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.51.251:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.231.191:8000",
      "pubkey": "Dton4ogPUn7LKJvYyZTrJhKZz6pbc8Pr2rRAXngQ4jVQ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.32.42:8002",
      "gossip": "64.31.32.42:8001",
      "pubkey": "HZq7m3NZdBPorUPVDqptp2UMjqJv4DJFHzjQD2RqtkLH",
      "pubsub": null,
      "tpuQuic": "64.31.32.42:8003",
      "tpuVote": "64.31.32.42:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.32.42:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.32.42:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.163:8002",
      "gossip": "51.81.38.17:8001",
      "pubkey": "E3NkD3ukPVjJ9PSeB8TTuHXcrzWyyRt89TRGN1Sfctds",
      "pubsub": null,
      "tpuQuic": "51.81.38.17:8003",
      "tpuVote": "51.81.38.17:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.38.17:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.38.17:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.225:8002",
      "gossip": "5.135.193.156:8001",
      "pubkey": "685vpvkz79ZEWTKPQnxWej55JBUnmyax8PdZFEF9VSG",
      "pubsub": null,
      "tpuQuic": "5.135.193.156:8003",
      "tpuVote": "5.135.193.156:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.193.156:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.193.156:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.181:8888",
      "gossip": "198.13.136.213:8000",
      "pubkey": "2atTcAQB8hdmRnpXb2PtFwJ3ddcGZURCRXPGAUnXRXKn",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.42:8002",
      "gossip": "64.130.41.42:8001",
      "pubkey": "2gFdhNmub8jtEygsVDrYjNCvkifPyt873j9QA7WEgvga",
      "pubsub": null,
      "tpuQuic": "64.130.41.42:8003",
      "tpuVote": "64.130.41.42:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.42:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.42:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.219:8002",
      "gossip": "5.135.174.19:8001",
      "pubkey": "6Xb5Vu5ivQvWafKEE4kvNqKhJSZpxzB2mgdoeCYE8uPa",
      "pubsub": null,
      "tpuQuic": "5.135.174.19:8003",
      "tpuVote": "5.135.174.19:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.174.19:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.174.19:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.76:8000",
      "pubkey": "APEQzGYgqK5GfEd3in9pV9w8TY95VQnHcGFXaNKfXVkw",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.83:8000",
      "pubkey": "2RXRVzoWxTsV55e1KNVxM6DQqYos1ixiX9PM7Hq1JCzg",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.211:8002",
      "gossip": "64.130.32.211:8001",
      "pubkey": "DDzsM5hcbCVPE7U6gNWzWrhhw4j1XWMCu96c8mnUnW6Q",
      "pubsub": null,
      "tpuQuic": "64.130.32.211:8003",
      "tpuVote": "64.130.32.211:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.211:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.211:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.83.156:8000",
      "pubkey": "5aNVaFVUwQGuhyso61LJH4qvtY8u8nhNMqz4TRrX7ja5",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.61.208.58:8001",
      "gossip": "5.61.208.54:8000",
      "pubkey": "DhJ1TNEtW5pTj6uut4WCByea1Hhr4pqZUgYQAaanfY8f",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.53:8888",
      "gossip": "198.13.136.230:8000",
      "pubkey": "2i9WehbSVJdmmnek6HeGR2RLdKuJhza7D8FizmsFmLZy",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.17:10002",
      "gossip": "45.154.33.17:8001",
      "pubkey": "9Jfm1MDGkSNSQY7wSCu4QjoivHbgQT98LycpfZdXyMdS",
      "pubsub": null,
      "tpuQuic": "45.154.33.17:10003",
      "tpuVote": "45.154.33.17:10005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "45.154.33.17:10010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.17:10004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.76:8002",
      "gossip": "64.130.61.76:8001",
      "pubkey": "Ge64M6RVnj8U6g8Gt3wqDppnAJVU4WasZG12GV9GBs6h",
      "pubsub": null,
      "tpuQuic": "64.130.61.76:8003",
      "tpuVote": "64.130.61.76:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.61.76:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.76:8004"
    },
    {
      "rpc": "177.54.154.239:18899",
      "tpu": null,
      "tvu": "177.54.154.239:8001",
      "gossip": "177.54.154.239:8000",
      "pubkey": "4SxZEAasqgiaFRJQJ6NqoTFPoCAVjQTQRiuRZasfnZv7",
      "pubsub": "177.54.154.239:18899",
      "tpuQuic": "177.54.154.239:8002",
      "tpuVote": "177.54.154.239:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "177.54.154.239:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "177.54.154.239:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.32:8002",
      "gossip": "5.135.171.186:8001",
      "pubkey": "9NxsVdkDBxipVFD3jLGTb2GvZxxDaFzhxLNZMtLg3UVh",
      "pubsub": null,
      "tpuQuic": "5.135.171.186:8003",
      "tpuVote": "5.135.171.186:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.171.186:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.171.186:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.44:8002",
      "gossip": "51.83.231.156:8001",
      "pubkey": "4FzSecAuVh4QwM45zGmcVey1hcbr9jY6d1dYR9cFUQ3z",
      "pubsub": null,
      "tpuQuic": "51.83.231.156:8003",
      "tpuVote": "51.83.231.156:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.83.231.156:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.83.231.156:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.81.141:8002",
      "gossip": "64.34.81.141:8001",
      "pubkey": "93ahxwMs1PmX9S7eTRsKWZpsxUYzmEd1VzTeVtatcKMu",
      "pubsub": null,
      "tpuQuic": "64.34.81.141:8003",
      "tpuVote": "64.34.81.141:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.34.81.141:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.81.141:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "35.78.250.76:38001",
      "gossip": "35.78.250.76:38000",
      "pubkey": "E2XGgrg742pwwYP4GvgPJzdHF5hPqWkrPFF8SGjWgSeK",
      "pubsub": null,
      "tpuQuic": "35.78.250.76:38002",
      "tpuVote": "35.78.250.76:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "35.78.250.76:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "35.78.250.76:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.164:8002",
      "gossip": "64.130.57.164:8001",
      "pubkey": "9idfkVixmZgBr1LayqHgn9oAZ7iRn1SiZhKDdW79bhpC",
      "pubsub": null,
      "tpuQuic": "64.130.57.164:8010",
      "tpuVote": "64.130.57.164:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "64.130.57.164:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.164:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.213:8002",
      "gossip": "5.135.172.137:8001",
      "pubkey": "3zL2JQATKMTh5LSNzmStrj7YGQ2ajFnbMcBrbA6uviD6",
      "pubsub": null,
      "tpuQuic": "5.135.172.137:8003",
      "tpuVote": "5.135.172.137:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.172.137:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.172.137:8004"
    },
    {
      "rpc": "62.113.193.220:18899",
      "tpu": null,
      "tvu": "62.113.194.98:8001",
      "gossip": "62.113.194.98:8000",
      "pubkey": "5paN54iameZj23LNfokE9djbSiNK8SYLVunExSRNzz9v",
      "pubsub": "62.113.193.220:18899",
      "tpuQuic": "62.113.194.98:8002",
      "tpuVote": "62.113.194.98:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "62.113.194.98:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "62.113.194.98:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.116.170:8000",
      "gossip": "185.191.116.170:8001",
      "pubkey": "HP6P2ZvTZ3RxZVZ6ZgYkUXFibFmNnrP6icVnu7ivNwEu",
      "pubsub": null,
      "tpuQuic": "185.191.116.170:8002",
      "tpuVote": "185.191.116.170:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.191.116.170:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.116.170:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.93:8101",
      "gossip": "70.40.185.93:8100",
      "pubkey": "5VBVmkoY4wcXFsfwTxwaYdbvBbb9v9HQQAw7XhxMBzx6",
      "pubsub": null,
      "tpuQuic": "70.40.185.93:8109",
      "tpuVote": "70.40.185.93:8105",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "70.40.185.93:8112",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.93:8110"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.100:8002",
      "gossip": "51.222.162.210:8001",
      "pubkey": "HMd3ZWDvLYsvoQ2bstmLEKaxwvpoN2HKer9zeSWpEDnv",
      "pubsub": null,
      "tpuQuic": "51.222.162.210:8003",
      "tpuVote": "51.222.162.210:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.210:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.210:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.46:8888",
      "gossip": "198.13.136.206:8000",
      "pubkey": "8MdWSwom7xMyC8WQcoz8AhCY8oaTeS9NKt5J7FcWkrrM",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.200:8001",
      "gossip": "70.40.185.200:8000",
      "pubkey": "EbRLUuTD3BQ4rRxfVxsQEiJ9THXbR5yqxgMhKTN4p8gK",
      "pubsub": null,
      "tpuQuic": "70.40.185.200:8002",
      "tpuVote": "70.40.185.200:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.200:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.200:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.223.3:8002",
      "gossip": "208.115.223.3:8001",
      "pubkey": "5Sbm1SMiu66mNYoZnyh6KXARa1hManVjuPWXTH1wfxm9",
      "pubsub": null,
      "tpuQuic": "208.115.223.3:8003",
      "tpuVote": "208.115.223.3:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.223.3:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.223.3:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.224.95:8002",
      "gossip": "208.115.224.95:8001",
      "pubkey": "FwEMRoR7V6byDqMpbD81NVwpwntB5TijHxT6iEKw8xBf",
      "pubsub": null,
      "tpuQuic": "208.115.224.95:8003",
      "tpuVote": "208.115.224.95:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.224.95:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.224.95:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "37.72.171.78:8001",
      "gossip": "37.72.171.78:8000",
      "pubkey": "Ajt1RKDEuQhZ1RsioqGKmwN9PVSBrd8ioFumvoPKwh1n",
      "pubsub": null,
      "tpuQuic": "37.72.171.78:8002",
      "tpuVote": "37.72.171.78:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "37.72.171.78:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "37.72.171.78:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.209:8002",
      "gossip": "5.135.171.253:8001",
      "pubkey": "FqsE4Lpt8zu5UfpAXe9wFpxiARmFrArTwa8CikzAekJW",
      "pubsub": null,
      "tpuQuic": "5.135.171.253:8003",
      "tpuVote": "5.135.171.253:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.171.253:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.171.253:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "52.53.154.23:8000",
      "pubkey": "7w2G1zX6G9Z1v4EJHRo4ybgtMcCod9rpnQurNxXaMotU",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "188.132.146.133:8001",
      "gossip": "188.132.146.133:8000",
      "pubkey": "EMCARedfsLhXN51cPG5TswnAb5skuYZMrbWudeNqAUSV",
      "pubsub": null,
      "tpuQuic": "188.132.146.133:8002",
      "tpuVote": "188.132.146.133:8004",
      "version": "4.1.0-alpha.0",
      "clientId": "JitoLabs",
      "featureSet": 2543003515,
      "serveRepair": "188.132.146.133:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "188.132.146.133:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.221:8888",
      "gossip": "64.130.46.221:8000",
      "pubkey": "6kzQT9VPjAu4aZdAFkqQSQAeDdmk9EbpFfXGasmc2u6a",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.144.249.249:8002",
      "gossip": "216.144.249.249:8001",
      "pubkey": "EhkyBr1JDPjh8mXkywhSzysJFYVQWB5oTxVNRzUsZ3Xf",
      "pubsub": null,
      "tpuQuic": "216.144.249.249:8003",
      "tpuVote": "216.144.249.249:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.144.249.249:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.144.249.249:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "160.202.128.53:8000",
      "pubkey": "DTStSDY1e4UGkdFxbPxoUfF9SKEqGRH3SYXkGtpAawEE",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.88:8001",
      "gossip": "198.13.134.88:8000",
      "pubkey": "8RVB6cgGP46GKtGMHJAb4n85x3bnfpCFELjBbV6TrT4b",
      "pubsub": null,
      "tpuQuic": "198.13.134.88:8002",
      "tpuVote": "198.13.134.88:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.134.88:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.88:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.17:8002",
      "gossip": "51.68.135.201:8001",
      "pubkey": "GjjK66DGqN8BmWXgFTszR6R1XX2ka1uR1nQf9AtjgcB2",
      "pubsub": null,
      "tpuQuic": "51.68.135.201:8003",
      "tpuVote": "51.68.135.201:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.135.201:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.135.201:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.237.53.178:8002",
      "gossip": "104.237.53.178:8001",
      "pubkey": "EBzzGn1zWXU5a8CzGvVrPGQNVNhDzAVkkGzH8qivR5T1",
      "pubsub": null,
      "tpuQuic": "104.237.53.178:8003",
      "tpuVote": "104.237.53.178:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "104.237.53.178:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.237.53.178:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.85:8002",
      "gossip": "64.31.54.85:8001",
      "pubkey": "DaK1FboiKaMPipUthiBszULHXE9nEg1Zq5NFqdc2MA3Y",
      "pubsub": null,
      "tpuQuic": "64.31.54.85:8003",
      "tpuVote": "64.31.54.85:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.85:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.85:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.162.73.222:8002",
      "gossip": "69.162.73.222:8001",
      "pubkey": "A5YWS5nLRGtE7bGpTE3zwu4mFkLhaDQyozCeDjHNqvAs",
      "pubsub": null,
      "tpuQuic": "69.162.73.222:8003",
      "tpuVote": "69.162.73.222:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "69.162.73.222:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.162.73.222:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.110:8002",
      "gossip": "198.13.130.110:8001",
      "pubkey": "9H6V9MKfQrBkJsvRPWnfNPtsP5ymQxiEoFH4ZnuFhdWm",
      "pubsub": null,
      "tpuQuic": "198.13.130.110:8003",
      "tpuVote": "198.13.130.110:8005",
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 4198458772,
      "serveRepair": "198.13.130.110:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.110:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.189.44.236:9001",
      "gossip": "185.189.44.236:9000",
      "pubkey": "8AkdCay8DhgonhRGq5KVUxfvFomiipRWGEeVoe5N1E6G",
      "pubsub": null,
      "tpuQuic": "185.189.44.236:9009",
      "tpuVote": "185.189.44.236:9005",
      "version": "3.0.10",
      "clientId": "Agave",
      "featureSet": 3604001754,
      "serveRepair": "185.189.44.236:9012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.189.44.236:9010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.83:8002",
      "gossip": "64.130.58.83:8001",
      "pubkey": "FXHKowyuFHs4jCWpA2tGXdUYatMWWq2Wc24awPyMpnzL",
      "pubsub": null,
      "tpuQuic": "64.130.58.83:8003",
      "tpuVote": "64.130.58.83:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.58.83:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.83:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.144.245.90:8002",
      "gossip": "216.144.245.90:8001",
      "pubkey": "EV1Dg4xzUK4v9BaAipJMTrnteymNS7MWGhfag9K1q4sA",
      "pubsub": null,
      "tpuQuic": "216.144.245.90:8003",
      "tpuVote": "216.144.245.90:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.144.245.90:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.144.245.90:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "135.125.160.40:8001",
      "gossip": "135.125.160.40:8000",
      "pubkey": "8VHEF4p2s2vwx5aFVTsRaoEa12eK7kL3ZfaK1sSVke6n",
      "pubsub": null,
      "tpuQuic": "135.125.160.40:8002",
      "tpuVote": "135.125.160.40:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "135.125.160.40:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "135.125.160.40:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.165.46:8001",
      "gossip": "5.199.165.46:8000",
      "pubkey": "2dWizFHvFdk5YdSdMbQ9NTEf1QU4wpccAH9zwQ39NCbN",
      "pubsub": null,
      "tpuQuic": "5.199.165.46:8002",
      "tpuVote": "5.199.165.46:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "5.199.165.46:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.165.46:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.52:8888",
      "gossip": "198.13.133.36:8000",
      "pubkey": "4HZJQTgnoaZyBZvfi7Mw6xMNKZ5RFRVZqXRa5GhXPkR5",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.234:8000",
      "pubkey": "H12XJU8B7HDGdFQuhzaeKowK9AX8MrpGVuZcNSiz6mKh",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.35:8002",
      "gossip": "64.130.58.35:8001",
      "pubkey": "67jHZwjzR6PHaurRvF1Qepr9tugFjbs98Ltpd2gcKGKv",
      "pubsub": null,
      "tpuQuic": "64.130.58.35:8003",
      "tpuVote": "64.130.58.35:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.58.35:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.35:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.46.11:8001",
      "gossip": "64.130.46.11:8000",
      "pubkey": "3TtZHRzR3bNx69obrFACwwAtg55GWGiYyEf98spVmJmc",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.135:8888",
      "gossip": "198.13.141.39:8000",
      "pubkey": "EBa4CZPWqqcDK3EMn4VRQURzKn8TcaRnSZ6rXGx6V12j",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.44:8001",
      "gossip": "64.130.57.44:8000",
      "pubkey": "caSFeQYTQhPvDiMPoYAoVg1r1cmD7ijZLPdgRUYttak",
      "pubsub": null,
      "tpuQuic": "64.130.57.44:8002",
      "tpuVote": "64.130.57.44:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.57.44:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.44:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.147:8888",
      "gossip": "198.13.141.51:8000",
      "pubkey": "4XWTuQ3gLxtoVptPRCFw7BsQRSQaTZww6xv83TETkEzs",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.46.87.61:8001",
      "gossip": "72.46.87.61:8000",
      "pubkey": "7WHKYTPxv5MCnEiApNfYqePurzpFBEvciNVULpAAbGyz",
      "pubsub": null,
      "tpuQuic": "72.46.87.61:8002",
      "tpuVote": "72.46.87.61:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "72.46.87.61:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.46.87.61:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.208:8888",
      "gossip": "64.130.46.208:8000",
      "pubkey": "E68GPEReddHUaiCr4HYPYQXs4cTD9FbFLAVgsAkb68VF",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.13:8002",
      "gossip": "5.39.106.31:8001",
      "pubkey": "6ZUFd2MHwdVNsyHgVvacxLMdUmnWxkEqCTAKv6spLaSM",
      "pubsub": null,
      "tpuQuic": "5.39.106.31:8003",
      "tpuVote": "5.39.106.31:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.39.106.31:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.39.106.31:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.39:8002",
      "gossip": "5.135.192.209:8001",
      "pubkey": "59Vu5ekxe6hMFDMJpYnVYhk1YzhJFSdWCVhp1md3ZMws",
      "pubsub": null,
      "tpuQuic": "5.135.192.209:8003",
      "tpuVote": "5.135.192.209:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.192.209:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.192.209:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "18.183.199.68:38001",
      "gossip": "18.183.199.68:38000",
      "pubkey": "4DiYiSPpbFs3RwDratt57S536VszYxXUf2MDXABkER1G",
      "pubsub": null,
      "tpuQuic": "18.183.199.68:38002",
      "tpuVote": "18.183.199.68:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "18.183.199.68:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "18.183.199.68:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.215:8001",
      "gossip": "198.13.130.215:9001",
      "pubkey": "sgpEnsGzLx74cuxB1pNbHPQRY2ViNoyHWDvTvCuoVKx",
      "pubsub": null,
      "tpuQuic": "198.13.130.215:9008",
      "tpuVote": "198.13.130.215:9002",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "198.13.130.215:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.215:9008"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.25:8888",
      "gossip": "63.254.161.185:8000",
      "pubkey": "3FYRGhsnSQhe7nZZcmqQF3NtgKsz9sy4DqBxHrTNCAWR",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "18.185.16.18:8000",
      "pubkey": "5yTNpL9jDgxZDpv4VgBoFH3WTUN8zVvLexJ2novrMjJs",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "213.250.134.135:8000",
      "gossip": "213.250.134.135:8020",
      "pubkey": "8aMWBMztDoM6ZotpVgUpFSkA2PsG7eLTdMEyQRdegtru",
      "pubsub": null,
      "tpuQuic": "213.250.134.135:8001",
      "tpuVote": "213.250.134.135:8003",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "213.250.134.135:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "213.250.134.135:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "129.146.101.244:8001",
      "pubkey": "DCrAdecMrnQXEEU67TVe3yXCWYgNtQvukomKcL44bX4k",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.193:8888",
      "gossip": "63.254.169.17:8000",
      "pubkey": "GL2QT38Xcanv4d12z3JCxQVnsYsLHzQVJDu25CcmqVzo",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "43.134.119.81:8001",
      "gossip": "43.134.119.81:8000",
      "pubkey": "D2aepQydtJgbfSdF69xx8wnYd9re8q9nR4qT8vQdMfTA",
      "pubsub": null,
      "tpuQuic": "43.134.119.81:8002",
      "tpuVote": "43.134.119.81:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "43.134.119.81:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "43.134.119.81:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.181.101.20:28001",
      "gossip": "57.181.101.20:28000",
      "pubkey": "EhzKDJb2i7WZ8dqZfHpC7AC6pYthHMNynkydJ5A6EMPV",
      "pubsub": null,
      "tpuQuic": "57.181.101.20:28002",
      "tpuVote": "57.181.101.20:28004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "57.181.101.20:28009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.181.101.20:28003"
    },
    {
      "rpc": "185.191.117.163:8899",
      "tpu": null,
      "tvu": "185.191.117.163:8000",
      "gossip": "185.191.117.163:8001",
      "pubkey": "2oQPRLw56jq6x6vQiZ2widtu9U3Wm1eH7WqyVHt4292x",
      "pubsub": "185.191.117.163:8900",
      "tpuQuic": "185.191.117.163:8002",
      "tpuVote": "185.191.117.163:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.163:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.163:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.167.24.201:8000",
      "gossip": "104.167.24.201:8001",
      "pubkey": "ABVo8f1KA4jHnKDSFuotuPH5xES5A8AXugrpQD3C3o2n",
      "pubsub": null,
      "tpuQuic": "104.167.24.201:8002",
      "tpuVote": "104.167.24.201:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "104.167.24.201:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.167.24.201:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.36.35.228:8001",
      "gossip": "89.36.35.228:8000",
      "pubkey": "D7id7uVoEQpxBLvDFgYBfpnt7KKAqR9quEWwWkxpSGds",
      "pubsub": null,
      "tpuQuic": "89.36.35.228:8002",
      "tpuVote": "89.36.35.228:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "89.36.35.228:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.36.35.228:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.233:8000",
      "pubkey": "22tgsBNd2eaw2w5U8mUySd2qC3JnGYT6HmFSkM2v6GYB",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.44.207.187:8001",
      "gossip": "185.44.207.187:8000",
      "pubkey": "HV7d7qx4aDP3RQP1sjKhXwABFHPGgeALkudh5zQXnX7z",
      "pubsub": null,
      "tpuQuic": "185.44.207.187:8002",
      "tpuVote": "185.44.207.187:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.44.207.187:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.44.207.187:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.171:8002",
      "gossip": "141.98.219.171:8001",
      "pubkey": "6cc8gwcaLCSincPe5kuG5vCruT9vtTBVqLqxgZdPEirk",
      "pubsub": null,
      "tpuQuic": "141.98.219.171:8003",
      "tpuVote": "141.98.219.171:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.219.171:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.171:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.251:8000",
      "pubkey": "HYWp3DUFwvXVjj5X2qRY8i1R3UrkhztAbyTdtmHPMU96",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.55:8001",
      "gossip": "64.130.61.55:8000",
      "pubkey": "CefSPTWnLkTsmz14LMJLupsFyu5skWr3DVuyvHvADKjz",
      "pubsub": null,
      "tpuQuic": "64.130.61.55:8002",
      "tpuVote": "64.130.61.55:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.61.55:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.55:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.147:8002",
      "gossip": "51.81.27.85:8001",
      "pubkey": "GN49XYRGycEuCBKSkyAkNMM5hUNV4QJqKBFN1aXhJWkW",
      "pubsub": null,
      "tpuQuic": "51.81.27.85:8003",
      "tpuVote": "51.81.27.85:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.27.85:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.27.85:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.57:8001",
      "gossip": "64.130.61.57:8000",
      "pubkey": "DRAuamuHkMoAbnFqpPX3va955cN2fvifQWSWiA2u8Wmp",
      "pubsub": null,
      "tpuQuic": "64.130.61.57:8002",
      "tpuVote": "64.130.61.57:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.61.57:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.57:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "176.111.58.114:8000",
      "gossip": "176.111.58.114:8001",
      "pubkey": "5RQ8M8dqgt7A6wvTU7Hz56JPK7kqNhcshTxe3i6YopV5",
      "pubsub": null,
      "tpuQuic": "176.111.58.114:8002",
      "tpuVote": "176.111.58.114:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "176.111.58.114:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "176.111.58.114:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "91.225.138.33:8002",
      "gossip": "91.225.138.33:8001",
      "pubkey": "DTr47swHUenmUKKghB8UTT33d7miQLdBeVVgpRYeZoBZ",
      "pubsub": null,
      "tpuQuic": "91.225.138.33:8003",
      "tpuVote": "91.225.138.33:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "91.225.138.33:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.225.138.33:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.34.11:8002",
      "gossip": "64.130.34.11:8001",
      "pubkey": "FsQpf6YDxACrWrZJgaRULTzfQC7ghW2gABaREhnR5C7Y",
      "pubsub": null,
      "tpuQuic": "64.130.34.11:8003",
      "tpuVote": "64.130.34.11:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.34.11:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.34.11:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "98.92.170.249:8001",
      "gossip": "98.92.170.249:8000",
      "pubkey": "C2SQwyBfZvzBj3L8EcQGtC9L24jJt4CTdPSwFM2d8E23",
      "pubsub": null,
      "tpuQuic": "98.92.170.249:8009",
      "tpuVote": "98.92.170.249:8005",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "98.92.170.249:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "98.92.170.249:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.61:8000",
      "pubkey": "79xKJodFevr3buUKQxrDF3RheoukuyCoZAgBLShaeNb8",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.178:8888",
      "gossip": "198.13.136.210:8000",
      "pubkey": "4qxfcfG6ZfmYnS5LUmX4tvbmC5efTc39VKyEHhcnfYhb",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.231:8002",
      "gossip": "5.135.193.194:8001",
      "pubkey": "AhWWqEkGQz25swfUwSgN5jG4FQpNfWNDa16Qcsbi7uDh",
      "pubsub": null,
      "tpuQuic": "5.135.193.194:8003",
      "tpuVote": "5.135.193.194:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.193.194:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.193.194:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.37:8888",
      "gossip": "198.13.136.197:8000",
      "pubkey": "7HTL9B24syHkRajZpt4kerwV5CpN14U5y7eL2YmyHHuR",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.97.5:8001",
      "gossip": "84.32.97.5:8000",
      "pubkey": "9BxZonJTDUhnPakFsGTNsKCbBXhXr7vrZMhQSdxdZd2i",
      "pubsub": null,
      "tpuQuic": "84.32.97.5:8002",
      "tpuVote": "84.32.97.5:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "84.32.97.5:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.97.5:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.60:8001",
      "gossip": "64.130.61.60:8000",
      "pubkey": "5xhmk8VPyQbSVy3wMx1iZJU4CzAowjRkpN768hzMPK1s",
      "pubsub": null,
      "tpuQuic": "64.130.61.60:8002",
      "tpuVote": "64.130.61.60:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.61.60:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.60:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.37:8002",
      "gossip": "64.31.54.37:8001",
      "pubkey": "BJHJMRaR6RA4XNHJLJ2bYJFguPNkkX8WEPZYBfpE9Gpd",
      "pubsub": null,
      "tpuQuic": "64.31.54.37:8003",
      "tpuVote": "64.31.54.37:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.37:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.37:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "45.250.253.234:8000",
      "pubkey": "DJs4rQ3RzaLhndirGbQiu1foVtqSQaNQZ6wtigE2rcYn",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.248:8001",
      "gossip": "198.13.134.248:8000",
      "pubkey": "84avDukkbp9bnuRU5ESXLqquMKVT4sCNpWxmuprRLieA",
      "pubsub": null,
      "tpuQuic": "198.13.134.248:8002",
      "tpuVote": "198.13.134.248:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.248:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.248:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.28:8888",
      "gossip": "63.254.161.188:8000",
      "pubkey": "AsYf6P7j7Kq4tX1ByCGDmP894yUCDgTX8i5qzXy1o4T8",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.229.125:8002",
      "gossip": "74.63.229.125:8001",
      "pubkey": "7bheQjnMgS4q4MuMkd8gSpAudDGkmtiQYZZGxxecHtgh",
      "pubsub": null,
      "tpuQuic": "74.63.229.125:8003",
      "tpuVote": "74.63.229.125:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.229.125:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.229.125:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "80.76.51.168:8001",
      "gossip": "80.76.51.168:8000",
      "pubkey": "CLRMmAKhSY9TbqyFaqGCs27rqWZDFV1sy8BtZQFzxQLA",
      "pubsub": null,
      "tpuQuic": "80.76.51.168:8002",
      "tpuVote": "80.76.51.168:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "80.76.51.168:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "80.76.51.168:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.44:8888",
      "gossip": "63.254.162.92:8000",
      "pubkey": "3S84gkZ3p7GzsTLhpDhY62FdomC6Nzt4gf2hkEtdkAmA",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.11.33.164:8001",
      "gossip": "204.11.33.164:8000",
      "pubkey": "Fakewzov4n2oHKfgbzemZ2vUbMrNF7LgeBhMEkN7EBow",
      "pubsub": null,
      "tpuQuic": "204.11.33.164:8002",
      "tpuVote": "204.11.33.164:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "204.11.33.164:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.11.33.164:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.50.108.106:8000",
      "gossip": "149.50.108.106:8001",
      "pubkey": "C5RQ27aE56WfjqELv3Q4ptTphenwQ36ihWY9Fto6Goj5",
      "pubsub": null,
      "tpuQuic": "149.50.108.106:8002",
      "tpuVote": "149.50.108.106:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "149.50.108.106:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "149.50.108.106:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.204.108.7:8001",
      "gossip": "15.204.108.7:8000",
      "pubkey": "5cNVmZViHvhJ2jie8PAZUgxJCmrRe6BTiZRHhx4k41ko",
      "pubsub": null,
      "tpuQuic": "15.204.108.7:8002",
      "tpuVote": "15.204.108.7:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "15.204.108.7:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.108.7:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "92.205.32.65:8001",
      "gossip": "92.205.32.65:8000",
      "pubkey": "TavR3q6YryeAdNP5BMpBxzgpfaiDLcfGCNMAY4BK2Xv",
      "pubsub": null,
      "tpuQuic": "92.205.32.65:8002",
      "tpuVote": "92.205.32.65:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "92.205.32.65:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "92.205.32.65:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.142.23:8002",
      "gossip": "198.13.142.23:8001",
      "pubkey": "UFFTY9WEuXGPcy8y5p6Gv59TNTVEZYE3SRCTHhU6VWS",
      "pubsub": null,
      "tpuQuic": "198.13.142.23:8003",
      "tpuVote": "198.13.142.23:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.142.23:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.142.23:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "37.61.215.211:8100",
      "gossip": "37.61.215.211:8001",
      "pubkey": "5YxWSod3ehRm7d7nz5kBzDu7Ssi4YNagaSSaWVWsiXhp",
      "pubsub": null,
      "tpuQuic": "37.61.215.211:9007",
      "tpuVote": "37.61.215.211:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "37.61.215.211:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "37.61.215.211:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.51:8888",
      "gossip": "198.13.133.35:8000",
      "pubkey": "7J1EKNS1KYUcZGpsMrdjXMvNZ6NRXm5Rszgc2hseh5XN",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.51:8002",
      "gossip": "46.105.157.249:8001",
      "pubkey": "6QMAJjSf3LsQJ2HTwicCFCtmZzkEV8yVat6kgUuhuDWv",
      "pubsub": null,
      "tpuQuic": "46.105.157.249:8003",
      "tpuVote": "46.105.157.249:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "46.105.157.249:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "46.105.157.249:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.144:8003",
      "gossip": "45.152.160.144:8001",
      "pubkey": "Ebx3xzYSFcZibB4gj5tCP6m39ad83v7cLBVgmRhQyWeo",
      "pubsub": null,
      "tpuQuic": "45.152.160.144:8026",
      "tpuVote": "45.152.160.144:8020",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 915572817,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.144:8026"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "186.233.187.51:8001",
      "gossip": "186.233.187.51:8000",
      "pubkey": "5BdAjqJbyC7aWkmSm42azTyjB1yyrk4fKC3tWcNLZhgU",
      "pubsub": null,
      "tpuQuic": "186.233.187.51:8002",
      "tpuVote": "186.233.187.51:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "186.233.187.51:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "186.233.187.51:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "34.227.255.241:8001",
      "gossip": "34.227.255.241:8000",
      "pubkey": "ERsqNVDs5vrATSUa1411syBabT3VWrGU2STYaee2axfs",
      "pubsub": null,
      "tpuQuic": "34.227.255.241:8002",
      "tpuVote": "34.227.255.241:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "34.227.255.241:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "34.227.255.241:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.50:8002",
      "gossip": "46.105.157.248:8001",
      "pubkey": "5Tum72SFmoinV4rVBZwLwuoXvnkxYx4LB5mQrDMxmDsN",
      "pubsub": null,
      "tpuQuic": "46.105.157.248:8003",
      "tpuVote": "46.105.157.248:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "46.105.157.248:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "46.105.157.248:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "13.220.80.59:38001",
      "gossip": "13.220.80.59:38000",
      "pubkey": "8K82wPrD8nSZAETFReoB4q3VfZj4CwARDqTZW3SVy6AX",
      "pubsub": null,
      "tpuQuic": "13.220.80.59:38002",
      "tpuVote": "13.220.80.59:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "13.220.80.59:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "13.220.80.59:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.183:8002",
      "gossip": "51.195.128.243:8001",
      "pubkey": "FNgtTcoXNaNger7wwijnZYxFnAQ1G7wy9G4JyM6YChHV",
      "pubsub": null,
      "tpuQuic": "51.195.128.243:8003",
      "tpuVote": "51.195.128.243:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.195.128.243:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.195.128.243:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.85.194:8001",
      "gossip": "57.129.85.194:8000",
      "pubkey": "8JUdrwVvgiJoMw5YaShuV6xL2N3KNwjRJubE9uWPvwTe",
      "pubsub": null,
      "tpuQuic": "57.129.85.194:8002",
      "tpuVote": "57.129.85.194:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "57.129.85.194:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.85.194:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.38:8002",
      "gossip": "5.135.192.208:8001",
      "pubkey": "49cNyFjnoBpbDrYvMdsKkznAJj1aaTZRv8BHrHsM9XcT",
      "pubsub": null,
      "tpuQuic": "5.135.192.208:8003",
      "tpuVote": "5.135.192.208:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.192.208:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.192.208:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "72.251.11.54:8000",
      "pubkey": "4rgYMS2QVC7eJxZzHnpc2ifsUKB46KX9PT7JByVWS7uZ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "173.234.17.205:8802",
      "gossip": "173.234.17.205:8801",
      "pubkey": "7kja2EB5Wjy7BykBwZ7oPUmquXtLJD1Ti7ZocZFuMvLA",
      "pubsub": null,
      "tpuQuic": "173.234.17.205:8803",
      "tpuVote": "173.234.17.205:8805",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "173.234.17.205:8810",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "173.234.17.205:8804"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.216:8002",
      "gossip": "64.130.49.216:8001",
      "pubkey": "AY81WSfRQa1aYTdV2GZRLw4UGBFPrneUrSCCwvH6frSe",
      "pubsub": null,
      "tpuQuic": "64.130.49.216:8003",
      "tpuVote": "64.130.49.216:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.49.216:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.216:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.28.89.150:8001",
      "gossip": "103.28.89.150:8000",
      "pubkey": "wb95R86mZgXBtJ76hVcbMZysarQNvqaFf8CZzxYj7pY",
      "pubsub": null,
      "tpuQuic": "103.28.89.150:8002",
      "tpuVote": "103.28.89.150:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "103.28.89.150:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.28.89.150:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.109.21:8002",
      "gossip": "208.91.109.21:8001",
      "pubkey": "ZdX2YA76ZbTr8mbEELvS2cYuMS2fVjKeN6pWHrDNict",
      "pubsub": null,
      "tpuQuic": "208.91.109.21:8003",
      "tpuVote": "208.91.109.21:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.109.21:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.21:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.52:8002",
      "gossip": "54.37.140.68:8001",
      "pubkey": "8LGE1PAWfyaEy5CP6z3dbdgwSw4WtKyCrZQXeph6V1QM",
      "pubsub": null,
      "tpuQuic": "54.37.140.68:8003",
      "tpuVote": "54.37.140.68:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.37.140.68:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.37.140.68:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.123.15:8000",
      "gossip": "67.213.123.15:8001",
      "pubkey": "BezZ8NNVETgk3KpNLxB8RxTeciUVG5NKcFMXeJf4aqsE",
      "pubsub": null,
      "tpuQuic": "67.213.123.15:8002",
      "tpuVote": "67.213.123.15:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.213.123.15:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.123.15:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "18.156.175.26:8000",
      "pubkey": "DP1tXzA1AJBqrLCkSEkpz7M3csyPWSUWir4ma293yg36",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "37.48.105.123:8001",
      "gossip": "37.48.105.123:8000",
      "pubkey": "87T5mFj3mmhh2d3svMVUfXpfxpkbH4VDKiZdT8SSwgN",
      "pubsub": null,
      "tpuQuic": "37.48.105.123:8002",
      "tpuVote": "37.48.105.123:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "37.48.105.123:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "37.48.105.123:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.149:8002",
      "gossip": "51.81.27.87:8001",
      "pubkey": "2hRdRgKTtiDaqC6hEv4nTWFazf815yBZx9kMHTXMDEtW",
      "pubsub": null,
      "tpuQuic": "51.81.27.87:8003",
      "tpuVote": "51.81.27.87:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.27.87:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.27.87:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.115:8002",
      "gossip": "51.222.169.169:8001",
      "pubkey": "9QpRBLvseoijWLJqBU4wB5qzEVjQSY5jJ8fSYHzR1itv",
      "pubsub": null,
      "tpuQuic": "51.222.169.169:8003",
      "tpuVote": "51.222.169.169:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.169.169:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.169.169:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.81:8001",
      "gossip": "64.130.37.81:8000",
      "pubkey": "9g1sV2c6ubc2L6JeH5yBq9hX3fYrWbPQjyjdNnFGyjHf",
      "pubsub": null,
      "tpuQuic": "64.130.37.81:8002",
      "tpuVote": "64.130.37.81:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.37.81:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.81:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.15:8002",
      "gossip": "202.8.11.15:8001",
      "pubkey": "8fWd31DDxHjLXtzSMGbwGMjrxraQrqPkm4RQYKDAh7Lf",
      "pubsub": null,
      "tpuQuic": "202.8.11.15:8003",
      "tpuVote": "202.8.11.15:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.15:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.15:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.179:8002",
      "gossip": "51.89.161.227:8001",
      "pubkey": "BJNP8mMkRZWKZ1J5Q2piA3VJYfci9pRBma61nB9qEthY",
      "pubsub": null,
      "tpuQuic": "51.89.161.227:8003",
      "tpuVote": "51.89.161.227:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.161.227:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.161.227:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.115:8001",
      "gossip": "202.8.11.115:8000",
      "pubkey": "94VJoaviMU5H6jRawrGo2yrrQD7eaFsptLLHoEF7h47U",
      "pubsub": null,
      "tpuQuic": "202.8.11.115:8002",
      "tpuVote": "202.8.11.115:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.115:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.115:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.215.55:8002",
      "gossip": "208.115.215.55:8001",
      "pubkey": "4cfyRxrL53Rz3HpYSEW3qhBVzpxETuURmys2qxfN6DM7",
      "pubsub": null,
      "tpuQuic": "208.115.215.55:8003",
      "tpuVote": "208.115.215.55:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.215.55:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.215.55:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.145:8888",
      "gossip": "198.13.141.49:8000",
      "pubkey": "3v979BAVVEPaYV9UVtQinD9nkUYzRYVzzrN89t8FJSgA",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.189.45.172:8001",
      "gossip": "185.189.45.172:8000",
      "pubkey": "inWVrrYJ38VihdE62LXNQvgV5CeRrdKEXpNtXLyqUWD",
      "pubsub": null,
      "tpuQuic": "185.189.45.172:8002",
      "tpuVote": "185.189.45.172:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.189.45.172:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.189.45.172:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.3:8002",
      "gossip": "54.37.114.161:8001",
      "pubkey": "5viXTUxX2MBgFFaTXvaebKi26CJhwvpZQbNzM4AMZGtz",
      "pubsub": null,
      "tpuQuic": "54.37.114.161:8003",
      "tpuVote": "54.37.114.161:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.37.114.161:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.37.114.161:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.228:8002",
      "gossip": "64.130.43.228:8001",
      "pubkey": "3sABDTknNH4sBnqTKZG3JxQn7stYJnmbJJSTCu1axnwe",
      "pubsub": null,
      "tpuQuic": "64.130.43.228:8003",
      "tpuVote": "64.130.43.228:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.228:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.228:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.109.22:8002",
      "gossip": "208.91.109.22:8001",
      "pubkey": "6gvFzeDG3g45iQqtxQzPha1xv9rUJzNkLHh4ziDBKUVy",
      "pubsub": null,
      "tpuQuic": "208.91.109.22:8003",
      "tpuVote": "208.91.109.22:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.109.22:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.22:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.181:8002",
      "gossip": "64.130.54.181:8001",
      "pubkey": "71wSQgiSvPL6X9b2aUFmTjMFmYDqmb7PpaMuCdLRAq61",
      "pubsub": null,
      "tpuQuic": "64.130.54.181:8003",
      "tpuVote": "64.130.54.181:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.181:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.181:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.133:8002",
      "gossip": "208.115.227.133:8001",
      "pubkey": "6v2MJkhLJxJZ7dtatTSgyK6mDF89Q2KkyKGAKo9m9HLH",
      "pubsub": null,
      "tpuQuic": "208.115.227.133:8003",
      "tpuVote": "208.115.227.133:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.133:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.133:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "163.192.106.188:8001",
      "pubkey": "8H4g6819AAhfqKNDuPMM6iML7uCPLS6LmQA9tHybLn6b",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.168:8000",
      "pubkey": "882BrHb9KstGigymJhdEYmwZ8aBUCuRoMNzGS1UeK6i4",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.195:8001",
      "gossip": "64.130.33.195:8000",
      "pubkey": "2qg7oHG6dUBpGR2Z5vabExHwv1YQ7tbDvhYJ1N23iHxi",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "18.181.209.138:38001",
      "gossip": "18.181.209.138:38000",
      "pubkey": "2cziMRTUQQWy8n6RokvPWAPp6SS5pMcd89kd4ZqMF7Cp",
      "pubsub": null,
      "tpuQuic": "18.181.209.138:38002",
      "tpuVote": "18.181.209.138:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "18.181.209.138:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "18.181.209.138:38003"
    },
    {
      "rpc": "66.206.3.122:7211",
      "tpu": null,
      "tvu": "66.206.3.122:8001",
      "gossip": "66.206.3.122:8000",
      "pubkey": "53vKTuQsLV3YkSzUr2rXRcLn5Gw3yWakJ6Yb1sYNwby",
      "pubsub": "66.206.3.122:7212",
      "tpuQuic": "66.206.3.122:8002",
      "tpuVote": "66.206.3.122:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "66.206.3.122:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "66.206.3.122:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.38:8888",
      "gossip": "198.13.136.198:8000",
      "pubkey": "E7edsPGs5EWM28eN92B1RUoMYsZ32v9Q2UwKjkPCcht3",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "178.237.58.196:8899",
      "tpu": null,
      "tvu": "178.237.58.196:8001",
      "gossip": "178.237.58.196:8000",
      "pubkey": "DjsKCrg2dLEW7zd6XUQUFn7ktrHL7rz8XfZ8wtePiK8j",
      "pubsub": "178.237.58.196:8900",
      "tpuQuic": "178.237.58.196:8002",
      "tpuVote": "178.237.58.196:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "178.237.58.196:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "178.237.58.196:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.154:8888",
      "gossip": "198.13.141.58:8000",
      "pubkey": "9RJA8ZjGQYRY2yMC3dSFMBv3q2twuYNXH2YCcMJtHmi3",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.139:8001",
      "gossip": "64.130.41.139:8000",
      "pubkey": "CaVnkLMwG7hh1a2fHETV3msN1F2TTKdhmECrcAASgbjJ",
      "pubsub": null,
      "tpuQuic": "64.130.41.139:8002",
      "tpuVote": "64.130.41.139:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.139:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.139:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.99:8002",
      "gossip": "51.89.25.99:8001",
      "pubkey": "79wXFwQRBuRJnXqWYDBV11PzZxXwwthwpbBEGAC2bu6j",
      "pubsub": null,
      "tpuQuic": "51.89.25.99:8003",
      "tpuVote": "51.89.25.99:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.99:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.99:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.144.52:8001",
      "gossip": "57.129.144.52:8000",
      "pubkey": "CWF4m2Hz6nPxnMf2mBgNPRWQxyVB8gFbAbLDCvPeEQG1",
      "pubsub": null,
      "tpuQuic": "57.129.144.52:8002",
      "tpuVote": "57.129.144.52:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "57.129.144.52:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.144.52:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "193.118.169.104:8003",
      "gossip": "193.118.169.104:8002",
      "pubkey": "32s38XofF7DyKLKQMXp8cJqWkf4ne7G53xq5kJpqc82y",
      "pubsub": null,
      "tpuQuic": "193.118.169.104:8004",
      "tpuVote": "193.118.169.104:8006",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "193.118.169.104:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "193.118.169.104:8005"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.130:8888",
      "gossip": "198.13.141.34:8000",
      "pubkey": "8ciZLsZm9uEg8eWtECogEi3ENVzrx62WozsFh5RUCjGH",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.136.188:8002",
      "gossip": "198.13.136.188:8001",
      "pubkey": "FLvbigo4WbgSaNi17f3SyzqTFWkFucRbeD4UPEKVkVFg",
      "pubsub": null,
      "tpuQuic": "198.13.136.188:8003",
      "tpuVote": "198.13.136.188:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.136.188:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.136.188:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.190:9001",
      "gossip": "64.130.52.190:9000",
      "pubkey": "8MDaKBUXT5zsfqcTSQXtYf2r6xHqrzuTxAKmebc5xStj",
      "pubsub": null,
      "tpuQuic": "64.130.52.190:9002",
      "tpuVote": "64.130.52.190:9004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.52.190:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.190:9003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.69:8000",
      "pubkey": "4PgH6wLZxrXLQ1LsKcipa9syc2VpEF9ERgafywDhAub1",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.2:8001",
      "gossip": "185.191.117.2:8000",
      "pubkey": "G28aVhiYPzgBRcHWP6tbJsuLaKAcePsuGgPp2kzjvByc",
      "pubsub": null,
      "tpuQuic": "185.191.117.2:8009",
      "tpuVote": "185.191.117.2:8005",
      "version": "3.1.13",
      "clientId": "JitoLabs",
      "featureSet": 534737035,
      "serveRepair": "185.191.117.2:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.2:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.77:8002",
      "gossip": "51.222.146.139:8001",
      "pubkey": "Erc9fyQsmYJ9UUwGrSaGNkbqWWRtjfBB7cTtgkssDv1T",
      "pubsub": null,
      "tpuQuic": "51.222.146.139:8003",
      "tpuVote": "51.222.146.139:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.146.139:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.146.139:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.37:8002",
      "gossip": "5.135.173.87:8001",
      "pubkey": "7YK7UetQxQNwghMH4uZYm38CAsXrnmQgBpuaZravzuY2",
      "pubsub": null,
      "tpuQuic": "5.135.173.87:8003",
      "tpuVote": "5.135.173.87:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.173.87:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.173.87:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.72:8002",
      "gossip": "64.130.58.72:8001",
      "pubkey": "4uWVx6HGESxxeb4NuGYgcEvFU4Nx2NTaPVd4pggKjX32",
      "pubsub": null,
      "tpuQuic": "64.130.58.72:8003",
      "tpuVote": "64.130.58.72:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.58.72:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.72:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.47:8002",
      "gossip": "64.130.33.47:8001",
      "pubkey": "DpEmKkuWNcYUtEYb4Y5jDWJxBujEL52fZ53Y34fD7aJf",
      "pubsub": null,
      "tpuQuic": "64.130.33.47:8003",
      "tpuVote": "64.130.33.47:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.33.47:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.47:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.20:8001",
      "gossip": "45.154.33.20:8000",
      "pubkey": "3DppNSTVScHc7XYEJFBCkpLSzdTX1MsnnttY7zTC8Hzf",
      "pubsub": null,
      "tpuQuic": "45.154.33.20:8002",
      "tpuVote": "45.154.33.20:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "45.154.33.20:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.20:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.113:8002",
      "gossip": "51.222.167.243:8001",
      "pubkey": "2bxf1qHL5k1kw6M8SoYhDJHQeuCMrAT5wCuaZpPecCAe",
      "pubsub": null,
      "tpuQuic": "51.222.167.243:8003",
      "tpuVote": "51.222.167.243:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.167.243:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.167.243:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "185.191.117.66:8000",
      "pubkey": "8yNZ7VhwVox2sQmgxPHa3QfFL2uv8PGNX5k1vMeG8KYH",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "138.2.101.107:8001",
      "pubkey": "EgK8c8H4fvRQuiwDWpV6PUGcV1C9b2x4xzuS6Ze8yTxF",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.127:8002",
      "gossip": "141.95.48.151:8001",
      "pubkey": "7jNCMeFESoLkSeTgHpfRZVgA9cesqRLyPo1WYz6HNcLk",
      "pubsub": null,
      "tpuQuic": "141.95.48.151:8003",
      "tpuVote": "141.95.48.151:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "141.95.48.151:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.95.48.151:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.223.222:8002",
      "gossip": "208.115.223.222:8001",
      "pubkey": "6SXviFu9m4d39T6rHwGMDWiFbBTHhkZWrosQQ7DZG26y",
      "pubsub": null,
      "tpuQuic": "208.115.223.222:8003",
      "tpuVote": "208.115.223.222:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "208.115.223.222:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.223.222:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.217.85:8002",
      "gossip": "141.98.217.85:8001",
      "pubkey": "GW6iLpdyNDx4U6aseDTXF9NkF6ZzhthNHfa2nKhxgvzY",
      "pubsub": null,
      "tpuQuic": "141.98.217.85:8003",
      "tpuVote": "141.98.217.85:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.217.85:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.217.85:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.166:8000",
      "pubkey": "HD9thewQTsAjJLEVuSXuojNHZrSas4YQvbUn7mtjFHei",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.250.253.59:8001",
      "gossip": "45.250.253.59:8000",
      "pubkey": "7LyRSjKm2HAGB74XujhJ5qUbqqf1GwrgAUKQWc7JLgmT",
      "pubsub": null,
      "tpuQuic": "45.250.253.59:8002",
      "tpuVote": "45.250.253.59:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "45.250.253.59:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.250.253.59:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "45.250.253.237:8000",
      "pubkey": "8rdmx22LRPh2cxgAXKzyv6aKmxirrqXqt7S2YhPRJ5oR",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.171:8000",
      "pubkey": "BzyNozcreSSAzdfMB7z19wm8PHV935TLLPUvaUppw9PF",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.105:8000",
      "pubkey": "BKKDeKWdiN99rBtFgA3rHsuDWdYmdJ9XbEPbkfNMGMgS",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.54.153.45:8031",
      "gossip": "86.54.153.45:8030",
      "pubkey": "B39waAGDv2xF2H8adiwpUr43YBAtQwxZJQBcbARkyJfR",
      "pubsub": null,
      "tpuQuic": "86.54.153.45:8032",
      "tpuVote": "86.54.153.45:8034",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "86.54.153.45:8039",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.54.153.45:8033"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.182:8888",
      "gossip": "198.13.136.214:8000",
      "pubkey": "HLPuBtphPA1E8SFAVTPRt1ykVtXYrJP1gfypqn4kEBJ2",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.26.10.23:8021",
      "gossip": "185.26.10.23:8001",
      "pubkey": "HSABHWqmJsPc5DDUEimWAf3SjuaTmUu2JRj15oPzum8v",
      "pubsub": null,
      "tpuQuic": "185.26.10.23:8022",
      "tpuVote": "185.26.10.23:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "185.26.10.23:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.10.23:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "92.5.142.163:8001",
      "pubkey": "2YvC5eSnZwBGr99RNQGDHBvpZk2rD5CvSwsCRbRmU5SP",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "205.209.125.138:8001",
      "gossip": "205.209.125.138:8000",
      "pubkey": "BHin3N7CRHFFPX8X96PrScPgZNc6JCBgD4fYzfGz9VqV",
      "pubsub": null,
      "tpuQuic": "205.209.125.138:8002",
      "tpuVote": "205.209.125.138:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "205.209.125.138:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "205.209.125.138:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.140:8002",
      "gossip": "51.81.26.46:8001",
      "pubkey": "GiP6aTtv5tnbJo2EzrDEgZqNiAtht3pqEGYLNDa4E193",
      "pubsub": null,
      "tpuQuic": "51.81.26.46:8003",
      "tpuVote": "51.81.26.46:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.26.46:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.26.46:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.54:8002",
      "gossip": "54.37.140.70:8001",
      "pubkey": "78epK13Lmvw1WijWFmjpyxCUeWkUiwoJ4yvLNvsaKEr8",
      "pubsub": null,
      "tpuQuic": "54.37.140.70:8003",
      "tpuVote": "54.37.140.70:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.37.140.70:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.37.140.70:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.159:8002",
      "gossip": "51.81.30.137:8001",
      "pubkey": "5BTC1rUGBFMcTeQtf1o9YwTeUByEiauN9H4rdobiryBg",
      "pubsub": null,
      "tpuQuic": "51.81.30.137:8003",
      "tpuVote": "51.81.30.137:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.30.137:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.30.137:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.58:8888",
      "gossip": "198.13.136.235:8000",
      "pubkey": "CTcGD7fzZmveqV2gWxWWLYuLs3g2V4bUQjAYehAZwSGb",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.81:8003",
      "gossip": "45.154.33.81:8002",
      "pubkey": "7fVFFfh2qapL29LrivA8rr5UfY176G7QoZbCRFqgf7Fc",
      "pubsub": null,
      "tpuQuic": "45.154.33.81:8004",
      "tpuVote": "45.154.33.81:8006",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "45.154.33.81:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.81:8005"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.1:8002",
      "gossip": "54.36.192.207:8001",
      "pubkey": "2bqscMehQ8CKvQL4RgfVeGLPVzvhSg9YQdzxjDMyY9zw",
      "pubsub": null,
      "tpuQuic": "54.36.192.207:8003",
      "tpuVote": "54.36.192.207:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.36.192.207:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.36.192.207:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.74:8002",
      "gossip": "51.89.18.34:8001",
      "pubkey": "AtWxrB9xgGhQuMkJaZsoGdVmRLuGdUFHnTSUBHgSGGEh",
      "pubsub": null,
      "tpuQuic": "51.89.18.34:8003",
      "tpuVote": "51.89.18.34:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.18.34:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.18.34:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "122.10.196.122:1601",
      "gossip": "122.10.196.122:1600",
      "pubkey": "HJ12hFHwPuQEN8hgLv2pnvqC3q5NNHrWeuJnB2MdgKVm",
      "pubsub": null,
      "tpuQuic": "122.10.196.122:1602",
      "tpuVote": "122.10.196.122:1604",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "122.10.196.122:1609",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "122.10.196.122:1603"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.62:8000",
      "pubkey": "DQNFC2idScqQxDCjgVcKr6aBHpoEZiteYrJjUGwNX9x7",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.40:8002",
      "gossip": "5.135.192.210:8001",
      "pubkey": "6PCCqC3FZrkEQozeZt3pzxrnVi7pHkKpY7KrH6hS9uF",
      "pubsub": null,
      "tpuQuic": "5.135.192.210:8003",
      "tpuVote": "5.135.192.210:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.192.210:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.192.210:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.162.118.150:8002",
      "gossip": "69.162.118.150:8001",
      "pubkey": "96GKcfXV4PV3bPKnFbkToyHYgcCDBmPUFSCWr4cz5BRb",
      "pubsub": null,
      "tpuQuic": "69.162.118.150:8003",
      "tpuVote": "69.162.118.150:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "69.162.118.150:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.162.118.150:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "34.146.68.47:38001",
      "gossip": "34.146.68.47:38000",
      "pubkey": "HgCPH8uE1d9owr21xjNnkh4vJyPp7U1uijxzhoeJnt1H",
      "pubsub": null,
      "tpuQuic": "34.146.68.47:38002",
      "tpuVote": "34.146.68.47:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "34.146.68.47:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "34.146.68.47:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.236:8002",
      "gossip": "51.81.182.82:8001",
      "pubkey": "CQCNaVUQRVuqQqsVRd9iEcHyCYpjmyQ2iJS6eGNXYCax",
      "pubsub": null,
      "tpuQuic": "51.81.182.82:8003",
      "tpuVote": "51.81.182.82:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.182.82:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.182.82:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.209.177.4:8001",
      "gossip": "185.209.177.4:8000",
      "pubkey": "9JXEcd2Gp9ar6MfBLZbRXQFpkPnNDyPmMtK87DaHrX7p",
      "pubsub": null,
      "tpuQuic": "185.209.177.4:8009",
      "tpuVote": "185.209.177.4:8005",
      "version": "3.1.10",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "185.209.177.4:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.209.177.4:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.67:8002",
      "gossip": "178.32.184.117:8001",
      "pubkey": "5sKCRBKxZG8e81x6f8gGpCAtS5c7EVh71y34jeXuEvJA",
      "pubsub": null,
      "tpuQuic": "178.32.184.117:8003",
      "tpuVote": "178.32.184.117:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "178.32.184.117:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "178.32.184.117:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.42:8002",
      "gossip": "64.130.33.42:8001",
      "pubkey": "6Mjbpsc7HkgfbC7pxSJhrabBjni7i88ezLFaEt15cs42",
      "pubsub": null,
      "tpuQuic": "64.130.33.42:8003",
      "tpuVote": "64.130.33.42:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.33.42:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.42:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "94.158.242.123:50001",
      "gossip": "94.158.242.123:50000",
      "pubkey": "85KYApBi4GVuWNTX2k21LZrEpjAXg79ED1ZRUcpVmYmp",
      "pubsub": null,
      "tpuQuic": "94.158.242.123:50002",
      "tpuVote": "94.158.242.123:50004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "94.158.242.123:50009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "94.158.242.123:50003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.10:8001",
      "gossip": "64.130.40.10:8000",
      "pubkey": "A4uW36ZANHuZ57T5ubixqKWzbhkTp9ZegKMbcQxVuSc3",
      "pubsub": null,
      "tpuQuic": "64.130.40.10:8002",
      "tpuVote": "64.130.40.10:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.10:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.10:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.255.37.94:9001",
      "gossip": "149.255.37.94:9000",
      "pubkey": "DPzK7WugiMQY1QZ3GWMUrCG7prEKxamZuoYNkKDmnFw6",
      "pubsub": null,
      "tpuQuic": "149.255.37.94:9002",
      "tpuVote": "149.255.37.94:9004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "149.255.37.94:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "149.255.37.94:9003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.6:8000",
      "gossip": "64.130.40.6:8001",
      "pubkey": "ELTHh1yMWg9azMsRXZC4st28daLJyRyRs89Wz3hP2mSV",
      "pubsub": null,
      "tpuQuic": "64.130.40.6:8002",
      "tpuVote": "64.130.40.6:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.6:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.6:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.11:8002",
      "gossip": "5.39.106.29:8001",
      "pubkey": "ECJP3R1EWHxNgdvuMwZK5U3JLVN4n3fEbVt1bz9GAXZn",
      "pubsub": null,
      "tpuQuic": "5.39.106.29:8003",
      "tpuVote": "5.39.106.29:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.39.106.29:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.39.106.29:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.58:8000",
      "pubkey": "813KDd7VyVxKgheSGzttDvd93qtd5ERqZGW6JEHVcVBH",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.81.143:8002",
      "gossip": "64.34.81.143:8001",
      "pubkey": "BfHaSd2pfdqn6huTwA71TWKi119SZvr7mGeVHQzWt35L",
      "pubsub": null,
      "tpuQuic": "64.34.81.143:8003",
      "tpuVote": "64.34.81.143:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.34.81.143:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.81.143:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.200:8002",
      "gossip": "51.81.140.24:8001",
      "pubkey": "3C7JmDTWUiqZAZ75bzSya5dKu7FGuqnZc4HUf41MwMQa",
      "pubsub": null,
      "tpuQuic": "51.81.140.24:8003",
      "tpuVote": "51.81.140.24:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.140.24:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.140.24:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "146.19.172.8:8001",
      "gossip": "146.19.172.8:8000",
      "pubkey": "BJ5gWZ5vtabsdVyB49PFCQsGQPihKyYQGbms45Q9LfrG",
      "pubsub": null,
      "tpuQuic": "146.19.172.8:8002",
      "tpuVote": "146.19.172.8:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "146.19.172.8:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.19.172.8:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.175:8002",
      "gossip": "51.77.102.103:8001",
      "pubkey": "HcukKamLSpiFrpPPWxsa1a1XaNWVGEDqYV7r7CA47jc9",
      "pubsub": null,
      "tpuQuic": "51.77.102.103:8003",
      "tpuVote": "51.77.102.103:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.77.102.103:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.77.102.103:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.132:8002",
      "gossip": "64.130.47.132:8001",
      "pubkey": "mcb5kx72XTMbH1QiJCUbs8PcWW4HSCvcZmewhUZV5F9",
      "pubsub": null,
      "tpuQuic": "64.130.47.132:8003",
      "tpuVote": "64.130.47.132:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.47.132:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.132:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "74.118.143.163:8000",
      "pubkey": "72tR3Hhs2PDLZBt3HS2gMGf3o57Vx4vJpEeiUpzJTATN",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.125:8002",
      "gossip": "51.222.171.27:8001",
      "pubkey": "EaW3FfkHTXbaMQz9fXkRqfQu9g9LZcz3kx3mVmvGEf97",
      "pubsub": null,
      "tpuQuic": "51.222.171.27:8003",
      "tpuVote": "51.222.171.27:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.171.27:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.171.27:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.43:8888",
      "gossip": "63.254.162.91:8000",
      "pubkey": "A5jyvGHqy54CsBWsfbAjMF98tYhrwWwH1LRdCsQghBds",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.50.32.113:8002",
      "gossip": "103.50.32.113:8001",
      "pubkey": "AdfKEjjpaRQLF9BWU8vn5NcEJ8mYVfQh68Zxhrco9nb5",
      "pubsub": null,
      "tpuQuic": "103.50.32.113:8003",
      "tpuVote": "103.50.32.113:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "103.50.32.113:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.50.32.113:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.144.245.113:8002",
      "gossip": "216.144.245.113:8001",
      "pubkey": "Fmv3VcMuYCsf6NJFwVSrh3b21XU8Lr1vXe5MyaGLkVTe",
      "pubsub": null,
      "tpuQuic": "216.144.245.113:8003",
      "tpuVote": "216.144.245.113:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.144.245.113:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.144.245.113:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "193.118.169.82:8003",
      "gossip": "193.118.169.82:8002",
      "pubkey": "3o1byyftHupDJuCS9Y3vaxLCqLq6awFmEkmhfgTnghuo",
      "pubsub": null,
      "tpuQuic": "193.118.169.82:8004",
      "tpuVote": "193.118.169.82:8006",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "193.118.169.82:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "193.118.169.82:8005"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.120.29:8002",
      "gossip": "67.213.120.29:8001",
      "pubkey": "Ao8u5jGMLrEkfS2zspNvuUgoNUBoTMdwc2SthZvp4TjK",
      "pubsub": null,
      "tpuQuic": "67.213.120.29:8003",
      "tpuVote": "67.213.120.29:8005",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "67.213.120.29:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.120.29:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.26.10.237:8002",
      "gossip": "185.26.10.237:8001",
      "pubkey": "BEwtf3NZDVztuYZVG2RF1FYQauH7Jm7dPFP92JiYbYD4",
      "pubsub": null,
      "tpuQuic": "185.26.10.237:8003",
      "tpuVote": "185.26.10.237:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.26.10.237:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.10.237:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "79.127.226.29:8002",
      "gossip": "79.127.226.29:8001",
      "pubkey": "JDbyLgRZkuP3RX674bsPjf7ZEn48c7vzj6gLCgSTag9G",
      "pubsub": null,
      "tpuQuic": "79.127.226.29:8003",
      "tpuVote": "79.127.226.29:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "79.127.226.29:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "79.127.226.29:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.168:8000",
      "pubkey": "8tQx6woMSRwmRRYzHf5wwnC2TgZ3ivGGXDoF9DhdSM7N",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.161:8000",
      "gossip": "64.130.61.161:8001",
      "pubkey": "EXDYjV2nX8ZGYtKU2BAKXsfBCte5kEj9378hAZnXWbSV",
      "pubsub": null,
      "tpuQuic": "64.130.61.161:8002",
      "tpuVote": "64.130.61.161:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.61.161:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.161:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.70.9:8001",
      "gossip": "84.32.70.9:8000",
      "pubkey": "71vvn2Q9nF3QnN7SNqFgP18LNByVbAcFniuNvDEuvn9w",
      "pubsub": null,
      "tpuQuic": "84.32.70.9:8002",
      "tpuVote": "84.32.70.9:8004",
      "version": "4.1.0-beta.1",
      "clientId": "JitoLabs",
      "featureSet": 713536442,
      "serveRepair": "84.32.70.9:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.70.9:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.23.170:8002",
      "gossip": "64.31.23.170:8001",
      "pubkey": "5QbbjihdiQYemJidMiTrTtuVTHDbsNQYgtEvUr4MCepu",
      "pubsub": null,
      "tpuQuic": "64.31.23.170:8003",
      "tpuVote": "64.31.23.170:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.23.170:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.23.170:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.242.208:8002",
      "gossip": "204.16.242.208:8001",
      "pubkey": "DFot3YPmwMbsHw9k9dbZAokcXJ3nNxTPXKzpfga4AvgH",
      "pubsub": null,
      "tpuQuic": "204.16.242.208:8003",
      "tpuVote": "204.16.242.208:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.242.208:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.242.208:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.157:8002",
      "gossip": "51.68.192.1:8001",
      "pubkey": "7boUVfp6GqXdtfZw9yRp5MJfLKVbLMePDAzbQkSeGQUz",
      "pubsub": null,
      "tpuQuic": "51.68.192.1:8003",
      "tpuVote": "51.68.192.1:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.192.1:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.192.1:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.109:8001",
      "gossip": "64.130.40.109:8000",
      "pubkey": "7o27aL7tc7o7K6C7Hcphu9GaenwsvhJdEgdvgLaKnZV4",
      "pubsub": null,
      "tpuQuic": "64.130.40.109:8002",
      "tpuVote": "64.130.40.109:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.40.109:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.109:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.199:8888",
      "gossip": "63.254.169.23:8000",
      "pubkey": "7L2UZbcWkEoMwzL87Z4C6BcgcUtrvYGdvoamXcZEET25",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.26.10.189:8001",
      "gossip": "185.26.10.189:8000",
      "pubkey": "E5egTvDEqkyTSnR2a7JSLgbu86jwhkhuomZejiTg6aSV",
      "pubsub": null,
      "tpuQuic": "185.26.10.189:8002",
      "tpuVote": "185.26.10.189:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.26.10.189:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.10.189:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.163:8002",
      "gossip": "51.68.202.159:8001",
      "pubkey": "8skZhvEoWYSMCr3JiTTSuxkiGs7T9WZMQZ2eyKb13afR",
      "pubsub": null,
      "tpuQuic": "51.68.202.159:8003",
      "tpuVote": "51.68.202.159:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.202.159:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.202.159:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.198:8002",
      "gossip": "198.244.135.122:8001",
      "pubkey": "EhTeVbD9wCQpBzXt1VgC8UwVpQdQs3dAxu5UxvcGGidT",
      "pubsub": null,
      "tpuQuic": "198.244.135.122:8003",
      "tpuVote": "198.244.135.122:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "198.244.135.122:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.244.135.122:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.146.160.3:10002",
      "gossip": "45.146.160.3:8001",
      "pubkey": "2KFdzWwD3wiWt8xmM5rMJoWBKqvWcezWfP8XPca4pDPG",
      "pubsub": null,
      "tpuQuic": "45.146.160.3:10003",
      "tpuVote": "45.146.160.3:10005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "45.146.160.3:10010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.146.160.3:10004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.71.8:8001",
      "gossip": "84.32.71.8:8000",
      "pubkey": "5Bpgz3A1RVtZaL9vDgrqbKnnR4S4YwL1gFj4T7V1QCoH",
      "pubsub": null,
      "tpuQuic": "84.32.71.8:8002",
      "tpuVote": "84.32.71.8:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "84.32.71.8:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.71.8:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.53.254:8002",
      "gossip": "64.130.53.254:8001",
      "pubkey": "DGDxoQyRhRXXaxjcPdj1iPMerQo53Det3XpKRnDkFL4Q",
      "pubsub": null,
      "tpuQuic": "64.130.53.254:8003",
      "tpuVote": "64.130.53.254:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.53.254:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.254:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.163.103:8001",
      "gossip": "63.254.163.103:8000",
      "pubkey": "GzoxABsPKr4UkePj5wUwyRboaG74fVoTUabfe1GoskK5",
      "pubsub": null,
      "tpuQuic": "63.254.163.103:8002",
      "tpuVote": "63.254.163.103:8004",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2700650398,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.228:8000",
      "pubkey": "751JT1Y4fcnUiQhQyH8TZyCk51LeTUd2rzbXLnqSuBh",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.7:8002",
      "gossip": "91.121.240.41:8001",
      "pubkey": "FjCPtqk2FP1Lq3aBGs7zLTirDHpSYHkHH47yS9oCe9dP",
      "pubsub": null,
      "tpuQuic": "91.121.240.41:8003",
      "tpuVote": "91.121.240.41:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "91.121.240.41:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.121.240.41:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.71:8002",
      "gossip": "213.32.63.25:8001",
      "pubkey": "8C3yGh7e7KB1EWPf67JNLtaEm85udRK8aRsi3DEfs6W3",
      "pubsub": null,
      "tpuQuic": "213.32.63.25:8003",
      "tpuVote": "213.32.63.25:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "213.32.63.25:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "213.32.63.25:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.129.84.95:8001",
      "gossip": "45.129.84.95:8000",
      "pubkey": "4m9EFCfDGk4uKntwf5Ef2q29ZUDhcnnU2WFbBDmPiixn",
      "pubsub": null,
      "tpuQuic": "45.129.84.95:8002",
      "tpuVote": "45.129.84.95:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.129.84.95:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.129.84.95:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.117:8001",
      "gossip": "64.130.58.117:8000",
      "pubkey": "GscE3EV6v1EwLZzbuvjXpxhRMUKzQJfSP4w11dZuAjqw",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.231.188:8000",
      "pubkey": "3ngMqfZPYT1mHBypFQZTSyCwwKe5DBoe7K2HQDnbJscD",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.176:8888",
      "gossip": "198.13.136.208:8000",
      "pubkey": "D6i9jFBgwHPDAZ9qh5XsNpXQTQg1j2kxVq4Ht95HxhkM",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.197:8888",
      "gossip": "63.254.169.21:8000",
      "pubkey": "DUSrBaLDGFAk1tKutqvngAkNPjoExmxvC4wp7aZqaDnS",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.234:8001",
      "gossip": "64.130.59.234:8000",
      "pubkey": "DA3n68DAKftu4Dr1X1heJHPQTH7okstxDTBEbsmLW78z",
      "pubsub": null,
      "tpuQuic": "64.130.59.234:8002",
      "tpuVote": "64.130.59.234:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.234:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.234:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.53:8000",
      "gossip": "64.130.57.53:8001",
      "pubkey": "DP6a3zsTunPdJgZ7bTLzguqdQZjGPvVvvUaFqw4364U",
      "pubsub": null,
      "tpuQuic": "64.130.57.53:8002",
      "tpuVote": "64.130.57.53:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.57.53:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.53:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.67.150.93:8002",
      "gossip": "69.67.150.93:8001",
      "pubkey": "7XSQTPBp9KEHAybuXrXK9GoEzrLzkp3EirRSWGCLSTVa",
      "pubsub": null,
      "tpuQuic": "69.67.150.93:8003",
      "tpuVote": "69.67.150.93:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "69.67.150.93:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.67.150.93:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.195:8002",
      "gossip": "145.239.203.31:8001",
      "pubkey": "Zt3R7FXeJiVvEmp2qeKT4vq4pCZx96wu9L4udepFq82",
      "pubsub": null,
      "tpuQuic": "145.239.203.31:8003",
      "tpuVote": "145.239.203.31:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "145.239.203.31:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "145.239.203.31:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.132:8001",
      "gossip": "64.130.52.132:8000",
      "pubkey": "64JSrrXXHGUaT8ohLn7AktbkfwmneLxfbFUide3YnWPP",
      "pubsub": null,
      "tpuQuic": "64.130.52.132:8002",
      "tpuVote": "64.130.52.132:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.132:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.132:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.97:8002",
      "gossip": "51.222.162.203:8001",
      "pubkey": "D3rsQwNH8EJTmt3nsumAoTdPXEdsRKU5b9cWpz8rPsqg",
      "pubsub": null,
      "tpuQuic": "51.222.162.203:8003",
      "tpuVote": "51.222.162.203:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.203:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.203:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.32:8888",
      "gossip": "198.13.136.192:8000",
      "pubkey": "8yCxV3cBh4Ggiwi4HoLUNtXapJRUc7VrMsuJW9CVGcCT",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.115.31:8000",
      "gossip": "67.213.115.31:8801",
      "pubkey": "DBRiseHCjXs6ftFC6WWS4JQiHoYkUuFzSHtCRKdijtFm",
      "pubsub": null,
      "tpuQuic": "67.213.115.31:8001",
      "tpuVote": "67.213.115.31:8003",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.213.115.31:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.115.31:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.245:8002",
      "gossip": "51.81.193.147:8001",
      "pubkey": "8p8bgsED57PGJgvitom86WemebyHFW4JbjNerUtzVWN1",
      "pubsub": null,
      "tpuQuic": "51.81.193.147:8003",
      "tpuVote": "51.81.193.147:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.193.147:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.193.147:8004"
    },
    {
      "rpc": "103.167.235.81:8899",
      "tpu": null,
      "tvu": "103.167.235.81:8002",
      "gossip": "103.167.235.81:8001",
      "pubkey": "BMzLQmMjHXiKb3hgcqYkEyVvfWrmREZuSkhXKbDn7CaW",
      "pubsub": "103.167.235.81:8900",
      "tpuQuic": "103.167.235.81:8003",
      "tpuVote": "103.167.235.81:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "103.167.235.81:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.167.235.81:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.124.121:8000",
      "gossip": "85.195.124.121:8051",
      "pubkey": "JAmuWDgJFv1HNndc55PiyLNu9JTxjPvvU3FstgqoNXJh",
      "pubsub": null,
      "tpuQuic": "85.195.124.121:8001",
      "tpuVote": "85.195.124.121:8003",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "85.195.124.121:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.124.121:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.8:8002",
      "gossip": "91.121.240.42:8001",
      "pubkey": "GK9m3wXKTStoNssY4HaiREkfz6btcosV8RxmJSZr4w8H",
      "pubsub": null,
      "tpuQuic": "91.121.240.42:8003",
      "tpuVote": "91.121.240.42:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "91.121.240.42:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.121.240.42:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.0:8002",
      "gossip": "54.36.192.206:8001",
      "pubkey": "E7nyktgh6AfGsavy43JewqX5ESZqkajg1LKq73piQPnt",
      "pubsub": null,
      "tpuQuic": "54.36.192.206:8003",
      "tpuVote": "54.36.192.206:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.36.192.206:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.36.192.206:8004"
    },
    {
      "rpc": "208.91.110.141:8899",
      "tpu": null,
      "tvu": "208.91.110.141:8000",
      "gossip": "208.91.110.141:8001",
      "pubkey": "841mxTUmRDKdN5mes8Kf3VMctk8rcefnD4aBuaPeUNoU",
      "pubsub": "208.91.110.141:8900",
      "tpuQuic": "208.91.110.141:11228",
      "tpuVote": "208.91.110.141:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "208.91.110.141:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.141:11229"
    },
    {
      "rpc": "50.115.47.106:8899",
      "tpu": null,
      "tvu": "50.115.47.106:8001",
      "gossip": "50.115.47.106:8000",
      "pubkey": "9D3o3EYeknhTrRvXS1PnD2euGXnMFa3HwpYBq5gPZJDA",
      "pubsub": "50.115.47.106:8900",
      "tpuQuic": "50.115.47.106:8002",
      "tpuVote": "50.115.47.106:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "50.115.47.106:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "50.115.47.106:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.252:8002",
      "gossip": "51.81.214.70:8001",
      "pubkey": "7MhvZHuDDmVnh5Ez5WjvUWbi3YsMnWwp9csTQk66Xcr1",
      "pubsub": null,
      "tpuQuic": "51.81.214.70:8003",
      "tpuVote": "51.81.214.70:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.214.70:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.214.70:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.140.82:8001",
      "gossip": "198.13.140.82:8000",
      "pubkey": "CLaR4u3exyXeDyqUaweD7u7jKno4PLwXYAzmXWhrV2JV",
      "pubsub": null,
      "tpuQuic": "198.13.140.82:8002",
      "tpuVote": "198.13.140.82:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "198.13.140.82:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.82:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.196.223:18001",
      "gossip": "85.195.196.223:18000",
      "pubkey": "7MGvCrF79nCWekA6adwyvfHNKXxaXC8FqrVBFwbAFHfn",
      "pubsub": null,
      "tpuQuic": "85.195.196.223:18002",
      "tpuVote": "85.195.196.223:18004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "85.195.196.223:18009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.196.223:18003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.251:8002",
      "gossip": "141.98.219.251:8001",
      "pubkey": "BfPvPrPWsGyttP3YLF49oDrVDvvgw74QpExc3X8NZ6s",
      "pubsub": null,
      "tpuQuic": "141.98.219.251:8003",
      "tpuVote": "141.98.219.251:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.219.251:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.251:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.27:10001",
      "gossip": "64.130.50.27:10000",
      "pubkey": "7ZTGBKMVKPQcJkP81UP3icq7d2irWmQ4rci474u9zFH2",
      "pubsub": null,
      "tpuQuic": "64.130.50.27:10002",
      "tpuVote": "64.130.50.27:10004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.27:10009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.27:10003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.29.77:8002",
      "gossip": "64.31.29.77:8001",
      "pubkey": "AxP69NWfShWkrr5to6Q5QEvKwDQjh54PG3xcHNr1HgHf",
      "pubsub": null,
      "tpuQuic": "64.31.29.77:8003",
      "tpuVote": "64.31.29.77:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.29.77:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.29.77:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.43:8002",
      "gossip": "51.83.137.119:8001",
      "pubkey": "HhivJPwxvaWnTtc8qs7GbGCWQssWcdwp5E6FMyrTyCfu",
      "pubsub": null,
      "tpuQuic": "51.83.137.119:8003",
      "tpuVote": "51.83.137.119:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.83.137.119:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.83.137.119:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.17:8002",
      "gossip": "5.135.116.71:8001",
      "pubkey": "Ba8cK1kofbF7p6qHGVqaNjcfZvzavYiwEaepPmbioCCh",
      "pubsub": null,
      "tpuQuic": "5.135.116.71:8003",
      "tpuVote": "5.135.116.71:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.116.71:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.116.71:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "95.20.194.219:9002",
      "gossip": "95.20.194.219:8000",
      "pubkey": "C8ExB2wRz3zRpi2taU6pmTigCHvijn7FRzoPkq9Mya5v",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "144.178.115.201:8001",
      "gossip": "144.178.115.201:8000",
      "pubkey": "T9Q2kbTtvp6mjqhKP4WhUuxpkGVeqiu3Q4L9MEHYuBr",
      "pubsub": null,
      "tpuQuic": "144.178.115.201:8002",
      "tpuVote": "144.178.115.201:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "144.178.115.201:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "144.178.115.201:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.202:8002",
      "gossip": "64.130.59.202:8001",
      "pubkey": "AoBrkYcM4Hs3SxX3YW1ujDTU7cGVvugAwFeUGxQNF2jY",
      "pubsub": null,
      "tpuQuic": "64.130.59.202:8003",
      "tpuVote": "64.130.59.202:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.202:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.202:8004"
    },
    {
      "rpc": "70.40.184.109:8899",
      "tpu": null,
      "tvu": "70.40.184.109:8000",
      "gossip": "70.40.184.109:8901",
      "pubkey": "23zVBxr7A23CLpkewV4btqJiwRvi3ExaAq5XypeeaZqx",
      "pubsub": "70.40.184.109:8900",
      "tpuQuic": "70.40.184.109:8001",
      "tpuVote": "70.40.184.109:8003",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "70.40.184.109:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.184.109:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.181:8002",
      "gossip": "51.195.128.241:8001",
      "pubkey": "AjMhrzNkmHaTB22vMi7pgd5uUWrb2QNApmJfK37oAsQE",
      "pubsub": null,
      "tpuQuic": "51.195.128.241:8003",
      "tpuVote": "51.195.128.241:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.195.128.241:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.195.128.241:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.12:8002",
      "gossip": "64.130.37.12:8001",
      "pubkey": "2zmGHSFe43US1M34kvqap4YoMNJRKRgAdPLcrgf1pdtn",
      "pubsub": null,
      "tpuQuic": "64.130.37.12:8003",
      "tpuVote": "64.130.37.12:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.37.12:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.12:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.143.211:8002",
      "gossip": "74.118.143.211:8001",
      "pubkey": "G2CJ7HSFcztAxtDkMTqPkJSo96ydheffV974JQFY2VQ4",
      "pubsub": null,
      "tpuQuic": "74.118.143.211:8003",
      "tpuVote": "74.118.143.211:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.143.211:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.143.211:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.240:8002",
      "gossip": "51.81.190.2:8001",
      "pubkey": "3fVtsWaYd3oEd1L9QpE9JqKQs1nwabbUvDG5XgV2wdhj",
      "pubsub": null,
      "tpuQuic": "51.81.190.2:8003",
      "tpuVote": "51.81.190.2:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.190.2:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.190.2:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.248:8002",
      "gossip": "5.135.196.159:8001",
      "pubkey": "5xfZqB8LxBYz4RpakFKexProyMFJW98X2kkBjKhG2bgg",
      "pubsub": null,
      "tpuQuic": "5.135.196.159:8003",
      "tpuVote": "5.135.196.159:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.196.159:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.196.159:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.115.193:8001",
      "gossip": "67.213.115.193:8000",
      "pubkey": "BGpD8aNGDRpCSoZJR1xvuJieTcSYYR16pBmvCF6Go1dL",
      "pubsub": null,
      "tpuQuic": "67.213.115.193:8002",
      "tpuVote": "67.213.115.193:8004",
      "version": "4.1.0-alpha.0",
      "clientId": "JitoLabs",
      "featureSet": 2543003515,
      "serveRepair": "67.213.115.193:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.115.193:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.109:8002",
      "gossip": "64.130.51.109:8001",
      "pubkey": "9iB3Xpz6ib7inCqYwCGrAQv2UKzsAZLrd2nKWGTMANoH",
      "pubsub": null,
      "tpuQuic": "64.130.51.109:8003",
      "tpuVote": "64.130.51.109:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.109:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.109:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.180:8888",
      "gossip": "198.13.136.212:8000",
      "pubkey": "ARC6NsSacMNRqY1M9XNYGMgRSPyKr9frvrjHcf71t2NM",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.41:8000",
      "pubkey": "5GNFWdZzxrJt21uyKUnUTzLuXLWzUoURVSRdgeb3AkpH",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.42.231.224:8001",
      "gossip": "89.42.231.224:8000",
      "pubkey": "HugVyttBNA9FPZfnyR6WUgh1xvNVS52kqqbGEYTGE2hv",
      "pubsub": null,
      "tpuQuic": "89.42.231.224:8009",
      "tpuVote": "89.42.231.224:8005",
      "version": "3.0.6",
      "clientId": "JitoLabs",
      "featureSet": 3604001754,
      "serveRepair": "89.42.231.224:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.42.231.224:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.45:8001",
      "gossip": "64.130.52.45:8000",
      "pubkey": "Hg6Tvz3qBsKYJz7A4XtiPBQM4eDp98y25Ku2MeBPPRCq",
      "pubsub": null,
      "tpuQuic": "64.130.52.45:8002",
      "tpuVote": "64.130.52.45:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.45:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.45:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.13:8002",
      "gossip": "51.68.135.61:8001",
      "pubkey": "5Y322rGfQethoJV2Gfg51TESr3kXCpT2JGkngDzHT5RN",
      "pubsub": null,
      "tpuQuic": "51.68.135.61:8003",
      "tpuVote": "51.68.135.61:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.135.61:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.135.61:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "209.189.242.13:18001",
      "gossip": "209.189.242.13:18000",
      "pubkey": "5EvVJsnmcJRoXn395oKyF77ELqWWXEZD35m6Z5tXyqLm",
      "pubsub": null,
      "tpuQuic": "209.189.242.13:18002",
      "tpuVote": "209.189.242.13:18004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "209.189.242.13:18009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "209.189.242.13:18003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.109.165.71:8001",
      "gossip": "109.109.165.71:8000",
      "pubkey": "392RNeQ1Cz361AqFmkt8v1CfXnXgdhaDAS12fyncvQXM",
      "pubsub": null,
      "tpuQuic": "109.109.165.71:8002",
      "tpuVote": "109.109.165.71:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.109.165.71:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.109.165.71:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.222:8002",
      "gossip": "51.81.149.100:8001",
      "pubkey": "9UkSb9wvnstNEUJj9wexfEMdLMkd8jSqBoBrKL8BPWHG",
      "pubsub": null,
      "tpuQuic": "51.81.149.100:8003",
      "tpuVote": "51.81.149.100:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.149.100:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.149.100:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.120.73:8001",
      "gossip": "67.213.120.73:8000",
      "pubkey": "ECNDPr6AZZAZNzJ1ZnEoRvS9FXFy2Hr1F1WHFzTPcWAa",
      "pubsub": null,
      "tpuQuic": "67.213.120.73:8002",
      "tpuVote": "67.213.120.73:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.120.73:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.120.73:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.31:8002",
      "gossip": "5.135.171.185:8001",
      "pubkey": "BBQZcazoQFrjnD19GfLYvLQSUsvGTPvikkqeLcBWiMsg",
      "pubsub": null,
      "tpuQuic": "5.135.171.185:8003",
      "tpuVote": "5.135.171.185:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.171.185:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.171.185:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "82.22.51.8:8001",
      "gossip": "145.239.149.108:8000",
      "pubkey": "A78EUeitXFtgJP55F5vFyXwwUYYP36yQUQQwGFXF5mqv",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.83:8002",
      "gossip": "208.115.227.83:8001",
      "pubkey": "7N2uXtYifRhyeft2QtMSMwpo8wNjBzHPf1EUE6LdeMbU",
      "pubsub": null,
      "tpuQuic": "208.115.227.83:8003",
      "tpuVote": "208.115.227.83:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.83:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.83:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.54.153.250:8003",
      "gossip": "86.54.153.250:8001",
      "pubkey": "8FZJ69XuNN6Y284nC9UoXUGe5Gy9D1huHmzpqpK6e1op",
      "pubsub": null,
      "tpuQuic": "86.54.153.250:8037",
      "tpuVote": "86.54.153.250:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "86.54.153.250:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.54.153.250:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.88.29:8001",
      "gossip": "57.129.88.29:8000",
      "pubkey": "2RzvUw1fZLAy9vmiy51qMt8zmTgRxVxjTXfE4CC6QqCq",
      "pubsub": null,
      "tpuQuic": "57.129.88.29:8002",
      "tpuVote": "57.129.88.29:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "57.129.88.29:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.88.29:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.186:8002",
      "gossip": "54.36.227.238:8001",
      "pubkey": "5BqF6Lz9xa1psrejhrqagzdcsEfm8JhVegew8NeiEtnQ",
      "pubsub": null,
      "tpuQuic": "54.36.227.238:8003",
      "tpuVote": "54.36.227.238:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.36.227.238:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.36.227.238:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.122.245:8001",
      "gossip": "67.213.122.245:8000",
      "pubkey": "EDCzRH7nX2Lx8fapK886UgSyUFYZYJBTvnf9z3jjvSSV",
      "pubsub": null,
      "tpuQuic": "67.213.122.245:8002",
      "tpuVote": "67.213.122.245:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.122.245:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.122.245:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "40.160.16.230:8001",
      "gossip": "40.160.16.230:8000",
      "pubkey": "8KQh9qZBPGkBZcZ5eabuBa64UtNdPmRRjwarvzTM3m4N",
      "pubsub": null,
      "tpuQuic": "40.160.16.230:8002",
      "tpuVote": "40.160.16.230:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "40.160.16.230:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "40.160.16.230:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.185:8000",
      "pubkey": "6qWatiYW5SiH5UNfn4aRjaazUFfjvM8w7EFDhbxm6S3J",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.221:8002",
      "gossip": "15.204.36.195:8001",
      "pubkey": "29extQJtNwixg7cTsXL5ipyqPPzbgbgwPeZP2R51S7Db",
      "pubsub": null,
      "tpuQuic": "15.204.36.195:8003",
      "tpuVote": "15.204.36.195:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "15.204.36.195:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.36.195:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.237:8002",
      "gossip": "51.81.182.83:8001",
      "pubkey": "8V2snL8A3fRw5pKQTZ5eBSLZU4VyxdHMZ3j6D5mdTURf",
      "pubsub": null,
      "tpuQuic": "51.81.182.83:8003",
      "tpuVote": "51.81.182.83:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.182.83:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.182.83:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "43.206.218.236:8001",
      "gossip": "43.206.218.236:8000",
      "pubkey": "27xJRrXXnTe6RpYgpYFVin5vkxqNr9QRPcWfAcoTtZzw",
      "pubsub": null,
      "tpuQuic": "43.206.218.236:8002",
      "tpuVote": "43.206.218.236:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "43.206.218.236:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "43.206.218.236:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.58.215:8002",
      "gossip": "64.31.58.215:8001",
      "pubkey": "F8qR8yEty9ghtZjouLPcRqyA3mTomi25Tn63TGQAFPKE",
      "pubsub": null,
      "tpuQuic": "64.31.58.215:8003",
      "tpuVote": "64.31.58.215:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.58.215:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.58.215:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "146.19.172.19:8001",
      "gossip": "146.19.172.19:8000",
      "pubkey": "7Z6Rt4QsviC5TgULZuicPnhakCSNhnugmEYHXe3punmA",
      "pubsub": null,
      "tpuQuic": "146.19.172.19:8002",
      "tpuVote": "146.19.172.19:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "146.19.172.19:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.19.172.19:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.83.104:8000",
      "pubkey": "51eQV9f654TDR4o7jgFGStyULYsexHBL2ZfCXVbGLNpJ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "43.207.0.202:8000",
      "pubkey": "32bTWkTDJqkUjy61Ktp4tZ64pcmyHdYnJCjSMrmp4j6a",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.141.228:8900",
      "gossip": "104.204.141.228:8001",
      "pubkey": "fdover4vb6YyyHhGBMnoKiNgD7qLceJsh5k4ce3b4FR",
      "pubsub": null,
      "tpuQuic": "104.204.141.228:8901",
      "tpuVote": "104.204.141.228:8903",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "104.204.141.228:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.141.228:8902"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.190:8001",
      "gossip": "64.130.47.190:8000",
      "pubkey": "9gNKGhXmfA2HTEhgWCsZxhjii4napuRUm5A4iE5hJGny",
      "pubsub": null,
      "tpuQuic": "64.130.47.190:8002",
      "tpuVote": "64.130.47.190:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.47.190:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.190:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.14:8002",
      "gossip": "5.135.116.68:8001",
      "pubkey": "HP6AWSr9W5Am4HNaxyBfwSHfkEXehZ4q1evFSLSzeuAm",
      "pubsub": null,
      "tpuQuic": "5.135.116.68:8003",
      "tpuVote": "5.135.116.68:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.116.68:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.116.68:8004"
    },
    {
      "rpc": "77.81.119.154:8600",
      "tpu": null,
      "tvu": "77.81.119.154:8603",
      "gossip": "77.81.119.154:8602",
      "pubkey": "5frLvkwK2xPR6s4GTd5HLypCu6WjFie5EBMAH9qxdD4L",
      "pubsub": "77.81.119.154:8601",
      "tpuQuic": "77.81.119.154:8604",
      "tpuVote": "77.81.119.154:8606",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "77.81.119.154:8611",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "77.81.119.154:8605"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.54.230:8002",
      "gossip": "67.209.54.230:8001",
      "pubkey": "4FBzWrUpHEcRxvXCHyqfT1ZenGf9stRNcffZTuGDMZ81",
      "pubsub": null,
      "tpuQuic": "67.209.54.230:8003",
      "tpuVote": "67.209.54.230:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.209.54.230:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.54.230:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "43.130.236.120:8000",
      "gossip": "43.130.236.120:9000",
      "pubkey": "CiTPW1cphNFw1DSHPG6jMqW2jz3mrfKJ8x1ogS5jotA2",
      "pubsub": null,
      "tpuQuic": "43.130.236.120:8001",
      "tpuVote": "43.130.236.120:8003",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "43.130.236.120:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "43.130.236.120:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.53:8002",
      "gossip": "54.37.140.69:8001",
      "pubkey": "AC1nxmC7hB3KGPE26nfAKKMj2ZqhZ14yuQTcTK9HcNSE",
      "pubsub": null,
      "tpuQuic": "54.37.140.69:8003",
      "tpuVote": "54.37.140.69:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.37.140.69:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.37.140.69:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.49:8888",
      "gossip": "198.13.133.33:8000",
      "pubkey": "HKrhtTAYh5AqUfKFJHmfrTjmbvAwN1amhHX53MBGMDpf",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.70:8000",
      "gossip": "64.130.50.70:8001",
      "pubkey": "DPVTe1NXragAFB3RLdx5JoYjYmjqX15Wq9rYfevG6Lvf",
      "pubsub": null,
      "tpuQuic": "64.130.50.70:8002",
      "tpuVote": "64.130.50.70:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.50.70:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.70:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.212:8000",
      "pubkey": "4kYxZWCNWJ5hY84J82CygPZxryyTYfwHjwYeiFZod2yQ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "79.127.204.84:8002",
      "gossip": "79.127.204.84:8001",
      "pubkey": "8d4JgMjGWNVFBqp7eAfkeFqfvnzgtzmUsUnv5ZBCvKN9",
      "pubsub": null,
      "tpuQuic": "79.127.204.84:8003",
      "tpuVote": "79.127.204.84:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "79.127.204.84:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "79.127.204.84:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.25:8002",
      "gossip": "64.31.54.25:8001",
      "pubkey": "6XNhV6ATrhwbCJuTguYyugeAfhcoG9pV278MJyWTcx6X",
      "pubsub": null,
      "tpuQuic": "64.31.54.25:8003",
      "tpuVote": "64.31.54.25:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.25:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.25:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "80.239.221.207:8001",
      "gossip": "80.239.221.207:8000",
      "pubkey": "sis124i9hwcXkcGWPFRYnrJxUUeZDxko3Xk1k3fD9iP",
      "pubsub": null,
      "tpuQuic": "80.239.221.207:8002",
      "tpuVote": "80.239.221.207:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "80.239.221.207:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "80.239.221.207:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.167:8000",
      "pubkey": "jVw8bBZW2o8jxwHv8p8fNku35RBZjdv1WTAG4WQZkJD",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.223.186:8002",
      "gossip": "208.115.223.186:8001",
      "pubkey": "AubKEpTzcFVxTsSeF2vUqkKLBha5i6dr9fEszvJEnaYE",
      "pubsub": null,
      "tpuQuic": "208.115.223.186:8003",
      "tpuVote": "208.115.223.186:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.223.186:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.223.186:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.171:8000",
      "pubkey": "D97R2ov1Y4kbsSTvjuYTP31nWrr8rx4NJGRDMxFd6x8M",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.247:8000",
      "pubkey": "D6Mgf9tQRTdZqoGWX7we2ngvAZVKSuKhVdXUDDz3JGaT",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.54.239:8002",
      "gossip": "67.209.54.239:8001",
      "pubkey": "CyDZRc4yuHMzYBRTZfRo5xRKf5dxpSDcCpGM5PiUeWzQ",
      "pubsub": null,
      "tpuQuic": "67.209.54.239:8003",
      "tpuVote": "67.209.54.239:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.209.54.239:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.54.239:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.113:8000",
      "pubkey": "GPDCrSk5NmQY9d2GMp3rfFWSSBx89YMfGFRJgux2CbSU",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.107.229:8002",
      "gossip": "208.91.107.229:8001",
      "pubkey": "2NvMBVCXnn85Zh16RjAkfAANyv7rXQrrCqVGNmuWBrsw",
      "pubsub": null,
      "tpuQuic": "208.91.107.229:8010",
      "tpuVote": "208.91.107.229:8006",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "208.91.107.229:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.107.229:8011"
    },
    {
      "rpc": "5.199.172.158:8899",
      "tpu": null,
      "tvu": "5.199.172.158:8001",
      "gossip": "5.199.172.158:8000",
      "pubkey": "HEtMDVxDkF28efHw5cZnbuPKwCuMex7oDkTvPad6PvBt",
      "pubsub": "5.199.172.158:8900",
      "tpuQuic": "5.199.172.158:8002",
      "tpuVote": "5.199.172.158:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "5.199.172.158:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.172.158:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.116:8002",
      "gossip": "202.8.11.116:8001",
      "pubkey": "6qza3JnLKPyVYc91iZnLLfULYpTmNbAqptcDJWtgtGLB",
      "pubsub": null,
      "tpuQuic": "202.8.11.116:8003",
      "tpuVote": "202.8.11.116:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.116:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.116:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.163:8001",
      "gossip": "202.8.11.163:8000",
      "pubkey": "CHTkNQ1FjAe8PeehmoJCn1XE34CCufRr8mTgZknwskD6",
      "pubsub": null,
      "tpuQuic": "202.8.11.163:8002",
      "tpuVote": "202.8.11.163:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "202.8.11.163:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.163:8003"
    },
    {
      "rpc": "147.93.7.220:80",
      "tpu": null,
      "tvu": "147.93.7.220:8002",
      "gossip": "147.93.7.220:8001",
      "pubkey": "CHiLLR2SpJke2ontBwezaQoGamNfTGX2S8JpiMJj4gZ",
      "pubsub": "147.93.7.220:81",
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "147.93.7.220:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.250:8000",
      "pubkey": "86tDk8JjArxGPKma69WRFPoaHHKkjy6r3eQiJUCQwzbg",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.118:8002",
      "gossip": "198.13.130.118:8001",
      "pubkey": "BArp9vqR5o57egNzgJyHox6NbyRqaUgFtoQUYb2nz9RW",
      "pubsub": null,
      "tpuQuic": "198.13.130.118:8003",
      "tpuVote": "198.13.130.118:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.118:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.118:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.6.13.218:8001",
      "gossip": "185.6.13.218:8000",
      "pubkey": "AzQArGKKqcHoSRN1JpzxFqCreA1RyZteq79HsxvryEMm",
      "pubsub": null,
      "tpuQuic": "185.6.13.218:8002",
      "tpuVote": "185.6.13.218:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "185.6.13.218:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.6.13.218:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.100.119:8001",
      "gossip": "85.195.100.119:8000",
      "pubkey": "7Mkgrg1Qzsxx4FieEJ3Bj2ahnWTU7nAWFzS5vwuaMNM",
      "pubsub": null,
      "tpuQuic": "85.195.100.119:8002",
      "tpuVote": "85.195.100.119:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "85.195.100.119:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.100.119:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.229.121:8002",
      "gossip": "74.63.229.121:8001",
      "pubkey": "6zxR9giA34pjiXQFGbKUSYYjxDr2N9bhie64zmRnQD3z",
      "pubsub": null,
      "tpuQuic": "74.63.229.121:8003",
      "tpuVote": "74.63.229.121:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.229.121:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.229.121:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.23.197:8002",
      "gossip": "64.31.23.197:8001",
      "pubkey": "DKKUshrbJQQ3X29RkLAYHikUoGcFw13SoQkjbjBxqWRb",
      "pubsub": null,
      "tpuQuic": "64.31.23.197:8003",
      "tpuVote": "64.31.23.197:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.23.197:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.23.197:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.230:8002",
      "gossip": "5.135.193.193:8001",
      "pubkey": "5XWGAGRTcoaU1Nt9iey8MRHcARd1EYtB1i6NxwWVM4EG",
      "pubsub": null,
      "tpuQuic": "5.135.193.193:8003",
      "tpuVote": "5.135.193.193:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.193.193:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.193.193:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.180:8001",
      "gossip": "64.130.33.180:8000",
      "pubkey": "6qcqqHTuNrYoQ38DfVqFmMgivb5sw3mFKyhVB4rSF1iB",
      "pubsub": null,
      "tpuQuic": "64.130.33.180:8002",
      "tpuVote": "64.130.33.180:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.33.180:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.180:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.198:8002",
      "gossip": "202.8.11.198:8001",
      "pubkey": "AofYbiRqX6dLzLJVYkwVWfzDMiq5a4yGngdCVv7hahfV",
      "pubsub": null,
      "tpuQuic": "202.8.11.198:8003",
      "tpuVote": "202.8.11.198:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.198:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.198:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.110:8001",
      "gossip": "64.130.61.110:8000",
      "pubkey": "AXrLwfKx72bnYjnvhbvSZQuTnEwCpxCUFemRsPNaYZKX",
      "pubsub": null,
      "tpuQuic": "64.130.61.110:8002",
      "tpuVote": "64.130.61.110:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.61.110:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.110:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.9:8888",
      "gossip": "198.13.140.170:8000",
      "pubkey": "43yfBou9cDfxMbWZeL9iUAEUw4EgoPXfnyRMaqYttBtY",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.199:8002",
      "gossip": "198.244.135.123:8001",
      "pubkey": "5MqCpRuYrXWKbj6EQjL1zbtmDT4ec59faM6PpzE4Nb6q",
      "pubsub": null,
      "tpuQuic": "198.244.135.123:8003",
      "tpuVote": "198.244.135.123:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "198.244.135.123:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.244.135.123:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.220:8002",
      "gossip": "15.204.36.194:8001",
      "pubkey": "7FATCBA4JMwsocg8acbonNZ3gybrLG5qQ7nbRdNJhpSp",
      "pubsub": null,
      "tpuQuic": "15.204.36.194:8003",
      "tpuVote": "15.204.36.194:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "15.204.36.194:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.36.194:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.117:8001",
      "gossip": "64.130.57.117:8000",
      "pubkey": "BdgsdZTVALbbvxEHPmQg3zBrxUwsjj7y8ts5owetxVHv",
      "pubsub": null,
      "tpuQuic": "64.130.57.117:8002",
      "tpuVote": "64.130.57.117:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.57.117:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.117:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.137.141:8001",
      "gossip": "198.13.137.141:8000",
      "pubkey": "FrVYjHLCjaeEKJsKVQkrwcMnuH8VZKRFeeYecRzr5vEp",
      "pubsub": null,
      "tpuQuic": "198.13.137.141:8002",
      "tpuVote": "198.13.137.141:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.137.141:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.137.141:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.184.94:8001",
      "gossip": "70.40.184.94:8000",
      "pubkey": "5d32WhEn7Aytskue3FzhdR3MQGURNafVy2LBaATrCqjT",
      "pubsub": null,
      "tpuQuic": "70.40.184.94:8009",
      "tpuVote": "70.40.184.94:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "70.40.184.94:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.184.94:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.252:8001",
      "gossip": "64.130.35.252:8000",
      "pubkey": "777muFnxx5u6VfcWZTRG1j1Uxh4U6KWof5cHe7LeSkhz",
      "pubsub": null,
      "tpuQuic": "64.130.35.252:8002",
      "tpuVote": "64.130.35.252:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.35.252:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.252:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.187.35.214:8002",
      "gossip": "5.187.35.214:8001",
      "pubkey": "BhLHmVwMZAsbPjbSHsKDsxTH9YCsBL3awB5wQbfhCmrD",
      "pubsub": null,
      "tpuQuic": "5.187.35.214:8003",
      "tpuVote": "5.187.35.214:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "5.187.35.214:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.187.35.214:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "92.205.32.83:8001",
      "gossip": "92.205.32.83:8000",
      "pubkey": "E8Y8pbJSemHKVcW8BsJ1EJJLvLCc8GaRMKzQuCFryCSV",
      "pubsub": null,
      "tpuQuic": "92.205.32.83:8002",
      "tpuVote": "92.205.32.83:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "92.205.32.83:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "92.205.32.83:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.13.239.130:8000",
      "gossip": "204.13.239.130:8001",
      "pubkey": "G3in7yLKEAq7cH3fV6hruaifxu3WsVmaGxKG3gT9HKGg",
      "pubsub": null,
      "tpuQuic": "204.13.239.130:8002",
      "tpuVote": "204.13.239.130:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "204.13.239.130:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.13.239.130:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.73:8002",
      "gossip": "64.130.57.73:8001",
      "pubkey": "GJiVFBEPYZo5uZSyFbkNUgupPbiviiKcDYAh9UeWmuYC",
      "pubsub": null,
      "tpuQuic": "64.130.57.73:8003",
      "tpuVote": "64.130.57.73:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.57.73:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.73:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.61.209.67:8001",
      "gossip": "5.61.209.67:8000",
      "pubkey": "HRNR7UvJmBYxm8hvuX5NzzdyTNybCmA1EfbrrWXDqmQ3",
      "pubsub": null,
      "tpuQuic": "5.61.209.67:8002",
      "tpuVote": "5.61.209.67:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "5.61.209.67:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.61.209.67:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.46.85.41:8001",
      "gossip": "72.46.85.41:8000",
      "pubkey": "E4SHtt94SHG4hNUogyWGcsjtqJAeyuCVq8ze9KrwasAt",
      "pubsub": null,
      "tpuQuic": "72.46.85.41:8002",
      "tpuVote": "72.46.85.41:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "72.46.85.41:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.46.85.41:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.31:8002",
      "gossip": "84.32.103.31:8001",
      "pubkey": "DMBH8v86sXbp7tm4ewK8zet6x5BnzHAJnx7A7WK3MX4Q",
      "pubsub": null,
      "tpuQuic": "84.32.103.31:8003",
      "tpuVote": "84.32.103.31:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "84.32.103.31:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.31:8004"
    },
    {
      "rpc": "185.26.10.173:8899",
      "tpu": null,
      "tvu": "185.26.10.173:8001",
      "gossip": "185.26.10.173:8000",
      "pubkey": "A4VwUQEgqSmCrMhBR8arDhCprrdc3QVto1L1hsXmxmcB",
      "pubsub": "185.26.10.173:8900",
      "tpuQuic": "185.26.10.173:8002",
      "tpuVote": "185.26.10.173:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.26.10.173:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.10.173:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.88:8002",
      "gossip": "51.222.162.22:8001",
      "pubkey": "HoFrnVGJSNBvZYdexSnA62BuS72Q5N8Li1JoyXJoyrvt",
      "pubsub": null,
      "tpuQuic": "51.222.162.22:8003",
      "tpuVote": "51.222.162.22:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.22:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.22:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.56:8888",
      "gossip": "198.13.136.233:8000",
      "pubkey": "DQeor8iPNipzm1KFDxA28u9H3fTNzinjnf7H5pkoSncx",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.62:8002",
      "gossip": "176.31.30.20:8001",
      "pubkey": "DDhK7uHdY6BjvPTRfDWEnsatFq7h247TGKGLitbAm2B7",
      "pubsub": null,
      "tpuQuic": "176.31.30.20:8003",
      "tpuVote": "176.31.30.20:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "176.31.30.20:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "176.31.30.20:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.230:8001",
      "gossip": "64.130.42.230:8000",
      "pubkey": "EDJ4srwa9s5B194ffTTehRtHPtL9AMKEWikbRgxzGFSV",
      "pubsub": null,
      "tpuQuic": "64.130.42.230:8003",
      "tpuVote": "64.130.42.230:8005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.42.230:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.230:8004"
    },
    {
      "rpc": "193.243.164.200:8899",
      "tpu": null,
      "tvu": "193.243.164.200:8003",
      "gossip": "193.243.164.200:8001",
      "pubkey": "AwX7mQUr7iuR3CkchgbafPUz6QzEn6ES7TF2dt6Mh2xy",
      "pubsub": "193.243.164.200:8900",
      "tpuQuic": "193.243.164.200:9007",
      "tpuVote": "193.243.164.200:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "193.243.164.200:8107",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "193.243.164.200:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.84.182:8001",
      "gossip": "85.195.84.182:8000",
      "pubkey": "D34Z3gfadXuq7gustNGShjUkysnVSAM6xRV5rNpBZ8Yf",
      "pubsub": null,
      "tpuQuic": "85.195.84.182:8002",
      "tpuVote": "85.195.84.182:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "85.195.84.182:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.84.182:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.58:9002",
      "gossip": "64.130.44.58:9001",
      "pubkey": "FvANp837fFSbTJtUUiRHcefYi7gJpzephk284sNwDgw6",
      "pubsub": null,
      "tpuQuic": "64.130.44.58:9003",
      "tpuVote": "64.130.44.58:9005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.44.58:9010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.58:9004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.222:8888",
      "gossip": "64.130.46.222:8000",
      "pubkey": "2MsH5hsxUbjWwg4xNTt651G8DGEa4g27veuHapQokKQk",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.118:8002",
      "gossip": "51.222.169.196:8001",
      "pubkey": "2tKPaFZE7Xb5GDHz5StYuTkNAUSvpxwxYRHn8V9gS93Z",
      "pubsub": null,
      "tpuQuic": "51.222.169.196:8003",
      "tpuVote": "51.222.169.196:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.169.196:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.169.196:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.83.157:8000",
      "pubkey": "9icx9qSXjqKVAnSaSgggKeaxw9Nro7zLBRza1Uveke5d",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "37.142.120.102:8899",
      "tpu": null,
      "tvu": "37.142.120.102:8106",
      "gossip": "37.142.120.102:8105",
      "pubkey": "G8NsJYJ7nB4c1QU4yv3M95uTQtfEaR1CBoKTD58JSEDa",
      "pubsub": "37.142.120.102:8900",
      "tpuQuic": "37.142.120.102:8107",
      "tpuVote": "37.142.120.102:8109",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "37.142.120.102:8114",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "37.142.120.102:8108"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.173:8000",
      "pubkey": "7nxTYWZb2AJ5SmcugNqZx83Q6L221M9CHbGiqfVCXFWW",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.148.148.125:8002",
      "gossip": "141.148.148.125:8001",
      "pubkey": "A9khyuedwy94ffu6q7iBhKCF2mN1BaHpVMa8dwUCi1AU",
      "pubsub": null,
      "tpuQuic": "141.148.148.125:8010",
      "tpuVote": "141.148.148.125:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "141.148.148.125:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.148.148.125:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.58:8000",
      "gossip": "45.154.33.58:8001",
      "pubkey": "J3MxCi7c3P1HLMuBK2cbbvFJwoBGezeUJbM7RVEuvdoy",
      "pubsub": null,
      "tpuQuic": "45.154.33.58:8002",
      "tpuVote": "45.154.33.58:8004",
      "version": "4.0.0-beta.7",
      "clientId": "JitoLabs",
      "featureSet": 1253319928,
      "serveRepair": "45.154.33.58:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.58:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.80.117:8001",
      "gossip": "64.34.80.117:8000",
      "pubkey": "YUgwtxRyd7n2Q65BPeVN3EkFhiNTzGJot9jegLDXG8s",
      "pubsub": null,
      "tpuQuic": "64.34.80.117:8002",
      "tpuVote": "64.34.80.117:8004",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.34.80.117:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.80.117:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "183.81.168.165:8001",
      "gossip": "183.81.168.165:8000",
      "pubkey": "G7dh7XAmqyP4En53PEue5taAsHcQWEPehsQgKqLS8CLZ",
      "pubsub": null,
      "tpuQuic": "183.81.168.165:8002",
      "tpuVote": "183.81.168.165:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "183.81.168.165:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "183.81.168.165:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.172.153:10201",
      "gossip": "5.199.172.153:10200",
      "pubkey": "8fnTWiE2dYopXV9ATsKAu1ucnAfHDqKi9NmTFWSPn1Va",
      "pubsub": null,
      "tpuQuic": "5.199.172.153:10202",
      "tpuVote": "5.199.172.153:10204",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "5.199.172.153:10209",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.172.153:10203"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.109.25:8002",
      "gossip": "208.91.109.25:8001",
      "pubkey": "5MTp8sAAtDtTjpXKAiTCS5rwVWJXJheo8HZJYWftJLNt",
      "pubsub": null,
      "tpuQuic": "208.91.109.25:8003",
      "tpuVote": "208.91.109.25:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.109.25:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.25:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.54.68:8002",
      "gossip": "57.129.54.68:8001",
      "pubkey": "7jVbXP1hJgGbd82u6kMj2hpeAaozhtK6XyR18gThGJ7n",
      "pubsub": null,
      "tpuQuic": "57.129.54.68:8003",
      "tpuVote": "57.129.54.68:8005",
      "version": "4.1.0-alpha.0",
      "clientId": "JitoLabs",
      "featureSet": 2543003515,
      "serveRepair": "57.129.54.68:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.54.68:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.154:8002",
      "gossip": "51.38.95.154:8001",
      "pubkey": "6HYzUAQUK5tsQ5gE3LMEDVkYyXAjJ4d2wAjdDBKLctUV",
      "pubsub": null,
      "tpuQuic": "51.38.95.154:8003",
      "tpuVote": "51.38.95.154:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.95.154:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.95.154:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.8:8002",
      "gossip": "202.8.11.8:8001",
      "pubkey": "B27QcNfBDCRez4DUvoahTeR9yCuz4vSj6zQaVQeJW6pZ",
      "pubsub": null,
      "tpuQuic": "202.8.11.8:8003",
      "tpuVote": "202.8.11.8:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.8:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.8:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.96.163:8002",
      "gossip": "109.94.96.163:8001",
      "pubkey": "9cXMGLsBjWv6mCTwKkVAVF5JdRHnKr2mvgQS9HPN8syF",
      "pubsub": null,
      "tpuQuic": "109.94.96.163:8003",
      "tpuVote": "109.94.96.163:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.94.96.163:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.96.163:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.132:8002",
      "gossip": "162.19.167.136:8001",
      "pubkey": "7LpNtbFAHbCu81CJbDsvKeaZ5dEGSeEto1zGs8SatSYb",
      "pubsub": null,
      "tpuQuic": "162.19.167.136:8003",
      "tpuVote": "162.19.167.136:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "162.19.167.136:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.167.136:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.152:8002",
      "gossip": "64.130.52.152:8001",
      "pubkey": "4gcmBywKyHb6n5geuGc2Dcg5bTqiUYhmAocCvUgdGyAE",
      "pubsub": null,
      "tpuQuic": "64.130.52.152:8003",
      "tpuVote": "64.130.52.152:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.52.152:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.152:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.67.149.235:8001",
      "gossip": "69.67.149.235:8000",
      "pubkey": "3yg9V73VLxW7Yvxs5nhgiByv7BFephWEGLv51W1KKbau",
      "pubsub": null,
      "tpuQuic": "69.67.149.235:8009",
      "tpuVote": "69.67.149.235:8005",
      "version": "3.1.15",
      "clientId": "Agave",
      "featureSet": 687058115,
      "serveRepair": "69.67.149.235:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.67.149.235:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "146.235.210.251:8001",
      "pubkey": "6bjQi8QD5WfgJHph5W5JfeTAu38aRhSPTFAbEyTM5bsy",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.83.153:8000",
      "pubkey": "DasPsTpVU1FmmMr3TYJ4pHqA2GY6nC8zgQS58z3Hsf8N",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.122:8000",
      "pubkey": "FZzD4XoDWrdeboA5QkeJPbwGLScy6zyjuYETqLCNuosu",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.101:8002",
      "gossip": "64.130.50.101:8001",
      "pubkey": "HZtEi3WpWif2wVKJz9Kp38LHaqde42iLG8HxD1zy9Hkc",
      "pubsub": null,
      "tpuQuic": "64.130.50.101:8003",
      "tpuVote": "64.130.50.101:8005",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.101:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.101:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.162.93.143:8002",
      "gossip": "69.162.93.143:8001",
      "pubkey": "CyxpavCBjZmSsyHcu83kVRZcLi8x2vfPigodN5mat45T",
      "pubsub": null,
      "tpuQuic": "69.162.93.143:8003",
      "tpuVote": "69.162.93.143:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "69.162.93.143:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.162.93.143:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.164:8002",
      "gossip": "51.81.38.18:8001",
      "pubkey": "GgRKE9KSZNw3j9hN9mZTmZQkPVX42NfJ1fLJrvGrFLvH",
      "pubsub": null,
      "tpuQuic": "51.81.38.18:8003",
      "tpuVote": "51.81.38.18:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.38.18:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.38.18:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.158.91.18:8003",
      "gossip": "216.158.91.18:8001",
      "pubkey": "5YU5MejiEiDVsDSV5idCJ6PkBnMbZBqYLeikNGzTqE4d",
      "pubsub": null,
      "tpuQuic": "216.158.91.18:9007",
      "tpuVote": "216.158.91.18:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "216.158.91.18:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.158.91.18:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.109:8000",
      "pubkey": "9AvUZaoxPUSvirgwwFE3xV16XcXL9u6cPSg2J6mWCjLs",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "18.132.52.49:8000",
      "pubkey": "EZXXuz4zndxpzn76Ruupo8j9SPMHgRDQ3nM72vMedaan",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.138:8000",
      "gossip": "64.130.32.138:8001",
      "pubkey": "DX2bcJZcGqhLh5PCZvWWKo8T1rgKhWMTmLuxrGPqvwy7",
      "pubsub": null,
      "tpuQuic": "64.130.32.138:9023",
      "tpuVote": "64.130.32.138:8492",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "64.130.32.138:9027",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.138:9024"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "168.119.139.87:8001",
      "gossip": "168.119.139.87:8000",
      "pubkey": "12nAVtRrmxtvsQDpSYaW5Tp9Tru1Dy1KAARGzidHYJHH",
      "pubsub": null,
      "tpuQuic": "168.119.139.87:8002",
      "tpuVote": "168.119.139.87:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "168.119.139.87:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "168.119.139.87:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "213.195.112.156:8001",
      "gossip": "213.195.112.156:8000",
      "pubkey": "2tA2aP1KmjGCurQD4eHRHdVs54jBcU4VAfni2gWcoqLz",
      "pubsub": null,
      "tpuQuic": "213.195.112.156:8002",
      "tpuVote": "213.195.112.156:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "213.195.112.156:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "213.195.112.156:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "66.135.21.1:8003",
      "gossip": "66.135.21.1:8002",
      "pubkey": "6T9B8HN7EVedawQ5WdPeFA16zBkC7tzweMSUfSgpaQtH",
      "pubsub": null,
      "tpuQuic": "66.135.21.1:8004",
      "tpuVote": "66.135.21.1:8006",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "66.135.21.1:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "66.135.21.1:8005"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.92:8002",
      "gossip": "64.130.57.92:8001",
      "pubkey": "oRCAPW7UDU8fHSup7jvjkzZi97sfjXxbSbrBxEYvxGk",
      "pubsub": null,
      "tpuQuic": "64.130.57.92:8003",
      "tpuVote": "64.130.57.92:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.57.92:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.92:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.240:8000",
      "pubkey": "DVkJmorDVfyftYamNZ2mwCGUVufsp8AbdwHtWdrG3dF6",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.171:8002",
      "gossip": "51.75.164.183:8001",
      "pubkey": "7sUJ5WSWyeNfwooA1rSc5o7RECcSRgsRy3jkpdBqRxpU",
      "pubsub": null,
      "tpuQuic": "51.75.164.183:8003",
      "tpuVote": "51.75.164.183:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.75.164.183:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.75.164.183:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.191:8002",
      "gossip": "15.204.3.166:8001",
      "pubkey": "5qpjJQjMpLpdUaczu8CJidga1eoBeh9d6vzzuQVzDwAN",
      "pubsub": null,
      "tpuQuic": "15.204.3.166:8003",
      "tpuVote": "15.204.3.166:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "15.204.3.166:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.3.166:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.71.21:8000",
      "gossip": "84.32.71.21:8001",
      "pubkey": "9xNHJ1EgBzfBvrvALbLCzD7nhdcprvjPDynQy8oXWfP8",
      "pubsub": null,
      "tpuQuic": "84.32.71.21:8002",
      "tpuVote": "84.32.71.21:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "84.32.71.21:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.71.21:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "193.118.169.229:8003",
      "gossip": "193.118.169.229:8002",
      "pubkey": "E3dzCqvtvaG4MRi767T7xKceZuyWDWiuYr6LrkrQQy3g",
      "pubsub": null,
      "tpuQuic": "193.118.169.229:8004",
      "tpuVote": "193.118.169.229:8006",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "193.118.169.229:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "193.118.169.229:8005"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.218:8002",
      "gossip": "15.204.36.192:8001",
      "pubkey": "9xyRSbRL2gkqrkAJ1MppzE8wJegj5xcmJCneVPh2X8j4",
      "pubsub": null,
      "tpuQuic": "15.204.36.192:8003",
      "tpuVote": "15.204.36.192:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "15.204.36.192:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.36.192:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.168:8888",
      "gossip": "45.250.253.46:8000",
      "pubkey": "D7FXhnxoNeCARQJrLA9L32qfg7DoduMCNNNq3wtBApGF",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.86:8002",
      "gossip": "51.222.162.20:8001",
      "pubkey": "BKWRi34m5UrJGbi9cDTAe2tKpmkoSq84RRTy2qQy61vH",
      "pubsub": null,
      "tpuQuic": "51.222.162.20:8003",
      "tpuVote": "51.222.162.20:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.20:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.20:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.68:8000",
      "pubkey": "5VqoqqnCg4XQr5JF8uT5ESAYGAFT5oYzf3fb1Co6ajBb",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.52.166:8002",
      "gossip": "64.31.52.166:8001",
      "pubkey": "AaJ7HgiBZkLoWjFof8SqX7J8sYV89bTNK8X29bq3RXuF",
      "pubsub": null,
      "tpuQuic": "64.31.52.166:8003",
      "tpuVote": "64.31.52.166:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.52.166:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.52.166:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.231.185:8000",
      "pubkey": "6gge8mfYcakKrNLndLBzW6NchA4CB25nSrvcMHKbQfgM",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.244.211:8002",
      "gossip": "204.16.244.211:8001",
      "pubkey": "FZAMvqfG7jTXcC2qdEBbYywBkwszYVj7BwnuEbwRtSxb",
      "pubsub": null,
      "tpuQuic": "204.16.244.211:8010",
      "tpuVote": "204.16.244.211:8006",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "204.16.244.211:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.244.211:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.154:8000",
      "pubkey": "DNf9XMKnP9mB9o9xGTqP1LAechpNKTqq3TwyrtEgyGQS",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "103.50.32.22:8000",
      "pubkey": "GvwSnU1kf55LsFFmTxiCpZKtSTa4DJ1F5B6ZBDT9aiSD",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.146:8002",
      "gossip": "64.130.51.146:8001",
      "pubkey": "4Mg13p9Tb2rKdc4zaWaoJzZuw6NrzQ8jPnbSCDauEQkm",
      "pubsub": null,
      "tpuQuic": "64.130.51.146:8003",
      "tpuVote": "64.130.51.146:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.146:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.146:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.23:8002",
      "gossip": "5.135.124.17:8001",
      "pubkey": "9TTbxdcEyF1MwkGHUT3RYJMfkDtMQNzF61qGBZnqAdhA",
      "pubsub": null,
      "tpuQuic": "5.135.124.17:8003",
      "tpuVote": "5.135.124.17:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.124.17:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.124.17:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.102:8002",
      "gossip": "51.89.25.154:8001",
      "pubkey": "3FNc5Wr3WmaLwi4fo5f4YumZu4GpaDphyPa4z2zREqf9",
      "pubsub": null,
      "tpuQuic": "51.89.25.154:8003",
      "tpuVote": "51.89.25.154:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.154:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.154:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.203.46:8002",
      "gossip": "208.115.203.46:8001",
      "pubkey": "5EzyYYW3cf9fsphKWXaxW8P3C7VWKaSMNppgtCY1ULkk",
      "pubsub": null,
      "tpuQuic": "208.115.203.46:8003",
      "tpuVote": "208.115.203.46:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.203.46:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.203.46:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.83.142.85:8000",
      "gossip": "5.83.142.85:8001",
      "pubkey": "84KftYdn4HsRTDYskdJNcX3sfMimS8AMwa7jfz6UZhhP",
      "pubsub": null,
      "tpuQuic": "5.83.142.85:8002",
      "tpuVote": "5.83.142.85:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.83.142.85:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.83.142.85:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.23:8003",
      "gossip": "198.13.134.23:8001",
      "pubkey": "7fvyK8asCsphHSE2rMaRtRSwAjFNq984pYk5dfrJCBiw",
      "pubsub": null,
      "tpuQuic": "198.13.134.23:9007",
      "tpuVote": "198.13.134.23:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "198.13.134.23:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.23:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "40.160.24.11:8001",
      "gossip": "40.160.24.11:8000",
      "pubkey": "GTBM4zCuBdZFAEZwtPomuRYLS4T5kUuWv3TLvaN4M8Fr",
      "pubsub": null,
      "tpuQuic": "40.160.24.11:8002",
      "tpuVote": "40.160.24.11:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "40.160.24.11:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "40.160.24.11:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.94.255:8001",
      "gossip": "64.34.94.255:8000",
      "pubkey": "CYvPKdSceUrbiMNVSyuoHFdwRc2V71UQxnLcFmsvLcwR",
      "pubsub": null,
      "tpuQuic": "64.34.94.255:8002",
      "tpuVote": "64.34.94.255:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.34.94.255:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.94.255:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.171:8002",
      "gossip": "51.81.39.157:8001",
      "pubkey": "Dk1eAGC131acm1SGA8zgsjNWrb2e5pdhbBHnej66e5cA",
      "pubsub": null,
      "tpuQuic": "51.81.39.157:8003",
      "tpuVote": "51.81.39.157:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.39.157:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.39.157:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.167:8002",
      "gossip": "51.68.222.127:8001",
      "pubkey": "F6yAMfDKHWaE37xHQprcpf3nUxXLXEuHSkUob8pikKfG",
      "pubsub": null,
      "tpuQuic": "51.68.222.127:8003",
      "tpuVote": "51.68.222.127:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.222.127:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.222.127:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "45.250.253.108:8000",
      "pubkey": "BuDS6jj4twNhSL6BUdYL3F5Qkjw8bB5zncdsFoobYJjs",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.247:8002",
      "gossip": "51.81.207.1:8001",
      "pubkey": "BaQJMiWRY84qpKktsvVUidspC7ogVEazs2b7oo5LYVLK",
      "pubsub": null,
      "tpuQuic": "51.81.207.1:8003",
      "tpuVote": "51.81.207.1:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.207.1:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.207.1:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.197:8002",
      "gossip": "202.8.11.197:8001",
      "pubkey": "75XGun3H4CUo8KXSS3z6Sz2x1d2R2pNW4eibHb756MtM",
      "pubsub": null,
      "tpuQuic": "202.8.11.197:8003",
      "tpuVote": "202.8.11.197:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.197:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.197:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.92:8002",
      "gossip": "51.222.162.50:8001",
      "pubkey": "4wqcrY6T1e8SQ8x5RMmparNagzxFZtsGfYbz4nxHn3Zc",
      "pubsub": null,
      "tpuQuic": "51.222.162.50:8003",
      "tpuVote": "51.222.162.50:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.50:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.50:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.199:8001",
      "gossip": "64.130.32.199:8000",
      "pubkey": "7qQNywwxZBvBcjzd5CV884xkMwfr65ko73BiGqw9fZ4a",
      "pubsub": null,
      "tpuQuic": "64.130.32.199:8002",
      "tpuVote": "64.130.32.199:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.199:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.199:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.55.88.175:8003",
      "gossip": "162.55.88.175:8001",
      "pubkey": "EULzQ7d9stHScH4WieM9U3Y8CgTGEhvrAezUJQeRmiAz",
      "pubsub": null,
      "tpuQuic": "162.55.88.175:9007",
      "tpuVote": "162.55.88.175:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "162.55.88.175:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.55.88.175:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.16:8001",
      "gossip": "185.191.117.16:8000",
      "pubkey": "J3WimCCX8HjKSnuyQKWGDwJEj2NQWF9aYohiegCGnyTt",
      "pubsub": null,
      "tpuQuic": "185.191.117.16:8002",
      "tpuVote": "185.191.117.16:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "185.191.117.16:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.16:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.144.245.233:8002",
      "gossip": "216.144.245.233:8001",
      "pubkey": "4j4L41U15uqHTuXsCB7rsDda71ni466niWJdf3HzjgdH",
      "pubsub": null,
      "tpuQuic": "216.144.245.233:8003",
      "tpuVote": "216.144.245.233:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "216.144.245.233:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.144.245.233:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.38.6:8002",
      "gossip": "64.130.57.134:8001",
      "pubkey": "HWfh55j3jw5WwbhkK9uAMA4PZ8HAEUnW8yJcNjzXfqeZ",
      "pubsub": null,
      "tpuQuic": "64.130.57.134:8002",
      "tpuVote": "64.130.57.134:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.57.134:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.134:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.172:8002",
      "gossip": "51.81.39.158:8001",
      "pubkey": "9Dp9T1Ln2YWjQC2N74cXpdzdfvNPofesK5z3zgmTPCza",
      "pubsub": null,
      "tpuQuic": "51.81.39.158:8003",
      "tpuVote": "51.81.39.158:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.39.158:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.39.158:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.109:8002",
      "gossip": "51.195.26.45:8001",
      "pubkey": "F2gT9aVcRiN81bKBDiobwmmnw4bgDaTqiZymigrcBpuR",
      "pubsub": null,
      "tpuQuic": "51.195.26.45:8003",
      "tpuVote": "51.195.26.45:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.195.26.45:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.195.26.45:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "146.59.69.73:8001",
      "pubkey": "JAFGwwBbKA2yjLF6jEhcYq6Mt68sDP78LF2a2KxzBcN3",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.9",
      "clientId": "Agave",
      "featureSet": 2142755730,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.38:8000",
      "pubkey": "D7w4nPnMNCijTdebVRwqhzKHyNoTbssugwrYkBEUewJc",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.94:8001",
      "gossip": "84.32.103.94:8000",
      "pubkey": "fzwd2XttwF2Ht7Pw43cRR7kVvgNysrbX3WQsrg8NSLV",
      "pubsub": null,
      "tpuQuic": "84.32.103.94:8002",
      "tpuVote": "84.32.103.94:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "84.32.103.94:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.94:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "177.54.155.135:8001",
      "gossip": "177.54.155.135:8000",
      "pubkey": "5XaM2N99y7mzURUW8CNbXuG1iF7KMKCMMEuMomfMLQiE",
      "pubsub": null,
      "tpuQuic": "177.54.155.135:8002",
      "tpuVote": "177.54.155.135:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "177.54.155.135:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "177.54.155.135:8003"
    },
    {
      "rpc": "185.26.11.113:8899",
      "tpu": null,
      "tvu": "185.26.11.113:8001",
      "gossip": "185.26.11.113:8000",
      "pubkey": "BW2h3niFkuvQbuQdvvLhWw9dALoam8Kwrjer7txdCaCk",
      "pubsub": "185.26.11.113:8900",
      "tpuQuic": "185.26.11.113:8002",
      "tpuVote": "185.26.11.113:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.26.11.113:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.11.113:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.61.209.41:8001",
      "gossip": "5.61.209.41:8000",
      "pubkey": "gXrJqGTx9BD5TomyQW48C3u5K5SpCsua873cFR9sbFy",
      "pubsub": null,
      "tpuQuic": "5.61.209.41:8002",
      "tpuVote": "5.61.209.41:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "5.61.209.41:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.61.209.41:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "13.112.93.9:8000",
      "gossip": "13.112.93.9:8020",
      "pubkey": "7ygYBs7cbo7NcaudN3xEPMZ9SUgfPz8sNUrcDYaYyFpT",
      "pubsub": null,
      "tpuQuic": "13.112.93.9:8001",
      "tpuVote": "13.112.93.9:8003",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "13.112.93.9:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "13.112.93.9:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.132.119:30002",
      "gossip": "45.139.132.119:30003",
      "pubkey": "pfHSfP62GkYHbdASfpGcLReZeFXtgERCi77RMJJPCdU",
      "pubsub": null,
      "tpuQuic": "45.139.132.119:9007",
      "tpuVote": "45.139.132.119:9001",
      "version": "0.1004.0-rc.40101",
      "clientId": "Frankendancer",
      "featureSet": 3345198602,
      "serveRepair": "45.139.132.119:30011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.139.132.119:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.141:8002",
      "gossip": "51.38.76.205:8001",
      "pubkey": "FxbZiuDNN5V7dECh2cPDC7KzZFEdbm4S7jsBBmVr77EL",
      "pubsub": null,
      "tpuQuic": "51.38.76.205:8003",
      "tpuVote": "51.38.76.205:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.76.205:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.76.205:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.136.212.10:8001",
      "gossip": "45.136.212.10:8000",
      "pubkey": "HCsu6awvqUYqtHJ7XkCXeMEd4o7WBuFPcTk9ducK2mhN",
      "pubsub": null,
      "tpuQuic": "45.136.212.10:8002",
      "tpuVote": "45.136.212.10:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "45.136.212.10:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.136.212.10:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.243.87:8002",
      "gossip": "204.16.243.87:8001",
      "pubkey": "CKHD2K2Lms5q2Pij9mqfSQb4fNURcc6rLKrmpC8SZWK2",
      "pubsub": null,
      "tpuQuic": "204.16.243.87:8010",
      "tpuVote": "204.16.243.87:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "204.16.243.87:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.243.87:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.230.150:8000",
      "pubkey": "Dhf5eNf1nHbaDAhFC4TMyJeX3hDMoJZ1LNVG8rzq4GEF",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.239:8001",
      "gossip": "64.130.37.239:8000",
      "pubkey": "EC4aPcHssi2XFQiajcXqWRyyND9Vm1Wj7xMaBppdRPx3",
      "pubsub": null,
      "tpuQuic": "64.130.37.239:8002",
      "tpuVote": "64.130.37.239:8004",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.37.239:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.239:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.21:8002",
      "gossip": "64.130.58.21:8001",
      "pubkey": "57n8z3vdo1Mouba9gamd5z3awQCtycqPa9cLZj4djKUj",
      "pubsub": null,
      "tpuQuic": "64.130.58.21:8003",
      "tpuVote": "64.130.58.21:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.58.21:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.21:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.87:8002",
      "gossip": "51.89.25.31:8001",
      "pubkey": "7Y4wjJso9jYvZwNks9jeBer5UKb7N3ZK9vuQqKtdQEhw",
      "pubsub": null,
      "tpuQuic": "51.89.25.31:8003",
      "tpuVote": "51.89.25.31:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.31:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.31:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.176:8002",
      "gossip": "64.130.63.176:8001",
      "pubkey": "CadZ4CWWusDeW3SF4eXdnJYckj53SkKtAQXMGRYgPcxQ",
      "pubsub": null,
      "tpuQuic": "64.130.63.176:8003",
      "tpuVote": "64.130.63.176:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.176:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.176:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.10.30.117:8001",
      "gossip": "216.10.30.117:8000",
      "pubkey": "ApbazWeTKGG4Rq3DCopTP89Br6B3R5qZ69qGuHHxwBhw",
      "pubsub": null,
      "tpuQuic": "216.10.30.117:8002",
      "tpuVote": "216.10.30.117:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.10.30.117:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.10.30.117:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.67.151.123:8001",
      "gossip": "69.67.151.123:8000",
      "pubkey": "5a4xkTE51rhweGvo969uiQAnfqSoopg2UZkE5X7D9HLx",
      "pubsub": null,
      "tpuQuic": "69.67.151.123:8002",
      "tpuVote": "69.67.151.123:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "69.67.151.123:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.67.151.123:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.94.29:8001",
      "gossip": "64.34.94.29:8000",
      "pubkey": "CBDXrujwebjw2icFkSAwut4hr4xeFh5Ckdz6UAL9HzWj",
      "pubsub": null,
      "tpuQuic": "64.34.94.29:8002",
      "tpuVote": "64.34.94.29:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.34.94.29:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.94.29:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "40.160.32.79:8001",
      "gossip": "40.160.32.79:8000",
      "pubkey": "fhcTkyPs6msdPr7ZyBRCkDQ6vhrCqjnSB6CWS8NiX5w",
      "pubsub": null,
      "tpuQuic": "40.160.32.79:8002",
      "tpuVote": "40.160.32.79:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "40.160.32.79:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "40.160.32.79:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.242:8002",
      "gossip": "5.135.194.217:8001",
      "pubkey": "6kwH8sS8jLqT5NVa1iwiU7t9Hq93aawMTqaeJx52fDdr",
      "pubsub": null,
      "tpuQuic": "5.135.194.217:8003",
      "tpuVote": "5.135.194.217:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.194.217:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.194.217:8004"
    },
    {
      "rpc": "87.197.138.58:8899",
      "tpu": null,
      "tvu": "87.197.138.58:8000",
      "gossip": "87.197.138.58:8001",
      "pubkey": "JCzwogPYDRtmSyEkehxKxUWhc1LtLGGKnEgSLMG4jHF2",
      "pubsub": "87.197.138.58:8900",
      "tpuQuic": "87.197.138.58:8002",
      "tpuVote": "87.197.138.58:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "87.197.138.58:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "87.197.138.58:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.220:8002",
      "gossip": "64.130.49.220:8001",
      "pubkey": "HZxFrCK2SayedPN69UiBAs3UqXhcv4p8qQpmw7g82dKB",
      "pubsub": null,
      "tpuQuic": "64.130.49.220:8010",
      "tpuVote": "64.130.49.220:8006",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "64.130.49.220:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.220:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.187:8002",
      "gossip": "15.204.20.166:8001",
      "pubkey": "FsoNWACBwgnP3cG4heYrt521krRJy4Jau12PBxEJY1wX",
      "pubsub": null,
      "tpuQuic": "15.204.20.166:8003",
      "tpuVote": "15.204.20.166:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "15.204.20.166:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.20.166:8004"
    },
    {
      "rpc": "185.191.116.203:8899",
      "tpu": null,
      "tvu": "185.191.116.203:8003",
      "gossip": "185.191.116.203:8001",
      "pubkey": "9napij8kqV2rrdxMGBtkhAUArWVy3JVWXKAAphrtnTh7",
      "pubsub": "185.191.116.203:8900",
      "tpuQuic": "185.191.116.203:9007",
      "tpuVote": "185.191.116.203:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "185.191.116.203:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.116.203:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.16.113:8002",
      "gossip": "64.31.16.113:8001",
      "pubkey": "v3Gq4ZkCoJ3kn7sXE9ykesXaeckkmG19HZrUPoW9Cvv",
      "pubsub": null,
      "tpuQuic": "64.31.16.113:8003",
      "tpuVote": "64.31.16.113:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.16.113:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.16.113:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.80.75:8001",
      "gossip": "64.34.80.75:8000",
      "pubkey": "HE4vUG4B1SzkL7AHcpRqHYVpbnq1tsDhPetyvRPKaFpP",
      "pubsub": null,
      "tpuQuic": "64.34.80.75:8002",
      "tpuVote": "64.34.80.75:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "64.34.80.75:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.80.75:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.254:8002",
      "gossip": "54.36.192.205:8001",
      "pubkey": "8eBPxd8rEDSwUjKz48uReLtdzGcVQ1ziP7L4bqTvMHSB",
      "pubsub": null,
      "tpuQuic": "54.36.192.205:8003",
      "tpuVote": "54.36.192.205:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.36.192.205:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.36.192.205:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "37.114.51.14:8000",
      "gossip": "37.114.51.14:8001",
      "pubkey": "ASHxdR2vMEXKPpszzqCbdREuNFQi4FwKtyptj8ARCTNQ",
      "pubsub": null,
      "tpuQuic": "37.114.51.14:8002",
      "tpuVote": "37.114.51.14:8004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "37.114.51.14:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "37.114.51.14:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.159:8002",
      "gossip": "51.68.192.3:8001",
      "pubkey": "xc8PazuUX81m3vvgj2TAj35srL8f69FFZjjDPYhz8Zr",
      "pubsub": null,
      "tpuQuic": "51.68.192.3:8003",
      "tpuVote": "51.68.192.3:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.192.3:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.192.3:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.237:8000",
      "pubkey": "2igzAH27z7tvkeiiJ1mhxj2G64z6PtaRMF7JL7NzUU1t",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.180:8002",
      "gossip": "51.195.128.240:8001",
      "pubkey": "6u6qoRRi6k1BjT12VADdcELudatttQiTKkV4spC1NMSB",
      "pubsub": null,
      "tpuQuic": "51.195.128.240:8003",
      "tpuVote": "51.195.128.240:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.195.128.240:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.195.128.240:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.140.227:8001",
      "gossip": "198.13.140.227:8000",
      "pubkey": "Fd4F2oPYrDfWjaQ2PBxC8TLzBBo7npNyZRZPUMPm2CG8",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.150:8001",
      "gossip": "64.130.42.150:8000",
      "pubkey": "HTy2MJTLzxSNtto5c5FNYeEZdFScSzykoqjnKqr9Xx35",
      "pubsub": null,
      "tpuQuic": "64.130.42.150:8002",
      "tpuVote": "64.130.42.150:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.42.150:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.150:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.235:8002",
      "gossip": "51.81.182.81:8001",
      "pubkey": "3oN34hhaHmzyoHj4SWV7APab3Eq1yth5ASNiVj4w6w3U",
      "pubsub": null,
      "tpuQuic": "51.81.182.81:8003",
      "tpuVote": "51.81.182.81:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.182.81:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.182.81:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "95.165.150.165:8001",
      "gossip": "95.165.150.165:8000",
      "pubkey": "386vCnE3itaNULpqvVDFejJsL5mfUpWoxMfwYJj8nhtQ",
      "pubsub": null,
      "tpuQuic": "95.165.150.165:8002",
      "tpuVote": "95.165.150.165:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "95.165.150.165:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "95.165.150.165:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "98.142.213.16:8001",
      "gossip": "98.142.213.16:8000",
      "pubkey": "5zDHRR9nGNKtN6nhF8vwT9yTQZC88153vS5LyeApGvkk",
      "pubsub": null,
      "tpuQuic": "98.142.213.16:8009",
      "tpuVote": "98.142.213.16:8005",
      "version": "3.0.6",
      "clientId": "Agave",
      "featureSet": 3604001754,
      "serveRepair": "98.142.213.16:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "98.142.213.16:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.93:8001",
      "gossip": "45.154.33.93:8000",
      "pubkey": "2AG2Vzz8pNN1n65U5iFtnh6RxHGdGvynDh1SwXoMhnsE",
      "pubsub": null,
      "tpuQuic": "45.154.33.93:8002",
      "tpuVote": "45.154.33.93:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.154.33.93:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.93:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.234:8002",
      "gossip": "5.135.193.209:8001",
      "pubkey": "CEMtwyGhnx1VLmPBRZMA66qv6o8EDD19P66YTqP1hxZq",
      "pubsub": null,
      "tpuQuic": "5.135.193.209:8003",
      "tpuVote": "5.135.193.209:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.193.209:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.193.209:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.143:8001",
      "gossip": "84.32.103.143:8000",
      "pubkey": "3La41tvcykKVqC1tEKCeReT66YsjxxtAHtmjQWdQyKXg",
      "pubsub": null,
      "tpuQuic": "84.32.103.143:8002",
      "tpuVote": "84.32.103.143:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "84.32.103.143:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.143:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.23:8002",
      "gossip": "51.68.149.247:8001",
      "pubkey": "CiJcBMkkbRTxizYUUBDMgZz84hXWSx5k69TUPq19L7Pi",
      "pubsub": null,
      "tpuQuic": "51.68.149.247:8003",
      "tpuVote": "51.68.149.247:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.149.247:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.149.247:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "8.216.14.77:38001",
      "gossip": "8.216.14.77:38000",
      "pubkey": "FYqcEFFCz1QSHDN2R4suumXbyXnudCK4WAV1KYdcwnfj",
      "pubsub": null,
      "tpuQuic": "8.216.14.77:38002",
      "tpuVote": "8.216.14.77:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "8.216.14.77:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "8.216.14.77:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.80:8001",
      "gossip": "64.130.49.80:8000",
      "pubkey": "DPvUzueHaApCJ1gppW7nbQDYSL4tFA2WXV5S2hM6mWrR",
      "pubsub": null,
      "tpuQuic": "64.130.49.80:8002",
      "tpuVote": "64.130.49.80:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.49.80:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.80:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.109.49:8001",
      "gossip": "208.91.109.49:8000",
      "pubkey": "FPrfWryvJTkrXHu8JifE6eLL1LTqJ1BSsyBuqQTwzMYK",
      "pubsub": null,
      "tpuQuic": "208.91.109.49:8002",
      "tpuVote": "208.91.109.49:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.109.49:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.49:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.204.109.70:8001",
      "gossip": "15.204.109.70:8000",
      "pubkey": "D1SmErRRZqqHKQe7kenYqdAZd2JtmGURgQQDH6WTgdYF",
      "pubsub": null,
      "tpuQuic": "15.204.109.70:8002",
      "tpuVote": "15.204.109.70:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "15.204.109.70:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.109.70:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.36.4:8001",
      "gossip": "88.216.36.4:8000",
      "pubkey": "C2Lf5gWFMh4hAq1Xuedb6XMNdxT3v34EAnB4GT1Vbx1i",
      "pubsub": null,
      "tpuQuic": "88.216.36.4:8002",
      "tpuVote": "88.216.36.4:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "88.216.36.4:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.36.4:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.56.24:8002",
      "gossip": "64.130.56.24:8001",
      "pubkey": "BnKjydWXxFntoYQ6oM4EXueCt2EKXzfuWByh1dFYpFqZ",
      "pubsub": null,
      "tpuQuic": "64.130.56.24:8003",
      "tpuVote": "64.130.56.24:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.56.24:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.56.24:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "65.19.161.132:8001",
      "gossip": "65.19.161.132:8000",
      "pubkey": "megadBw6UEuQhGP5SYxYp7bDg7Q7Q6mj5mNXeht4Jxc",
      "pubsub": null,
      "tpuQuic": "65.19.161.132:8002",
      "tpuVote": "65.19.161.132:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "65.19.161.132:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "65.19.161.132:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.88:8000",
      "gossip": "84.32.103.88:8001",
      "pubkey": "9Xat3teERZiony2CPMciNmijBNuUSzbpcxVPBGBFYQ4F",
      "pubsub": null,
      "tpuQuic": "84.32.103.88:8009",
      "tpuVote": "84.32.103.88:8005",
      "version": "3.1.13",
      "clientId": "JitoLabs",
      "featureSet": 534737035,
      "serveRepair": "84.32.103.88:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.88:8010"
    },
    {
      "rpc": "103.106.59.17:8899",
      "tpu": null,
      "tvu": "103.106.59.17:8000",
      "gossip": "103.106.59.17:8901",
      "pubkey": "12mZ7YQT1J24tkyF1dr5AEuGEqypdmuL8JzeBsmR1Yct",
      "pubsub": "103.106.59.17:8900",
      "tpuQuic": "103.106.59.17:8001",
      "tpuVote": "103.106.59.17:8003",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.106.59.17:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.106.59.17:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.52.170:8002",
      "gossip": "64.31.52.170:8001",
      "pubkey": "JDLHakuTyypBSG6AVf41pfMeh8KNitHuSWeiw6cMr9HG",
      "pubsub": null,
      "tpuQuic": "64.31.52.170:8003",
      "tpuVote": "64.31.52.170:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.52.170:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.52.170:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.219:8888",
      "gossip": "64.130.46.219:8000",
      "pubkey": "UbtuJeazqCDYU5Nmq7s5CpBpqgepY3uE6ZUtiT6zCmt",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "67.213.124.25:8899",
      "tpu": null,
      "tvu": "67.213.124.25:8001",
      "gossip": "67.213.124.25:8000",
      "pubkey": "Eq6xTeLBm2GaWsABFhqwjic2spaKZvhJuFKCVnFmz9bA",
      "pubsub": "67.213.124.25:8900",
      "tpuQuic": "67.213.124.25:8009",
      "tpuVote": "67.213.124.25:8005",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "67.213.124.25:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.124.25:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.223.253:8002",
      "gossip": "208.115.223.253:8001",
      "pubkey": "DG8suf6HVBRAhRunfqPUXXC8212N13Abff1DcU1tTfZh",
      "pubsub": null,
      "tpuQuic": "208.115.223.253:8003",
      "tpuVote": "208.115.223.253:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.223.253:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.223.253:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.231:8000",
      "pubkey": "BBDeMjPMfHNNCRQKxFj9CjQs54PFANJGvAzGbfGGxecV",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.186:8000",
      "pubkey": "jHKMfwnNm1rrfynXXLjrCocbqRLeKFHUwJdYLJ3LeSY",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "92.205.35.141:8001",
      "gossip": "92.205.35.141:8000",
      "pubkey": "5GxLrLyJDKPiPwaQrXmJZx1yYgV2yCgkbjx9VF713emL",
      "pubsub": null,
      "tpuQuic": "92.205.35.141:8002",
      "tpuVote": "92.205.35.141:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "92.205.35.141:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "92.205.35.141:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.162.93.211:8002",
      "gossip": "69.162.93.211:8001",
      "pubkey": "8iEj3rqXaT4z5QuZPeJRps5LcgUcKD9b7j4oEr1FewTP",
      "pubsub": null,
      "tpuQuic": "69.162.93.211:8003",
      "tpuVote": "69.162.93.211:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "69.162.93.211:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.162.93.211:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.192.50:8001",
      "gossip": "88.216.192.50:8000",
      "pubkey": "H4VjfG1eapaZNeucHAM6HABJpgp2S1JqsFdYLFjbMuHC",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.204:8002",
      "gossip": "51.81.182.205:8001",
      "pubkey": "AiEZng9WQFdJiAQZ9kgwiPsmWn92ofbQVgDA7akfFSAF",
      "pubsub": null,
      "tpuQuic": "51.81.182.205:8003",
      "tpuVote": "51.81.182.205:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.182.205:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.182.205:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.177:8002",
      "gossip": "51.89.161.225:8001",
      "pubkey": "FjGhV5VkbCvwqWtozGQqooTyLpc3vrMJ6ijPtcPB51mr",
      "pubsub": null,
      "tpuQuic": "51.89.161.225:8003",
      "tpuVote": "51.89.161.225:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.161.225:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.161.225:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.68:8002",
      "gossip": "64.130.54.68:8001",
      "pubkey": "DMdqFU9BW2fXcX9FyJ1ViGxqSpBZqh7SHvzzXyyizNmn",
      "pubsub": null,
      "tpuQuic": "64.130.54.68:8003",
      "tpuVote": "64.130.54.68:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.68:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.68:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.107.83:8002",
      "gossip": "208.91.107.83:8001",
      "pubkey": "2pFB3NJrQsJn2oSKUJYMPuaHETukTGVaVt1PmufG6gij",
      "pubsub": null,
      "tpuQuic": "208.91.107.83:8003",
      "tpuVote": "208.91.107.83:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.107.83:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.107.83:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.194:8888",
      "gossip": "63.254.169.18:8000",
      "pubkey": "7EPmM2TiQqMtinSRoB37Ka6Fe5c9KBVMMi9sTU7fjics",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.83.102:8000",
      "pubkey": "H3N9ohyk6UUHx7oaB3nBkqBNDkA3BVs1GHZcEovnemLW",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.205:8000",
      "gossip": "67.213.121.205:8001",
      "pubkey": "2BDN77MSq4jA3TB1HNaYRnR5BkUMXCrQCz2XVTTMj2id",
      "pubsub": null,
      "tpuQuic": "67.213.121.205:8002",
      "tpuVote": "67.213.121.205:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.213.121.205:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.205:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.225.131:8002",
      "gossip": "74.63.225.131:8001",
      "pubkey": "AvRfdGRwBg2wf4u8HUw8dxuSYEmJZCgSG5t7Cx2BfPcP",
      "pubsub": null,
      "tpuQuic": "74.63.225.131:8003",
      "tpuVote": "74.63.225.131:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.225.131:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.225.131:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "88.216.211.163:8000",
      "pubkey": "3m2nnZCGqddZgyALJttbBAMXF8zDcqtkNtPmm8eSvz3U",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.133:8002",
      "gossip": "64.130.50.133:8001",
      "pubkey": "dmygEwMFAC3v3npKsFnWRLanNQqx1RrBxZFnKgrwJNi",
      "pubsub": null,
      "tpuQuic": "64.130.50.133:8003",
      "tpuVote": "64.130.50.133:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.133:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.133:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.126:8002",
      "gossip": "51.222.171.76:8001",
      "pubkey": "GsLH1Q1XqdCfFDVHxp9dqjk8fMCMte4UXsNhVdEQUsWs",
      "pubsub": null,
      "tpuQuic": "51.222.171.76:8003",
      "tpuVote": "51.222.171.76:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.171.76:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.171.76:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.116.39:8002",
      "gossip": "67.213.116.39:8001",
      "pubkey": "9e3j35uMpXBRbgeHyhbfJJPPasHwGLimo6TaDGzGWsXe",
      "pubsub": null,
      "tpuQuic": "67.213.116.39:8003",
      "tpuVote": "67.213.116.39:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.213.116.39:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.116.39:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "206.223.231.192:8000",
      "pubkey": "9fgG6YyLbZHgBBHjH84vj6uekDghHXXSniWktzBMsGcP",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "217.170.201.58:8000",
      "gossip": "217.170.201.58:8001",
      "pubkey": "4NULyCo5tAw6wptZUHt1EAFRjeT39Qyt6cWdn7MqJ6q3",
      "pubsub": null,
      "tpuQuic": "217.170.201.58:8002",
      "tpuVote": "217.170.201.58:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "217.170.201.58:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "217.170.201.58:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.58:8002",
      "gossip": "151.80.89.216:8001",
      "pubkey": "4KNjsbKzp9PiNgbVZgEMmN9zxhR7n1SGA4Rt2ndNXig4",
      "pubsub": null,
      "tpuQuic": "151.80.89.216:8003",
      "tpuVote": "151.80.89.216:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "151.80.89.216:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "151.80.89.216:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.52.133:8002",
      "gossip": "67.209.52.133:8001",
      "pubkey": "dmyQrYKDz9LKLV99MQrJ9BQsFfqQMDV4iYau1mzC4Ue",
      "pubsub": null,
      "tpuQuic": "67.209.52.133:8003",
      "tpuVote": "67.209.52.133:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.209.52.133:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.52.133:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.79:8000",
      "pubkey": "C7ifrv7MeZsWn4FDiqNvMCoizxg4NyNnjYWb2JoJm2mh",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.109.101.7:8001",
      "gossip": "103.109.101.7:8000",
      "pubkey": "BuxNWwsMufzUmqgStSgWEDCoRgkuh5ouUPg8AoqjcTny",
      "pubsub": null,
      "tpuQuic": "103.109.101.7:8002",
      "tpuVote": "103.109.101.7:8004",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "103.109.101.7:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.109.101.7:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.32.88:8001",
      "gossip": "84.32.32.88:8000",
      "pubkey": "8BCVe9AK9nNthu8qwhwbUtq3cHhQmKG1YrLsNeTv8m7z",
      "pubsub": null,
      "tpuQuic": "84.32.32.88:8002",
      "tpuVote": "84.32.32.88:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "84.32.32.88:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.32.88:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.48.170:8002",
      "gossip": "64.31.48.170:8001",
      "pubkey": "FYyxt6sh8qLxEHpyfBzm6xf8yCLLzPHGnBV6NieWichd",
      "pubsub": null,
      "tpuQuic": "64.31.48.170:8003",
      "tpuVote": "64.31.48.170:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.48.170:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.48.170:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.225.11:8002",
      "gossip": "74.63.225.11:8001",
      "pubkey": "2NSjMRzmujeXr7ciFqPR11Z9Co7UYDwsfgojUDT5XCkz",
      "pubsub": null,
      "tpuQuic": "74.63.225.11:8003",
      "tpuVote": "74.63.225.11:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.225.11:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.225.11:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.10.69:8002",
      "gossip": "202.8.10.69:8001",
      "pubkey": "3pzVyvbkcth6z3YrBWAFt9grebyt4bHZAgM4hnGkr8KH",
      "pubsub": null,
      "tpuQuic": "202.8.10.69:8003",
      "tpuVote": "202.8.10.69:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.10.69:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.10.69:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "18.196.156.184:8000",
      "pubkey": "GhZad4GoWc253vU7e6L7rY3LsHTW9ALHNCK6KkWeofBT",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.245:8000",
      "pubkey": "6jFL9B3xFvTSRWJRp61SuMa4ff9FekELYSF54cNKGqdf",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.167.197:8001",
      "gossip": "63.254.167.197:8000",
      "pubkey": "Bq8p2PHkSsFz1J7iSCQnJzKmWGRi67UNay6GPEZySmAb",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.130.57.186:8001",
      "pubkey": "4qpEug1JJ14HEqJNP94zDwLAJuf1o2SdrByYdSr96jq3",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.89:8002",
      "gossip": "64.31.54.89:8001",
      "pubkey": "HtURsUZ76R12cXHdHL8vPVeGsZwoQvBGnZzuEi7cngCm",
      "pubsub": null,
      "tpuQuic": "64.31.54.89:8003",
      "tpuVote": "64.31.54.89:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.89:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.89:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.105.179:9001",
      "gossip": "208.91.105.179:9000",
      "pubkey": "GLotjrx73rEZid5BJKCPv2jzk1QUjUeyG2qxjPcprKy5",
      "pubsub": null,
      "tpuQuic": "208.91.105.179:9002",
      "tpuVote": "208.91.105.179:9004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "208.91.105.179:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.105.179:9003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.105:8002",
      "gossip": "64.130.51.105:8001",
      "pubkey": "5PhkCVNXv8Bo5Vzc5cZ54HvPMqNzaonGYzeF5YL2BzQH",
      "pubsub": null,
      "tpuQuic": "64.130.51.105:8003",
      "tpuVote": "64.130.51.105:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.105:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.105:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.38.12:8002",
      "gossip": "208.91.109.59:8001",
      "pubkey": "5Zdwn51ZYFEdB1XBkZJdQNAzSY4Y3wr3ZnMhR7bxgygh",
      "pubsub": null,
      "tpuQuic": "208.91.109.59:8002",
      "tpuVote": "208.91.109.59:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "208.91.109.59:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.59:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.34.50:8002",
      "gossip": "64.130.34.50:8001",
      "pubkey": "GT8rBBR1fb6afF7nwQ68u2Pmiw7ppn3MEcuMw1esycmA",
      "pubsub": null,
      "tpuQuic": "64.130.34.50:8003",
      "tpuVote": "64.130.34.50:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.34.50:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.34.50:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.130.210.48:8002",
      "gossip": "149.130.210.48:8001",
      "pubkey": "2h2xR4CTitpBjuDzmzU3tBkzjbYmEGopQYQAZLkr58Yk",
      "pubsub": null,
      "tpuQuic": "149.130.210.48:8010",
      "tpuVote": "149.130.210.48:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "149.130.210.48:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "149.130.210.48:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.207:8002",
      "gossip": "64.130.57.207:8001",
      "pubkey": "C9YZW1iJcdqL4JtL4XBvPpZfRfoj8mP3fGSaJ4rK7J3Y",
      "pubsub": null,
      "tpuQuic": "64.130.57.207:8003",
      "tpuVote": "64.130.57.207:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.57.207:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.207:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.89:8002",
      "gossip": "51.89.25.41:8001",
      "pubkey": "7fVcSv1bVwZxVYJj7wRdDFvnj683LxAC9Rdmmb2mmV8S",
      "pubsub": null,
      "tpuQuic": "51.89.25.41:8003",
      "tpuVote": "51.89.25.41:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.41:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.41:8004"
    },
    {
      "rpc": "64.130.61.105:8899",
      "tpu": null,
      "tvu": "64.130.61.105:8001",
      "gossip": "64.130.61.105:8000",
      "pubkey": "CMsGbGAgrgA8CFyQR1hUmsKYzfG13ybUZ8uH2Fb4UxJQ",
      "pubsub": "64.130.61.105:8900",
      "tpuQuic": "64.130.61.105:8002",
      "tpuVote": "64.130.61.105:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.61.105:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.105:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.58.179.138:8001",
      "gossip": "38.58.179.138:8000",
      "pubkey": "ABjsEMXhnx1YyYLtUhpN5x7oda7KJnrsvAbLWoVNACTL",
      "pubsub": null,
      "tpuQuic": "38.58.179.138:8002",
      "tpuVote": "38.58.179.138:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "38.58.179.138:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.58.179.138:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "92.205.32.71:8001",
      "gossip": "92.205.32.71:8000",
      "pubkey": "Cg32P4NmZtGtHjWfkZjDCT7CxgmZERv9x9T4cyjg2Nbd",
      "pubsub": null,
      "tpuQuic": "92.205.32.71:8002",
      "tpuVote": "92.205.32.71:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "92.205.32.71:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "92.205.32.71:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.34.86.226:8000",
      "pubkey": "C74rvpDJg5XZSY8fJeLMAnnMXTP1y6XAVFcn8kdDSn62",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.64.100:8001",
      "gossip": "84.32.64.100:8000",
      "pubkey": "HA3UquydbYNF15tSNTM9yZ9oogBq7RqdVEmjjWuQDYSE",
      "pubsub": null,
      "tpuQuic": "84.32.64.100:8002",
      "tpuVote": "84.32.64.100:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "84.32.64.100:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.64.100:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.145:5556",
      "gossip": "45.152.160.145:5555",
      "pubkey": "EbvGVnGdhLFRtGE8oXogcTURZsg6FeyiheC6U5vwWnyu",
      "pubsub": null,
      "tpuQuic": "45.152.160.145:5557",
      "tpuVote": "45.152.160.145:5559",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.152.160.145:5564",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.145:5558"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.77.107.204:8001",
      "gossip": "45.77.107.204:8000",
      "pubkey": "2rUh8ohrx639FHtm6hHh9K7j94FNpUJqRkqUnUEbJFA7",
      "pubsub": null,
      "tpuQuic": "45.77.107.204:8002",
      "tpuVote": "45.77.107.204:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.77.107.204:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.77.107.204:8003"
    },
    {
      "rpc": "84.32.103.132:8899",
      "tpu": null,
      "tvu": "84.32.103.132:8000",
      "gossip": "84.32.103.132:8001",
      "pubkey": "HVJKtzgTSq9x1rzcReYqjTgCrGvKQ3hMdMBVURRwytcb",
      "pubsub": "84.32.103.132:8900",
      "tpuQuic": "84.32.103.132:11228",
      "tpuVote": "84.32.103.132:8004",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "84.32.103.132:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.132:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.229.232.223:8001",
      "gossip": "46.229.232.223:8000",
      "pubkey": "HoxeD2i1Jaq4uxvQDBCUVMP9XMVM1W6V5fKMWp5eyhy5",
      "pubsub": null,
      "tpuQuic": "46.229.232.223:8002",
      "tpuVote": "46.229.232.223:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "46.229.232.223:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "46.229.232.223:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.32.66:8002",
      "gossip": "64.31.32.66:8001",
      "pubkey": "8NY5uMckpoPo2y2XSnUXQh9GsWgEpg7W4ATaQq1HqRtv",
      "pubsub": null,
      "tpuQuic": "64.31.32.66:8003",
      "tpuVote": "64.31.32.66:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.32.66:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.32.66:8004"
    },
    {
      "rpc": "64.130.61.107:8899",
      "tpu": null,
      "tvu": "64.130.61.107:8001",
      "gossip": "64.130.61.107:8000",
      "pubkey": "8UuBxPzuR4Y7AmwuuHMeZcVN776aTmEbZpKWQutaTvty",
      "pubsub": "64.130.61.107:8900",
      "tpuQuic": "64.130.61.107:8002",
      "tpuVote": "64.130.61.107:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.61.107:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.107:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "195.242.152.142:8001",
      "gossip": "195.242.152.142:8000",
      "pubkey": "P2i4AE66gN6QRoJRYRm9fL8fuHf2BPFj2L4qwYuRSLV",
      "pubsub": null,
      "tpuQuic": "195.242.152.142:8002",
      "tpuVote": "195.242.152.142:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "195.242.152.142:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "195.242.152.142:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "82.197.162.50:8001",
      "gossip": "82.197.162.50:8000",
      "pubkey": "CAr2TgXQkmpj5S1hZs6SuUKB8h77BX1eAmarMdEKfo1",
      "pubsub": null,
      "tpuQuic": "82.197.162.50:8002",
      "tpuVote": "82.197.162.50:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "82.197.162.50:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "82.197.162.50:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "129.146.108.94:8001",
      "pubkey": "D5a6rs3z8pVo3pKUF4FfZuNRMcQLej3prXxrLHCzaqhB",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.171:8021",
      "gossip": "67.213.121.171:8001",
      "pubkey": "51FJEhtWkAtwNeDYySkVaYDcozLN4HpbC65iw6yVxe8p",
      "pubsub": null,
      "tpuQuic": "67.213.121.171:8022",
      "tpuVote": "67.213.121.171:8024",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.213.121.171:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.171:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.162:8000",
      "gossip": "64.130.61.162:8001",
      "pubkey": "58LXnd5kCJPr8NjbAqWFW7zRnkCCCCmC94BcCmZLAEec",
      "pubsub": null,
      "tpuQuic": "64.130.61.162:8002",
      "tpuVote": "64.130.61.162:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.61.162:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.162:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.143.183:8002",
      "gossip": "74.118.143.183:8001",
      "pubkey": "8Rj3pMgoyYhSHKnSEfgrz3M1BhMKxHb1fv7FMheZ3jKa",
      "pubsub": null,
      "tpuQuic": "74.118.143.183:8003",
      "tpuVote": "74.118.143.183:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.143.183:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.143.183:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.80:8001",
      "gossip": "185.191.117.80:8000",
      "pubkey": "6ZK2VNWvEiQa49vucQiSf32zQGzzJZp5Aibm4bvQVLYB",
      "pubsub": null,
      "tpuQuic": "185.191.117.80:8002",
      "tpuVote": "185.191.117.80:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "185.191.117.80:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.80:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "107.155.109.150:8001",
      "gossip": "107.155.109.150:8000",
      "pubkey": "2ntbKEqkzxa112p2wjWa7eaC7H3b4KzQX8iCVmJvwfPz",
      "pubsub": null,
      "tpuQuic": "107.155.109.150:8002",
      "tpuVote": "107.155.109.150:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "107.155.109.150:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "107.155.109.150:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.234.182:8002",
      "gossip": "208.115.234.182:8001",
      "pubkey": "G27W6vuB3tRuLV2Lc9shghfUpmSMTxpDUkTWaTQHnxFw",
      "pubsub": null,
      "tpuQuic": "208.115.234.182:8003",
      "tpuVote": "208.115.234.182:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.234.182:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.234.182:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "52.194.247.8:8001",
      "gossip": "52.194.247.8:8000",
      "pubkey": "zcVRNu9CgH5PhDHU3D8Tfch9HM3UfARprE24AwLoTZN",
      "pubsub": null,
      "tpuQuic": "52.194.247.8:8002",
      "tpuVote": "52.194.247.8:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "52.194.247.8:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "52.194.247.8:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.36.187:8001",
      "gossip": "64.130.36.187:8000",
      "pubkey": "HLRA66BYwCm2KhJduqr83yU3Yv4fEZZoRthPgFpA2C6x",
      "pubsub": null,
      "tpuQuic": "64.130.36.187:8002",
      "tpuVote": "64.130.36.187:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.36.187:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.36.187:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.97.121:8001",
      "gossip": "109.94.97.121:8000",
      "pubkey": "4UjhwWBeH62cidwirLYoArFRKG9Ej8CeGENvKVXp2fjC",
      "pubsub": null,
      "tpuQuic": "109.94.97.121:8002",
      "tpuVote": "109.94.97.121:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.94.97.121:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.97.121:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.52.91:8002",
      "gossip": "67.209.52.91:8001",
      "pubkey": "C4Undt2qqiiP7eYT1AKorJJUZMAHge7VyX4dzjA8q5sm",
      "pubsub": null,
      "tpuQuic": "67.209.52.91:8003",
      "tpuVote": "67.209.52.91:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.209.52.91:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.52.91:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.60:8001",
      "gossip": "198.13.134.60:8000",
      "pubkey": "F3mSRAMjoCwYh1pyL9scUyRsMaozCbih7kkoqCXS9ySD",
      "pubsub": null,
      "tpuQuic": "198.13.134.60:8002",
      "tpuVote": "198.13.134.60:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.60:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.60:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.186:8888",
      "gossip": "198.13.136.218:8000",
      "pubkey": "FEvSz2SH9rf5fRfhCw6VmvPCnVSMsQ9r1vX8gu6iVL84",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.154:8002",
      "gossip": "64.130.32.154:8001",
      "pubkey": "8VR1LN5MPv1RmuyJSRpHAMX4CnDfnSqfhoFJMW7eju8r",
      "pubsub": null,
      "tpuQuic": "64.130.32.154:8003",
      "tpuVote": "64.130.32.154:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.154:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.154:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.116:8002",
      "gossip": "141.98.219.116:8001",
      "pubkey": "9xVbbonwTdxuGVQGKpFwVbZGuZ57VnAqtpyvNpXtJVWt",
      "pubsub": null,
      "tpuQuic": "141.98.219.116:8003",
      "tpuVote": "141.98.219.116:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.219.116:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.116:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.96.111:8001",
      "gossip": "109.94.96.111:8000",
      "pubkey": "EXuohQTmACwUxAGieeUAKcaX4Tv17Yg5MHdr4ArCL2e2",
      "pubsub": null,
      "tpuQuic": "109.94.96.111:8002",
      "tpuVote": "109.94.96.111:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.94.96.111:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.96.111:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "189.1.171.185:8001",
      "gossip": "189.1.171.185:8000",
      "pubkey": "A8CJbRgqXLvajS41rXauNt2uyHpdTeG5gpzARJuosqka",
      "pubsub": null,
      "tpuQuic": "189.1.171.185:8002",
      "tpuVote": "189.1.171.185:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "189.1.171.185:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "189.1.171.185:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.50:8001",
      "gossip": "185.191.117.50:8000",
      "pubkey": "7SdBJks3Z8p8x9hq2jpNiAKnCsswFUPabpo17mRRAoAE",
      "pubsub": null,
      "tpuQuic": "185.191.117.50:8002",
      "tpuVote": "185.191.117.50:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.50:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.50:8003"
    },
    {
      "rpc": "63.254.163.125:8899",
      "tpu": null,
      "tvu": "63.254.163.125:8000",
      "gossip": "63.254.163.125:8901",
      "pubkey": "5zgUpMfgadRrZbBQjDeoZGdcWd8nC7xfvBzjyz1trEX",
      "pubsub": "63.254.163.125:8900",
      "tpuQuic": "63.254.163.125:8001",
      "tpuVote": "63.254.163.125:8003",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "63.254.163.125:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.163.125:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.144.134.251:8001",
      "gossip": "204.144.134.251:8000",
      "pubkey": "BFKfyZUoP7VBxpd8EnYueTzYctPF5wtPHhXmJoZL3dWt",
      "pubsub": null,
      "tpuQuic": "204.144.134.251:8002",
      "tpuVote": "204.144.134.251:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "204.144.134.251:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.144.134.251:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.15.240.13:18503",
      "gossip": "204.15.240.13:18502",
      "pubkey": "AK228iLGLBzCQdhf2zRp4PNRwxz2VAVU6eofiBaqWxaZ",
      "pubsub": null,
      "tpuQuic": "204.15.240.13:18504",
      "tpuVote": "204.15.240.13:18506",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "204.15.240.13:18511",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.15.240.13:18505"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.55.59:8002",
      "gossip": "64.130.55.59:8001",
      "pubkey": "CwugxaTQSen6a9DYZjfor3xpbJsVfRvB34xZL3DakYNN",
      "pubsub": null,
      "tpuQuic": "64.130.55.59:8003",
      "tpuVote": "64.130.55.59:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.55.59:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.55.59:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.19.43.165:8021",
      "gossip": "162.19.43.165:8020",
      "pubkey": "CpkJkkjqSJevZVj44aCYTP4hDoxS7CJCMBYinAhtf2vw",
      "pubsub": null,
      "tpuQuic": "162.19.43.165:8022",
      "tpuVote": "162.19.43.165:8024",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "162.19.43.165:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.43.165:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "209.133.222.102:8001",
      "gossip": "209.133.222.102:8000",
      "pubkey": "CgFxrXHej7ExT4Q4tSX13hQH3x1rUtp2de5jFX8NBLyt",
      "pubsub": null,
      "tpuQuic": "209.133.222.102:8002",
      "tpuVote": "209.133.222.102:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "209.133.222.102:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "209.133.222.102:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.129.84.100:8001",
      "gossip": "45.129.84.100:8000",
      "pubkey": "FX7YhQ9Wgv54nRDwLhSzSm8NR4HieyDEGvPuw3DjbVwD",
      "pubsub": null,
      "tpuQuic": "45.129.84.100:8002",
      "tpuVote": "45.129.84.100:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.129.84.100:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.129.84.100:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "3.79.71.172:8000",
      "gossip": "3.79.71.172:8001",
      "pubkey": "4TGq1EfJDW16L1Yk1myPBVHE3UyKcuDTUpjY87v3w1dR",
      "pubsub": null,
      "tpuQuic": "3.79.71.172:8002",
      "tpuVote": "3.79.71.172:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "3.79.71.172:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "3.79.71.172:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "98.88.100.233:8001",
      "gossip": "98.88.100.233:8000",
      "pubkey": "7MvoUEdid9k1KL2Ape3f5KBY4TesUeEfAyaUxbndMjbL",
      "pubsub": null,
      "tpuQuic": "98.88.100.233:8002",
      "tpuVote": "98.88.100.233:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "98.88.100.233:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "98.88.100.233:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.223.174:8002",
      "gossip": "208.115.223.174:8001",
      "pubkey": "cXjxw4TuDXNQtyMb7WYYnjF4b4kmLXpmGCCCqwqN7mS",
      "pubsub": null,
      "tpuQuic": "208.115.223.174:8003",
      "tpuVote": "208.115.223.174:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.223.174:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.223.174:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.95.45.179:8001",
      "gossip": "141.95.45.179:8000",
      "pubkey": "791bAJ31BxJmU3zVRY2FXmdcsyq6B2JSB2YX2KY72fkb",
      "pubsub": null,
      "tpuQuic": "141.95.45.179:8002",
      "tpuVote": "141.95.45.179:8004",
      "version": "4.0.2",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "141.95.45.179:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.95.45.179:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.61:8001",
      "gossip": "198.13.130.61:8000",
      "pubkey": "4DSZyHAddwYcqJ9FJNhb2GBJWb8LQJ3BCDeDCgp95GrT",
      "pubsub": null,
      "tpuQuic": "198.13.130.61:8002",
      "tpuVote": "198.13.130.61:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.61:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.61:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.55.16:8002",
      "gossip": "64.130.55.16:8001",
      "pubkey": "AE6LkUY2zPAxJjum1PfpM7ctZH1VBbKBgqZ3LvcRGd8P",
      "pubsub": null,
      "tpuQuic": "64.130.55.16:8003",
      "tpuVote": "64.130.55.16:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.55.16:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.55.16:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.8.106.208:8001",
      "gossip": "185.8.106.208:8000",
      "pubkey": "38NRALQDS1dkWHK9RzCZjMSK7156TY4CQApcoRakEBxc",
      "pubsub": null,
      "tpuQuic": "185.8.106.208:8002",
      "tpuVote": "185.8.106.208:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.8.106.208:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.8.106.208:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.26.10.33:8021",
      "gossip": "185.26.10.33:8001",
      "pubkey": "7jQd23Zii8dR9KXkXtaNNXSUAx97QmE9gpmt1ZgEe41k",
      "pubsub": null,
      "tpuQuic": "185.26.10.33:11228",
      "tpuVote": "185.26.10.33:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "185.26.10.33:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.10.33:11229"
    },
    {
      "rpc": "64.130.41.142:8899",
      "tpu": null,
      "tvu": "64.130.41.142:8000",
      "gossip": "64.130.41.142:8001",
      "pubkey": "D76Mkqg8wwFwdT4BytvruE9VySJb5RZjRV3YYZQt8EXs",
      "pubsub": "64.130.41.142:8900",
      "tpuQuic": "64.130.41.142:8002",
      "tpuVote": "64.130.41.142:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.142:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.142:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.132.44:8001",
      "gossip": "198.13.132.44:8000",
      "pubkey": "2xX5k84yNEzbtFvkiCmmg2sh9xUgKmhSierkxAPno2Fr",
      "pubsub": null,
      "tpuQuic": "198.13.132.44:8002",
      "tpuVote": "198.13.132.44:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.132.44:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.132.44:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.52.234:8002",
      "gossip": "67.209.52.234:8001",
      "pubkey": "AZoeXs5PxddMWEepZrPHqcXpTiev9qg9NgqDgm34PLWP",
      "pubsub": null,
      "tpuQuic": "67.209.52.234:8003",
      "tpuVote": "67.209.52.234:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.209.52.234:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.52.234:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.247:8002",
      "gossip": "64.130.52.247:8001",
      "pubkey": "7XPAV7UzpwcNbARKutDoMC9VGU7hsjUE6XHgGhgpY89c",
      "pubsub": null,
      "tpuQuic": "64.130.52.247:8003",
      "tpuVote": "64.130.52.247:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.247:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.247:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.197:8001",
      "gossip": "64.130.63.197:8000",
      "pubkey": "ECbUT8a9DqmgkGhtGhNNH446KNLKGQ26UQgUtqPYBbSV",
      "pubsub": null,
      "tpuQuic": "64.130.63.197:8003",
      "tpuVote": "64.130.63.197:8005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.63.197:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.197:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "167.235.178.106:8001",
      "gossip": "167.235.178.106:8000",
      "pubkey": "2gbjGijEE8AvL83ef2Xc6LyvZkLJvaVggMDhVUgV7HZg",
      "pubsub": null,
      "tpuQuic": "167.235.178.106:8002",
      "tpuVote": "167.235.178.106:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "167.235.178.106:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "167.235.178.106:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.245.175:8002",
      "gossip": "204.16.245.175:8001",
      "pubkey": "5jYomcyuibqzupttmVzqRZjTsTdfu2T8U4sBpH7uRi4f",
      "pubsub": null,
      "tpuQuic": "204.16.245.175:8003",
      "tpuVote": "204.16.245.175:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.245.175:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.245.175:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.130.50.91:7001",
      "pubkey": "7uoymnA14m3WrXbBUcZjMdFQQnvGjCgwF6zUEsJzoFoN",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.159:8888",
      "gossip": "198.13.141.63:8000",
      "pubkey": "Ckcr1k5aanJFg9v2Cvy5QHnjVY6tXCGSrxTrAgCdbPuS",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.137.190:8001",
      "gossip": "198.13.137.190:8000",
      "pubkey": "3E6MR9hpui4dsvwUm38yfK8f9oeKZ8LugcstwZ8MGBSm",
      "pubsub": null,
      "tpuQuic": "198.13.137.190:8002",
      "tpuVote": "198.13.137.190:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.137.190:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.137.190:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.225.13:8002",
      "gossip": "74.63.225.13:8001",
      "pubkey": "Grvhd5DBQBAmazaHTibZirF9AgoR1n2YPKiex3im62tF",
      "pubsub": null,
      "tpuQuic": "74.63.225.13:8003",
      "tpuVote": "74.63.225.13:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.225.13:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.225.13:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.145:8001",
      "gossip": "64.130.47.145:8000",
      "pubkey": "DK9FMbMUa3h99frRJixTdgKw5ExpEG9agPUShF72Cn9K",
      "pubsub": null,
      "tpuQuic": "64.130.47.145:8002",
      "tpuVote": "64.130.47.145:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.47.145:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.145:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.109:8002",
      "gossip": "208.115.227.109:8001",
      "pubkey": "61VE5rqLjACLRzWDrBgTRTBdJoadu8VDrvGP69jj3Szk",
      "pubsub": null,
      "tpuQuic": "208.115.227.109:8003",
      "tpuVote": "208.115.227.109:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.109:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.109:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.216:8002",
      "gossip": "198.13.130.216:8001",
      "pubkey": "2Br3MzDSaEKgpRKZH15tqSqfQxtLZ3LKF6pLkdTLZw5B",
      "pubsub": null,
      "tpuQuic": "198.13.130.216:8003",
      "tpuVote": "198.13.130.216:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.216:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.216:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "192.41.71.184:8001",
      "gossip": "192.41.71.184:8000",
      "pubkey": "7A8rsJVpArfy6rips3DCeBqHdBLgvf1tjTbyUDV8R5Kx",
      "pubsub": null,
      "tpuQuic": "192.41.71.184:8002",
      "tpuVote": "192.41.71.184:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "192.41.71.184:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "192.41.71.184:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.122:8002",
      "gossip": "135.125.166.238:8001",
      "pubkey": "8Rg2yNj8N24p5zpiH7sTBGwK5yJJ6ZvnHFUY4s51EnPu",
      "pubsub": null,
      "tpuQuic": "135.125.166.238:8003",
      "tpuVote": "135.125.166.238:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "135.125.166.238:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "135.125.166.238:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.165.9:8001",
      "gossip": "5.199.165.9:8000",
      "pubkey": "XszysViEXjT6H9x9RZ2Yz4sayDHGriBw9zVR5s6LkxC",
      "pubsub": null,
      "tpuQuic": "5.199.165.9:8002",
      "tpuVote": "5.199.165.9:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.199.165.9:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.165.9:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.54:8002",
      "gossip": "64.130.51.54:8001",
      "pubkey": "J3h692Mr1yPj4pkR8xKaRxQbdRpn5pbngcXrhQ4ABvdQ",
      "pubsub": null,
      "tpuQuic": "64.130.51.54:8003",
      "tpuVote": "64.130.51.54:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.54:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.54:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.116.176:8002",
      "gossip": "185.191.116.176:8001",
      "pubkey": "J5xHNZiy75B6qE45V6NVGJaG7DFJjcWEkkivXu1FToyw",
      "pubsub": null,
      "tpuQuic": "185.191.116.176:8003",
      "tpuVote": "185.191.116.176:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "185.191.116.176:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.116.176:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.223.218:8002",
      "gossip": "208.115.223.218:8001",
      "pubkey": "56PeJw5fyyHVkZnoMXsAK1mSTwYSv96szFJHi9QoNS9a",
      "pubsub": null,
      "tpuQuic": "208.115.223.218:8003",
      "tpuVote": "208.115.223.218:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.223.218:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.223.218:8004"
    },
    {
      "rpc": "206.223.238.45:21611",
      "tpu": null,
      "tvu": "206.223.238.45:11601",
      "gossip": "206.223.238.45:21610",
      "pubkey": "6DqiGazVguKs5Vmcw2JsAhQpPtaNPEX3ZAUiZGaNDkcM",
      "pubsub": "206.223.238.45:21612",
      "tpuQuic": "206.223.238.45:11602",
      "tpuVote": "206.223.238.45:11604",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "206.223.238.45:11609",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "206.223.238.45:11603"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.64.1:8001",
      "gossip": "57.129.64.1:8000",
      "pubkey": "4NJeN8VJbHaXuj3V1yUQFXSUE7a7FUs7vRm8rzwXmpcT",
      "pubsub": null,
      "tpuQuic": "57.129.64.1:8002",
      "tpuVote": "57.129.64.1:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "57.129.64.1:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.64.1:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.97.39:8000",
      "gossip": "109.94.97.39:8801",
      "pubkey": "KohuJeh16P494Q89wVPvnxhqwJF8eB6ByDkCsjGNVH2",
      "pubsub": null,
      "tpuQuic": "109.94.97.39:8001",
      "tpuVote": "109.94.97.39:8003",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "109.94.97.39:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.97.39:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.219.168.131:8002",
      "gossip": "103.219.168.131:8001",
      "pubkey": "Fkc2ncJaREqobGKUADrmA4G2dz93j4L2VcyuUKni3xjC",
      "pubsub": null,
      "tpuQuic": "103.219.168.131:8003",
      "tpuVote": "103.219.168.131:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "103.219.168.131:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.219.168.131:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.30:8002",
      "gossip": "198.13.134.30:8001",
      "pubkey": "3k2R74RSnTmdVrtYCPSMoBwhDeNLqGHVogfwAym87Vbd",
      "pubsub": null,
      "tpuQuic": "198.13.134.30:8003",
      "tpuVote": "198.13.134.30:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.30:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.30:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.48.178:8002",
      "gossip": "64.31.48.178:8001",
      "pubkey": "5zE5PHXyuapzxnRkQtKsR8Hsag2tu52TvxuivHKTjMMu",
      "pubsub": null,
      "tpuQuic": "64.31.48.178:8003",
      "tpuVote": "64.31.48.178:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.48.178:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.48.178:8004"
    },
    {
      "rpc": "185.26.11.105:8899",
      "tpu": null,
      "tvu": "185.26.11.105:8001",
      "gossip": "185.26.11.105:8000",
      "pubkey": "5pxtQGa1v7A1MeitLP3GSSMLBBdoGSgLrC8PG9Fd5V37",
      "pubsub": "185.26.11.105:8900",
      "tpuQuic": "185.26.11.105:8002",
      "tpuVote": "185.26.11.105:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.26.11.105:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.11.105:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.88:8001",
      "gossip": "45.154.33.88:8000",
      "pubkey": "5qTJQYaHVreC4iN5FrhnMNtHRtfbDLWre62cfXuTdbWS",
      "pubsub": null,
      "tpuQuic": "45.154.33.88:8002",
      "tpuVote": "45.154.33.88:8004",
      "version": "4.1.0-alpha.0",
      "clientId": "JitoLabs",
      "featureSet": 2543003515,
      "serveRepair": "45.154.33.88:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.88:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.130.57.201:8001",
      "pubkey": "azxnmRJQiMu9qGASW9HHwTsmxVgigcYn9P16hXPCLVn",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.245.206.246:8002",
      "gossip": "216.245.206.246:8001",
      "pubkey": "3NJhtWedZLAzvYR6SQRDD3xi4REMwuPE1uDdFkk86FjA",
      "pubsub": null,
      "tpuQuic": "216.245.206.246:8003",
      "tpuVote": "216.245.206.246:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.245.206.246:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.245.206.246:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.177:8002",
      "gossip": "202.8.11.177:8001",
      "pubkey": "FC72w2vxzruLwXojV1qoKGJ3hm3uK1tA1Cvc9KGnQ9Qf",
      "pubsub": null,
      "tpuQuic": "202.8.11.177:8003",
      "tpuVote": "202.8.11.177:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.177:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.177:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.50.32.61:8002",
      "gossip": "103.50.32.61:8001",
      "pubkey": "8Gkh55dhpJM9pzowZS7XAVPW2dPzrBbrCsATh4aUBXoC",
      "pubsub": null,
      "tpuQuic": "103.50.32.61:8003",
      "tpuVote": "103.50.32.61:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "103.50.32.61:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.50.32.61:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.48:8888",
      "gossip": "198.13.133.32:8000",
      "pubkey": "DgCyAH2v5egHYQakSKWDqmt92ZopNBFwqpXvYGveVCGK",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.62.39:8031",
      "gossip": "64.130.62.39:8030",
      "pubkey": "GnXxNq1cCnrYos7MBjkuaZo2XM8qihWmRkNb81xTrQLj",
      "pubsub": null,
      "tpuQuic": "64.130.62.39:8032",
      "tpuVote": "64.130.62.39:8034",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.62.39:8039",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.62.39:8033"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.231.6:8000",
      "gossip": "208.115.231.6:8801",
      "pubkey": "9G3NaKGMevU4frHoKmrJm3yW8qRMP4sy3KjUPKppGWcD",
      "pubsub": null,
      "tpuQuic": "208.115.231.6:8001",
      "tpuVote": "208.115.231.6:8003",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "208.115.231.6:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.231.6:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.49:8002",
      "gossip": "5.135.243.151:8001",
      "pubkey": "RJo3TyXKgHfJeeqbN2YUK5YCLX8TXg8c8RYF9yKKkNe",
      "pubsub": null,
      "tpuQuic": "5.135.243.151:8003",
      "tpuVote": "5.135.243.151:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.243.151:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.243.151:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.136.177:8001",
      "gossip": "198.13.136.177:8000",
      "pubkey": "ES3dzpsHyw7eFPFyXA5n41bBsf81rqzAKxTTLDSvrkSV",
      "pubsub": null,
      "tpuQuic": "198.13.136.177:8002",
      "tpuVote": "198.13.136.177:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.136.177:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.136.177:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "144.202.53.48:8001",
      "gossip": "144.202.53.48:8000",
      "pubkey": "Ahomu7j6pojgKaaQrxCnW4PakR9idd3QeSn1e3YvAyqG",
      "pubsub": null,
      "tpuQuic": "144.202.53.48:8002",
      "tpuVote": "144.202.53.48:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "144.202.53.48:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "144.202.53.48:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.30:8001",
      "gossip": "84.32.103.30:8000",
      "pubkey": "gGJ8EgirEP4Dy9dXrei8ZsJjfUg3s4Stp1cs9RKeD3c",
      "pubsub": null,
      "tpuQuic": "84.32.103.30:8002",
      "tpuVote": "84.32.103.30:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "84.32.103.30:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.30:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.62:8001",
      "gossip": "64.130.61.62:8000",
      "pubkey": "8vQq8HtR5LaCKeehQZ2ereDa2AScrqaPTBLASZ4AXnKW",
      "pubsub": null,
      "tpuQuic": "64.130.61.62:8002",
      "tpuVote": "64.130.61.62:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.61.62:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.62:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.100:8002",
      "gossip": "51.89.25.152:8001",
      "pubkey": "7nWSFK99YnjHdegHGkNfwqKdhWxAjXoPGDw1Xun59573",
      "pubsub": null,
      "tpuQuic": "51.89.25.152:8003",
      "tpuVote": "51.89.25.152:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.152:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.152:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.189:8002",
      "gossip": "64.130.33.189:8001",
      "pubkey": "9eNX7h5wHH4GTqESybhHWZVvEX7nzxB6e7Q4J8RfAH2u",
      "pubsub": null,
      "tpuQuic": "64.130.33.189:8003",
      "tpuVote": "64.130.33.189:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.33.189:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.189:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.39:7733",
      "gossip": "45.154.33.39:8001",
      "pubkey": "2JQH3A8ExbQxFVapPjFE4ETMbJQtp1gpT8MZ9zPqNJ6H",
      "pubsub": null,
      "tpuQuic": "45.154.33.39:9007",
      "tpuVote": "45.154.33.39:9001",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 1429815730,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.39:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "154.45.250.111:8002",
      "gossip": "154.45.250.111:8001",
      "pubkey": "H3QiMawubjKrGiAPgj5Gn16RqREi8sC4H9XoGUxdwgj2",
      "pubsub": null,
      "tpuQuic": "154.45.250.111:8003",
      "tpuVote": "154.45.250.111:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "154.45.250.111:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "154.45.250.111:8004"
    },
    {
      "rpc": "64.130.63.69:8899",
      "tpu": null,
      "tvu": "64.130.63.69:8001",
      "gossip": "64.130.63.69:8000",
      "pubkey": "33JSCJgfJeXLADAcA6YatYy5DTFsFZEows4DNSFJ9pXw",
      "pubsub": "64.130.63.69:8900",
      "tpuQuic": "64.130.63.69:8002",
      "tpuVote": "64.130.63.69:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.69:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.69:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.223.206:8002",
      "gossip": "208.115.223.206:8001",
      "pubkey": "2XfEcm4dJm7aPpA69zt6rbseJr9dBd9Wf9fX5adKLWVP",
      "pubsub": null,
      "tpuQuic": "208.115.223.206:8003",
      "tpuVote": "208.115.223.206:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.223.206:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.223.206:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "160.202.128.145:8000",
      "pubkey": "6DTN2MtmWpefjG4BWtnCN2b4aQ2dMH46xT2FopomeWCs",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 2255652435,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.95.213:8002",
      "gossip": "85.195.95.213:8001",
      "pubkey": "8rxbnQBWgkkYrWriXf4TUVEZ3G9i8oRwbz5CTCDxxAN8",
      "pubsub": null,
      "tpuQuic": "85.195.95.213:8003",
      "tpuVote": "85.195.95.213:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "85.195.95.213:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.95.213:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.100.158:8001",
      "gossip": "84.32.100.158:8000",
      "pubkey": "9hrdpfdSt8h11dxKD6iuZnWEnxicBFioRzwnDwNhWhHD",
      "pubsub": null,
      "tpuQuic": "84.32.100.158:8002",
      "tpuVote": "84.32.100.158:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "84.32.100.158:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.100.158:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "189.1.164.143:8001",
      "gossip": "189.1.164.143:8000",
      "pubkey": "H4KVaDLY6iSzMdH3Edc3XRFJUZHXJC2h5LWT4m9wKSvu",
      "pubsub": null,
      "tpuQuic": "189.1.164.143:8002",
      "tpuVote": "189.1.164.143:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "189.1.164.143:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "189.1.164.143:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.76.235:8001",
      "gossip": "85.195.76.235:8000",
      "pubkey": "8hYfJYNErtpKbRhVT3mZGpazXyAy1C3vcnCANuMzSEWb",
      "pubsub": null,
      "tpuQuic": "85.195.76.235:8002",
      "tpuVote": "85.195.76.235:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "85.195.76.235:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.76.235:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "95.211.177.155:8000",
      "gossip": "95.211.177.155:8001",
      "pubkey": "27uvZAWpQSHRvdtgor2kMjX6oo9SdE32x2ECceBgB9L2",
      "pubsub": null,
      "tpuQuic": "95.211.177.155:8002",
      "tpuVote": "95.211.177.155:8004",
      "version": "4.0.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "95.211.177.155:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "95.211.177.155:8003"
    },
    {
      "rpc": "185.26.10.255:8899",
      "tpu": null,
      "tvu": "185.26.10.255:8001",
      "gossip": "185.26.10.255:8000",
      "pubkey": "CPLpdZEto4owgxmo4DwKH2dCjfrb1cmyjJvL8XB63oky",
      "pubsub": "185.26.10.255:8900",
      "tpuQuic": "185.26.10.255:8002",
      "tpuVote": "185.26.10.255:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "185.26.10.255:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.10.255:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.234.173:8002",
      "gossip": "208.115.234.173:8001",
      "pubkey": "BxwwyydQGMUV37WZo6EESqScYW9H6z3WFwr29jLEx9rp",
      "pubsub": null,
      "tpuQuic": "208.115.234.173:8003",
      "tpuVote": "208.115.234.173:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.234.173:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.234.173:8004"
    },
    {
      "rpc": "94.158.242.50:58000",
      "tpu": null,
      "tvu": "94.158.242.50:50001",
      "gossip": "94.158.242.50:50000",
      "pubkey": "8cDcKyQBkWm93uE415NTFA4STr65kAswLCY1GcpV5UwB",
      "pubsub": "94.158.242.50:58001",
      "tpuQuic": "94.158.242.50:50002",
      "tpuVote": "94.158.242.50:50004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "94.158.242.50:50009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "94.158.242.50:50003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "188.40.57.143:8001",
      "gossip": "188.40.57.143:8000",
      "pubkey": "3Ny8udmTBeiRQ2faAR8XbZrHV29y8GDYVZQW93ijV8ZV",
      "pubsub": null,
      "tpuQuic": "188.40.57.143:8002",
      "tpuVote": "188.40.57.143:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "188.40.57.143:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "188.40.57.143:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "146.19.172.80:8000",
      "gossip": "146.19.172.80:8001",
      "pubkey": "4GWvKGEDaz6Sk12xhkNUQCKdFMh5JnrKS4nfUCRLwEMk",
      "pubsub": null,
      "tpuQuic": "146.19.172.80:8002",
      "tpuVote": "146.19.172.80:8004",
      "version": "4.0.0-beta.7",
      "clientId": "JitoLabs",
      "featureSet": 1253319928,
      "serveRepair": "146.19.172.80:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.19.172.80:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.176.120:9100",
      "gossip": "84.32.176.120:8001",
      "pubkey": "9o46xYZwEEP5C24BFbXJoViLGWP2T1ktHttwocVggt5b",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": "84.32.176.120:9103",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "84.32.176.120:9108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.7:8000",
      "gossip": "64.130.33.7:8001",
      "pubkey": "E335gyP8cZkDeknyv2zjdvnVf7zP3jeHM1wTHzcVknSV",
      "pubsub": null,
      "tpuQuic": "64.130.33.7:8002",
      "tpuVote": "64.130.33.7:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.33.7:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.7:8003"
    },
    {
      "rpc": "72.46.86.119:8899",
      "tpu": null,
      "tvu": "72.46.86.119:8001",
      "gossip": "72.46.86.119:8000",
      "pubkey": "Bvz2aza95B7tzdx4sDVvufk6dCuGEgrpVHaEx2ctRZLX",
      "pubsub": "72.46.86.119:8900",
      "tpuQuic": "72.46.86.119:8002",
      "tpuVote": "72.46.86.119:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "72.46.86.119:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.46.86.119:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.116.232:9100",
      "gossip": "185.191.116.232:8001",
      "pubkey": "DemZtWs6oSEBpZ6EvoXYsWf65gzLfsUmgdUuTDs2x67C",
      "pubsub": null,
      "tpuQuic": "185.191.116.232:9101",
      "tpuVote": "185.191.116.232:9103",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "185.191.116.232:9108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.116.232:9102"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "65.20.104.37:8001",
      "gossip": "65.20.104.37:8000",
      "pubkey": "9D2PoDQA9saa3drKHRXDq2mC1jU3hYiVuGY7L7VVVjeE",
      "pubsub": null,
      "tpuQuic": "65.20.104.37:8002",
      "tpuVote": "65.20.104.37:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "65.20.104.37:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "65.20.104.37:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "177.54.154.15:8001",
      "gossip": "177.54.154.15:8000",
      "pubkey": "4HFtToyMFSWJT681Jmu26R1TThdGCdMUj6q1D1Z73TRw",
      "pubsub": null,
      "tpuQuic": "177.54.154.15:8002",
      "tpuVote": "177.54.154.15:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "177.54.154.15:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "177.54.154.15:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.197:8001",
      "gossip": "64.130.43.197:8000",
      "pubkey": "EK9CVJkhucPfAArCUSWpoutPx68SX9kPWkKsxUHBGLSV",
      "pubsub": null,
      "tpuQuic": "64.130.43.197:8002",
      "tpuVote": "64.130.43.197:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "64.130.43.197:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.197:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.78:8002",
      "gossip": "51.89.19.254:8001",
      "pubkey": "C9k8Sr27N47zG8o9D1236oSK1BhuGnkn42WzrUVnkLeh",
      "pubsub": null,
      "tpuQuic": "51.89.19.254:8003",
      "tpuVote": "51.89.19.254:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.19.254:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.19.254:8004"
    },
    {
      "rpc": "72.46.87.239:18899",
      "tpu": null,
      "tvu": "72.46.87.239:8001",
      "gossip": "72.46.87.239:8000",
      "pubkey": "9Bhp9JJdDL5WZWgVp1b1EPvqRX9ov4WU7q9oP5RUrHai",
      "pubsub": "72.46.87.239:18899",
      "tpuQuic": "72.46.87.239:8002",
      "tpuVote": "72.46.87.239:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "72.46.87.239:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.46.87.239:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.242.205:8002",
      "gossip": "204.16.242.205:8001",
      "pubkey": "62qv8epDAAFPUqVmBoxDfxqeDyFLrh6ui1edLcuxQi2g",
      "pubsub": null,
      "tpuQuic": "204.16.242.205:8003",
      "tpuVote": "204.16.242.205:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.242.205:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.242.205:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.59:8002",
      "gossip": "64.31.54.59:8001",
      "pubkey": "87GcA2XeETjQ5xfiYR54Be7y35p1k4vuR8CwhgJ6KLTW",
      "pubsub": null,
      "tpuQuic": "64.31.54.59:8003",
      "tpuVote": "64.31.54.59:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.59:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.59:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.19.141.203:8001",
      "gossip": "23.19.141.203:8000",
      "pubkey": "7XJzPYxJgAtxh9U5oD1nTot3dbhTx9Sz1NEwxYAovGos",
      "pubsub": null,
      "tpuQuic": "23.19.141.203:8002",
      "tpuVote": "23.19.141.203:8004",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "23.19.141.203:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.19.141.203:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.54.93:8002",
      "gossip": "67.209.54.93:8001",
      "pubkey": "HLWYaPwavMxYDR8wKZYJ9X8E9xzxcBb3jd93iXuEL7Nv",
      "pubsub": null,
      "tpuQuic": "67.209.54.93:8003",
      "tpuVote": "67.209.54.93:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.209.54.93:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.54.93:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.181.238.105:8002",
      "gossip": "64.181.238.105:8001",
      "pubkey": "H3fUfh98h38w5sy2AdE6WqJnXNuRsAbCnhGCzMZh2R45",
      "pubsub": null,
      "tpuQuic": "64.181.238.105:8010",
      "tpuVote": "64.181.238.105:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "64.181.238.105:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.181.238.105:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "140.82.58.123:8001",
      "gossip": "140.82.58.123:8000",
      "pubkey": "4DGecGKat4N356KDSfZtB7qPrRopBoXHmiXmvDV7Sx6X",
      "pubsub": null,
      "tpuQuic": "140.82.58.123:8002",
      "tpuVote": "140.82.58.123:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "140.82.58.123:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "140.82.58.123:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.229.227:8002",
      "gossip": "74.63.229.227:8001",
      "pubkey": "CUEx8Ga5jhyjqQum1JamgENWzem9DGKwJgJ7CPUaAf6y",
      "pubsub": null,
      "tpuQuic": "74.63.229.227:8003",
      "tpuVote": "74.63.229.227:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.229.227:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.229.227:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.10:8002",
      "gossip": "51.68.133.206:8001",
      "pubkey": "5zVwpycedWLfbjZvdWgokmztLMNyv6M1vfAoGSU9d6yu",
      "pubsub": null,
      "tpuQuic": "51.68.133.206:8003",
      "tpuVote": "51.68.133.206:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.133.206:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.133.206:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.28:18001",
      "gossip": "198.13.134.28:18000",
      "pubkey": "A6Fc56Krf7c61btvCdfSj6Hri59we4PdmVhF3dGgZ5cH",
      "pubsub": null,
      "tpuQuic": "198.13.134.28:18002",
      "tpuVote": "198.13.134.28:18004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "198.13.134.28:18009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.28:18003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "178.162.200.142:8001",
      "gossip": "178.162.200.142:8000",
      "pubkey": "4fp8VJA8JAndxVbaSuZjrjkThouRSpQJ3jqFmNr89Vpy",
      "pubsub": null,
      "tpuQuic": "178.162.200.142:8002",
      "tpuVote": "178.162.200.142:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "178.162.200.142:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "178.162.200.142:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.173:8002",
      "gossip": "64.130.59.173:8001",
      "pubkey": "DBWZBkCq8NYQKJzELBrXv24B3nAdX3x92UtDGi5R7cjN",
      "pubsub": null,
      "tpuQuic": "64.130.59.173:8003",
      "tpuVote": "64.130.59.173:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.173:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.173:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "67.209.55.5:7002",
      "pubkey": "88Lg4DkUfxrUj6tJMRBEki26Rv56Dq2eHNx2CyqMzSPV",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.107:8002",
      "gossip": "208.115.227.107:8001",
      "pubkey": "EV8zXoahuX6cGywTVjd66cthRREjra37TeJHLBNr1rmv",
      "pubsub": null,
      "tpuQuic": "208.115.227.107:8003",
      "tpuVote": "208.115.227.107:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.107:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.107:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.244:8001",
      "gossip": "64.130.40.244:8000",
      "pubkey": "H51HzuRcQs7uTvvgZdGwjftKVBLtk1hKQsKW5KnGMpuu",
      "pubsub": null,
      "tpuQuic": "64.130.40.244:8002",
      "tpuVote": "64.130.40.244:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.40.244:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.244:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.8:8002",
      "gossip": "64.130.54.8:8001",
      "pubkey": "6JcbzXpyHc2bTT8sFqw3VJ2BG1VPKPcdK2bbojS22oZB",
      "pubsub": null,
      "tpuQuic": "64.130.54.8:8003",
      "tpuVote": "64.130.54.8:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.8:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.8:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.144:8002",
      "gossip": "64.130.59.144:8001",
      "pubkey": "9BP7kSNaGgn36BiGgagSaNBVR8q8mAbVs2gGgWJC2inb",
      "pubsub": null,
      "tpuQuic": "64.130.59.144:8003",
      "tpuVote": "64.130.59.144:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.144:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.144:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.10.112:8002",
      "gossip": "202.8.10.112:8001",
      "pubkey": "7CV2ez7amr2DsH9wAehyeutJWY9fGEgpVyusMLf2xJ66",
      "pubsub": null,
      "tpuQuic": "202.8.10.112:8010",
      "tpuVote": "202.8.10.112:8006",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "202.8.10.112:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.10.112:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "183.81.168.179:8000",
      "gossip": "183.81.168.179:8001",
      "pubkey": "9s3efFkFNCo643VqjH8LbKnsqyRjXkZ88RFht88fzLTU",
      "pubsub": null,
      "tpuQuic": "183.81.168.179:8009",
      "tpuVote": "183.81.168.179:8005",
      "version": "3.1.6",
      "clientId": "AgaveBam",
      "featureSet": 2086771155,
      "serveRepair": "183.81.168.179:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "183.81.168.179:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.215:8888",
      "gossip": "64.130.46.215:8000",
      "pubkey": "5M5jczGUYHNisNrvJ3F1GPJCgDdLt6JWNzNMBB6up5Ln",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.180:8002",
      "gossip": "141.98.219.180:8001",
      "pubkey": "Gzo2uRfr1PJR6ERgSEr8X7gBu3gVpZ3tFriNTmLYi91d",
      "pubsub": null,
      "tpuQuic": "141.98.219.180:8003",
      "tpuVote": "141.98.219.180:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.219.180:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.180:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.184:8001",
      "gossip": "64.130.42.184:8000",
      "pubkey": "2AVk5ScDyXiK2jb6S72rm41NhdpQpaucWvUPacEG6uVS",
      "pubsub": null,
      "tpuQuic": "64.130.42.184:8002",
      "tpuVote": "64.130.42.184:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.42.184:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.184:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.58:8002",
      "gossip": "198.13.130.58:8001",
      "pubkey": "BPpsgSJwBF1Q9ch5w6ghzBJjF3ghkEFREarPDMvqqwBE",
      "pubsub": null,
      "tpuQuic": "198.13.130.58:8003",
      "tpuVote": "198.13.130.58:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.58:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.58:8004"
    },
    {
      "rpc": "64.130.47.12:8899",
      "tpu": null,
      "tvu": "64.130.47.12:8000",
      "gossip": "64.130.47.12:8901",
      "pubkey": "71NU7svz8fJWJ6k7U7n5WRp2WU31GctwvwLaFuu5WL6c",
      "pubsub": "64.130.47.12:8900",
      "tpuQuic": "64.130.47.12:8001",
      "tpuVote": "64.130.47.12:8003",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.47.12:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.12:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.197:8000",
      "gossip": "67.213.121.197:8001",
      "pubkey": "2wQX9AExE7VdtLQTF6Zgqn9WJdV9hgZ4CtaRzgTpHAUD",
      "pubsub": null,
      "tpuQuic": "67.213.121.197:8002",
      "tpuVote": "67.213.121.197:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.213.121.197:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.197:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.55.14:8003",
      "gossip": "64.130.55.14:8001",
      "pubkey": "FPEDND5TDvt3jqC6KqST3v9BQRiS5dNW1Hf8WnYqnf1B",
      "pubsub": null,
      "tpuQuic": "64.130.55.14:9007",
      "tpuVote": "64.130.55.14:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.55.14:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.55.14:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.139:8002",
      "gossip": "64.130.59.139:8001",
      "pubkey": "7qPforT5ufMuhKXbgViuY9tKZHrop28GvV66qq4Ndm1M",
      "pubsub": null,
      "tpuQuic": "64.130.59.139:8003",
      "tpuVote": "64.130.59.139:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.139:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.139:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.186.53:8001",
      "gossip": "84.32.186.53:8000",
      "pubkey": "31nkaMLUHmF3Tn5jVD954TMBniCxrGxkd6BEvfZsv5oU",
      "pubsub": null,
      "tpuQuic": "84.32.186.53:8002",
      "tpuVote": "84.32.186.53:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "84.32.186.53:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.186.53:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.136:8002",
      "gossip": "64.130.37.136:8001",
      "pubkey": "9Jo4KcMUZ727FAQQKnkR7oQQSibdR6LivPSLi48oi8cM",
      "pubsub": null,
      "tpuQuic": "64.130.37.136:8003",
      "tpuVote": "64.130.37.136:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.37.136:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.136:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.130.42.91:7001",
      "pubkey": "fWwZEG6GTcbEFemiRMC6UYoPB5fuTfFJQWVM5dhsNiC",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.136.148:8002",
      "gossip": "198.13.136.148:8001",
      "pubkey": "2cvUshffGQjd8nap8dV4GYHEF6BpeKhWcnyTZZrU9o2Q",
      "pubsub": null,
      "tpuQuic": "198.13.136.148:8003",
      "tpuVote": "198.13.136.148:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.136.148:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.136.148:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.178.224.123:8000",
      "gossip": "198.178.224.123:8001",
      "pubkey": "2CP9rMYLpHxrwKVWByvrAgALfj5BhBxrgTABKWRPhKqD",
      "pubsub": null,
      "tpuQuic": "198.178.224.123:8002",
      "tpuVote": "198.178.224.123:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.178.224.123:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.178.224.123:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.246:5556",
      "gossip": "45.152.160.246:5555",
      "pubkey": "AdvhgTLUWNcqYxtMUfChqtvcwPiD8AzngTdwXnPaeHem",
      "pubsub": null,
      "tpuQuic": "45.152.160.246:5557",
      "tpuVote": "45.152.160.246:5559",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.152.160.246:5564",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.246:5558"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.105.224.79:8001",
      "gossip": "86.105.224.79:8000",
      "pubkey": "sub55wbeZsxw8Syoss7sA5U5dKrWtVDy6THwcx7D2Q8",
      "pubsub": null,
      "tpuQuic": "86.105.224.79:8002",
      "tpuVote": "86.105.224.79:8004",
      "version": "4.1.0-rc.0",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "86.105.224.79:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.105.224.79:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.110:8001",
      "gossip": "70.40.185.110:8000",
      "pubkey": "FRWc4iE3tKqewPqgiWoLfEFxTZmysSHvVAdpa8u6W84Z",
      "pubsub": null,
      "tpuQuic": "70.40.185.110:8002",
      "tpuVote": "70.40.185.110:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "70.40.185.110:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.110:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.248.42:8002",
      "gossip": "208.115.248.42:8001",
      "pubkey": "GDzFB4MDJ7ouST8BsNBrgB6gqovqQCJyxPaZi8NKzofJ",
      "pubsub": null,
      "tpuQuic": "208.115.248.42:8003",
      "tpuVote": "208.115.248.42:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.248.42:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.248.42:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.179.8:8888",
      "gossip": "198.13.140.169:8000",
      "pubkey": "Hrk7stnh2JprgQjbicfWRSYg7qbqeoCXLprCMnjJEoks",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.110:8002",
      "gossip": "208.91.110.110:8001",
      "pubkey": "9G8gRQBgJkR7qtVWtqtDoYfboi6CctdgTmmmvem26xzn",
      "pubsub": null,
      "tpuQuic": "208.91.110.110:8003",
      "tpuVote": "208.91.110.110:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.110:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.110:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.182:8002",
      "gossip": "64.130.54.182:8001",
      "pubkey": "5cMvkXp3gxCfCHfKECQjWhJGfrLQRToFXM2GUMxAkD2p",
      "pubsub": null,
      "tpuQuic": "64.130.54.182:8003",
      "tpuVote": "64.130.54.182:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.182:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.182:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.165.37:8001",
      "gossip": "5.199.165.37:8000",
      "pubkey": "EvBsX7mzjHmxw6TnA47M3cKgNyfvcXXHYpwbLwVgYW1e",
      "pubsub": null,
      "tpuQuic": "5.199.165.37:8002",
      "tpuVote": "5.199.165.37:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.199.165.37:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.165.37:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.55:8000",
      "gossip": "64.130.43.55:8001",
      "pubkey": "5FeFEseF4ub8P14AHobEQSfHCYhRohRjJy7wPUUwZsMs",
      "pubsub": null,
      "tpuQuic": "64.130.43.55:8002",
      "tpuVote": "64.130.43.55:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.43.55:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.55:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.97.125:8001",
      "gossip": "109.94.97.125:8000",
      "pubkey": "DxJtrdwGUcd3zD2nuiVRCKp7HCuqfjXn1F6B9uUMxLUc",
      "pubsub": null,
      "tpuQuic": "109.94.97.125:8002",
      "tpuVote": "109.94.97.125:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.94.97.125:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.97.125:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.245:8001",
      "gossip": "64.130.40.245:8000",
      "pubkey": "EPPhfvv4Qoex4GmUJrL1EwkCLc69Enw4exXjUtHnyGkD",
      "pubsub": null,
      "tpuQuic": "64.130.40.245:8002",
      "tpuVote": "64.130.40.245:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.40.245:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.245:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "51.77.66.84:52729",
      "gossip": "51.77.66.84:46260",
      "pubkey": "4yF1EWTGQkL1kgtKXLrgHuzfcb8DHUke8Pj94WRKDVXv",
      "pubsub": null,
      "tpuQuic": "51.77.66.84:55864",
      "tpuVote": null,
      "version": "2.2.1",
      "clientId": "Agave",
      "featureSet": 3294202862,
      "serveRepair": "51.77.66.84:49595",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.215.177:8000",
      "gossip": "2.57.215.177:8001",
      "pubkey": "6wH24FxRpFq128abot3tTBRC24prvx8PaDRb9oxhy6Mf",
      "pubsub": null,
      "tpuQuic": "2.57.215.177:8002",
      "tpuVote": "2.57.215.177:8004",
      "version": "4.0.0-beta.7",
      "clientId": "JitoLabs",
      "featureSet": 1253319928,
      "serveRepair": "2.57.215.177:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "2.57.215.177:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.47:8001",
      "gossip": "198.13.130.47:8000",
      "pubkey": "4c9xJ6qPD5nUxxko13j7YD1nUsjX1rrgh7qaoivyos6r",
      "pubsub": null,
      "tpuQuic": "198.13.130.47:8002",
      "tpuVote": "198.13.130.47:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.130.47:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.47:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.144.245.62:8002",
      "gossip": "216.144.245.62:8001",
      "pubkey": "6hvT7Jhjb4bC2yKDNhuyPPtyQP3UsSnvttH385mxdzrz",
      "pubsub": null,
      "tpuQuic": "216.144.245.62:8003",
      "tpuVote": "216.144.245.62:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "216.144.245.62:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.144.245.62:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.54.88:8002",
      "gossip": "67.209.54.88:8001",
      "pubkey": "7ekp9ShVNzqRPsKWSsp2LeEJudt9XTz7FBRjX2CUCy8J",
      "pubsub": null,
      "tpuQuic": "67.209.54.88:8003",
      "tpuVote": "67.209.54.88:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.209.54.88:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.54.88:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.97.47:8001",
      "gossip": "109.94.97.47:8000",
      "pubkey": "5BhHudrMqhBd5e9vMcLERk2w5KSPLKy4UfD3eKNtuDtQ",
      "pubsub": null,
      "tpuQuic": "109.94.97.47:8002",
      "tpuVote": "109.94.97.47:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.94.97.47:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.97.47:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.42.173:8002",
      "gossip": "64.31.42.173:8001",
      "pubkey": "GoYJKwsmkfBSAhjMUEH1eq1pjDj6S8HoobJLZQRuFzFj",
      "pubsub": null,
      "tpuQuic": "64.31.42.173:8003",
      "tpuVote": "64.31.42.173:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.42.173:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.42.173:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.147:8001",
      "gossip": "64.130.54.147:8000",
      "pubkey": "53as7phLTrKA4XzAovei4kZcJ3Fs2HbEHbP6Y3PHNTnQ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.53:8002",
      "gossip": "202.8.11.53:8001",
      "pubkey": "8iTtas5S8sQWWrRUGe2QNXG7kCRLRcL4ZoyN7Tc9szdg",
      "pubsub": null,
      "tpuQuic": "202.8.11.53:8003",
      "tpuVote": "202.8.11.53:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.53:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.53:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.26.10.249:8001",
      "gossip": "185.26.10.249:8000",
      "pubkey": "c3oyHUruoyHnMwNNFsu23N8i84FZMp2B8bv963jYSKi",
      "pubsub": null,
      "tpuQuic": "185.26.10.249:8002",
      "tpuVote": "185.26.10.249:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.26.10.249:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.10.249:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.101:8002",
      "gossip": "208.91.110.101:8001",
      "pubkey": "aXckzaoJvosHvZxjiFXNqAa5G8F6gw1PxYAKh451AjV",
      "pubsub": null,
      "tpuQuic": "208.91.110.101:8003",
      "tpuVote": "208.91.110.101:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.101:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.101:8004"
    },
    {
      "rpc": "94.158.242.57:58000",
      "tpu": null,
      "tvu": "94.158.242.57:50001",
      "gossip": "94.158.242.57:50000",
      "pubkey": "3dSf3Fddbk8JHBRw25TrVqhz2rUPxZCTwn39u6e6yz7x",
      "pubsub": "94.158.242.57:58001",
      "tpuQuic": "94.158.242.57:50002",
      "tpuVote": "94.158.242.57:50004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "94.158.242.57:50009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "94.158.242.57:50003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "146.0.238.21:9000",
      "gossip": "146.0.238.21:8001",
      "pubkey": "9qhW1KJPam1A3ohRd5SJHGUxnY1zxckTKixodg6Zvx6",
      "pubsub": null,
      "tpuQuic": "146.0.238.21:9001",
      "tpuVote": "146.0.238.21:9003",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "146.0.238.21:9008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.0.238.21:9002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.217.71:8002",
      "gossip": "141.98.217.71:8001",
      "pubkey": "6fXYstKYVee9E4raKNyXPeF6wXemWg7JT4VPpgUnAXg1",
      "pubsub": null,
      "tpuQuic": "141.98.217.71:8003",
      "tpuVote": "141.98.217.71:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.217.71:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.217.71:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.198.211:8000",
      "gossip": "88.216.198.211:8001",
      "pubkey": "AzvXp1T7wA7kwBToz8YSYj2SEQa8oAopRdeWJssjsecZ",
      "pubsub": null,
      "tpuQuic": "88.216.198.211:8002",
      "tpuVote": "88.216.198.211:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "88.216.198.211:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.198.211:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.125:8002",
      "gossip": "64.130.51.125:8001",
      "pubkey": "GGLz1eiyUMyWo7DXf5qgPxQdmgoXMNEvvDZZErEFmyFP",
      "pubsub": null,
      "tpuQuic": "64.130.51.125:8003",
      "tpuVote": "64.130.51.125:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.125:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.125:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.201.6.39:8002",
      "gossip": "84.201.6.39:8000",
      "pubkey": "CVtsxAvzkEVHgJsJWgwzPmFtxzGH6koDwxp7575TZY9s",
      "pubsub": null,
      "tpuQuic": "84.201.6.39:8003",
      "tpuVote": "84.201.6.39:8005",
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 203501648,
      "serveRepair": "84.201.6.39:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.201.6.39:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.69:8002",
      "gossip": "64.130.54.69:8001",
      "pubkey": "9PLb2uKP6URXAoqmUEUTxWUHUx4JWAYN3ttfZ6kQUAmN",
      "pubsub": null,
      "tpuQuic": "64.130.54.69:8003",
      "tpuVote": "64.130.54.69:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.69:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.69:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.209.179.237:8001",
      "gossip": "185.209.179.237:8000",
      "pubkey": "12SrCzYxmsgSmmotWcaJpYUqyLn8btwZrow9jk4HBQPZ",
      "pubsub": null,
      "tpuQuic": "185.209.179.237:8002",
      "tpuVote": "185.209.179.237:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.209.179.237:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.209.179.237:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.177:8002",
      "gossip": "185.191.117.177:8001",
      "pubkey": "7ZtzpcFAYK3wNyAQbcQ2QwNavCaz4p54VkqHZE2SHXj",
      "pubsub": null,
      "tpuQuic": "185.191.117.177:8003",
      "tpuVote": "185.191.117.177:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.177:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.177:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.143.77:8002",
      "gossip": "74.118.143.77:8001",
      "pubkey": "6SXs6ksHJ1Kzr1kfoEKjmScggvoJhATCkPd8GUn3XqES",
      "pubsub": null,
      "tpuQuic": "74.118.143.77:8003",
      "tpuVote": "74.118.143.77:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.143.77:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.143.77:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.77.198.51:8001",
      "gossip": "47.77.198.51:8000",
      "pubkey": "6MHA2nkgTt36KRDkHVS99kugoMmdpZk7v3nomDRrmdzW",
      "pubsub": null,
      "tpuQuic": "47.77.198.51:8002",
      "tpuVote": "47.77.198.51:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "47.77.198.51:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "47.77.198.51:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.112:8003",
      "gossip": "64.130.37.112:8001",
      "pubkey": "3AYKnRWn1kDfdCPDj2FfJYSVXbPnaERZ4ktpsviftWBE",
      "pubsub": null,
      "tpuQuic": "64.130.37.112:9007",
      "tpuVote": "64.130.37.112:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "64.130.37.112:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.112:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.143.101:8002",
      "gossip": "74.118.143.101:8001",
      "pubkey": "D4v713KExFmhg5nZp4upsFxgTkYtkRfEe8k2G8YaBe9p",
      "pubsub": null,
      "tpuQuic": "74.118.143.101:8010",
      "tpuVote": "74.118.143.101:8006",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "74.118.143.101:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.143.101:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.86:8001",
      "gossip": "64.130.42.86:8000",
      "pubkey": "AXRi6WQd7Mbgnt8QMadUubs82zdeFrG1FReXsYyCNG5W",
      "pubsub": null,
      "tpuQuic": "64.130.42.86:8002",
      "tpuVote": "64.130.42.86:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.42.86:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.86:8003"
    },
    {
      "rpc": "23.227.220.213:8895",
      "tpu": null,
      "tvu": "23.227.220.213:8002",
      "gossip": "23.227.220.213:8001",
      "pubkey": "EPcigMLvnBYmhCLfjViL8PtcbE5sdvP3Xzzn5UN6wfA8",
      "pubsub": "23.227.220.213:8895",
      "tpuQuic": "23.227.220.213:8003",
      "tpuVote": "23.227.220.213:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "23.227.220.213:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.227.220.213:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "178.63.222.223:8000",
      "gossip": "178.63.222.223:8001",
      "pubkey": "H1ASkzPGpLbnf1Ny3vKSziVXk1mNTGRChfeCSayKbo1Y",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.139.43:8002",
      "gossip": "74.118.139.43:8001",
      "pubkey": "3DzRnwHkqcAcTdMPxpWaxGdC5x1aMGoaRQhSn4Bc3Kik",
      "pubsub": null,
      "tpuQuic": "74.118.139.43:8003",
      "tpuVote": "74.118.139.43:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.139.43:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.139.43:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.50.110.209:8900",
      "gossip": "149.50.110.209:8001",
      "pubkey": "66nkc72rS4MR9CDUtfyzMjbCCwXrkyWzMaoT4SFjd5fx",
      "pubsub": null,
      "tpuQuic": "149.50.110.209:8901",
      "tpuVote": "149.50.110.209:8903",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "149.50.110.209:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "149.50.110.209:8902"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "108.171.210.106:8001",
      "gossip": "108.171.210.106:8000",
      "pubkey": "AqTkFzBdpoosoW5BqJBCEp2fNHaEsJ8QvB17ZzrFCWcx",
      "pubsub": null,
      "tpuQuic": "108.171.210.106:8002",
      "tpuVote": "108.171.210.106:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "108.171.210.106:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "108.171.210.106:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "169.155.169.25:8003",
      "gossip": "169.155.169.25:8001",
      "pubkey": "8tMce9mfKx53p8oBcyJRwaxkbTvpPWm9eeSEEYFb83MQ",
      "pubsub": null,
      "tpuQuic": "169.155.169.25:9007",
      "tpuVote": "169.155.169.25:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "169.155.169.25:8910",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "169.155.169.25:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.73:8002",
      "gossip": "64.130.42.73:8001",
      "pubkey": "C9ynUhPaXoULYdNc4ua64ZsSycu9GHC479qzF5Yk7vuN",
      "pubsub": null,
      "tpuQuic": "64.130.42.73:8003",
      "tpuVote": "64.130.42.73:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.73:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.73:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "217.170.200.162:8001",
      "gossip": "217.170.200.162:8000",
      "pubkey": "C5ykgNoc6Qmd9eKGj36HNXCgsoDYkYH5MNDaktuqKVuF",
      "pubsub": null,
      "tpuQuic": "217.170.200.162:8002",
      "tpuVote": "217.170.200.162:8004",
      "version": "4.0.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "217.170.200.162:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "217.170.200.162:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "18.183.52.189:38001",
      "gossip": "18.183.52.189:38000",
      "pubkey": "CARmX42k6aqTrHr1VWqHmBUmm5pmYqNCDUhmQxMfF2VD",
      "pubsub": null,
      "tpuQuic": "18.183.52.189:38002",
      "tpuVote": "18.183.52.189:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "18.183.52.189:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "18.183.52.189:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.166.162.97:11001",
      "gossip": "46.166.162.97:11000",
      "pubkey": "e4tdxKbvkLT7UPbSCa6Vbkvjd6eNVnNC9ApG92bqkXE",
      "pubsub": null,
      "tpuQuic": "46.166.162.97:11002",
      "tpuVote": "46.166.162.97:11004",
      "version": "4.0.0-beta.6",
      "clientId": "Agave",
      "featureSet": 2475355604,
      "serveRepair": "46.166.162.97:11009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "46.166.162.97:11003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.15.241.7:18503",
      "gossip": "204.15.241.7:18502",
      "pubkey": "AwQDcRY4Dpamsn62LNaQfLXJy6ymcuZxF62BkW5GCbhG",
      "pubsub": null,
      "tpuQuic": "204.15.241.7:18511",
      "tpuVote": "204.15.241.7:18507",
      "version": "3.1.14",
      "clientId": "JitoLabs",
      "featureSet": 534737035,
      "serveRepair": "204.15.241.7:18514",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.15.241.7:18512"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.84.187:8001",
      "gossip": "85.195.84.187:8000",
      "pubkey": "BSBAMfbAutzp2B6dacEtQYi844Ts16qEpts8FssCdU1K",
      "pubsub": null,
      "tpuQuic": "85.195.84.187:8002",
      "tpuVote": "85.195.84.187:8004",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "85.195.84.187:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.84.187:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.202:8002",
      "gossip": "198.13.134.202:8001",
      "pubkey": "Fre3BWow9aRBkWD5czM8wbAuzWGixkn8zHNWdkyMiD4E",
      "pubsub": null,
      "tpuQuic": "198.13.134.202:8003",
      "tpuVote": "198.13.134.202:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.202:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.202:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.244.204:8002",
      "gossip": "204.16.244.204:8001",
      "pubkey": "E2bMhaLCBfybgC2mVQseYGijJry2wanaTS2s5C4xqN4d",
      "pubsub": null,
      "tpuQuic": "204.16.244.204:8003",
      "tpuVote": "204.16.244.204:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.244.204:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.244.204:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.158.94.226:8001",
      "gossip": "216.158.94.226:8000",
      "pubkey": "5xr4hi2pDVbyVGC8YYqp52xdCt4QmYYwN9r2KJNEiLrL",
      "pubsub": null,
      "tpuQuic": "216.158.94.226:8002",
      "tpuVote": "216.158.94.226:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.158.94.226:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.158.94.226:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.54.212:8002",
      "gossip": "67.209.54.212:8001",
      "pubkey": "35VnrZbdzyi7yecUYb3KHFfgsxt65SF7dgTieaF34BHB",
      "pubsub": null,
      "tpuQuic": "67.209.54.212:8003",
      "tpuVote": "67.209.54.212:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.209.54.212:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.54.212:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.43:38001",
      "gossip": "64.130.61.43:38000",
      "pubkey": "2pH7z9URs2ynEo3ep8XheFhfYsxNTeYmrXqiZ8HQfNEt",
      "pubsub": null,
      "tpuQuic": "64.130.61.43:38002",
      "tpuVote": "64.130.61.43:38004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.61.43:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.43:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.94:8001",
      "gossip": "64.130.47.94:8000",
      "pubkey": "E423hcvGVdrxouDggdL6TjCm2BXvECcURtGfj4PvxpSV",
      "pubsub": null,
      "tpuQuic": "64.130.47.94:8003",
      "tpuVote": "64.130.47.94:8005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.47.94:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.94:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.199:8000",
      "gossip": "67.213.121.199:8001",
      "pubkey": "8g6ipBLK9Dr9tzhago3fB9Up21A9X7RWUQpEpteMC4MK",
      "pubsub": null,
      "tpuQuic": "67.213.121.199:8002",
      "tpuVote": "67.213.121.199:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "67.213.121.199:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.199:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.142.22:8002",
      "gossip": "198.13.142.22:8001",
      "pubkey": "A7fYq3oN6KEPwGsur1bqH5K9bPHXqVKkMEfagH7GbYbc",
      "pubsub": null,
      "tpuQuic": "198.13.142.22:8003",
      "tpuVote": "198.13.142.22:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.142.22:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.142.22:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.88.251.50:8001",
      "gossip": "208.88.251.50:8000",
      "pubkey": "3WGyc7jL4vv2mwwzGGL9XvkUrZFLkHdZHvvv9cjs3N5G",
      "pubsub": null,
      "tpuQuic": "208.88.251.50:8002",
      "tpuVote": "208.88.251.50:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "208.88.251.50:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.88.251.50:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "54.251.64.51:8001",
      "gossip": "54.251.64.51:8000",
      "pubkey": "HNybcgsSxEGfF5Ngeae1rtW3igrX5QJB5U9g87MZURsn",
      "pubsub": null,
      "tpuQuic": "54.251.64.51:8002",
      "tpuVote": "54.251.64.51:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.251.64.51:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.251.64.51:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.15:8002",
      "gossip": "64.130.37.15:8001",
      "pubkey": "3XU8nQ1Wfz5u36KxPRw92pCQe4Qx58vYQQzypmVrC9vx",
      "pubsub": null,
      "tpuQuic": "64.130.37.15:8003",
      "tpuVote": "64.130.37.15:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "64.130.37.15:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.15:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.113.123:8001",
      "gossip": "67.213.113.123:8000",
      "pubkey": "DQh5cwjYfyCYtsTmcZ2f3kxyxo5KCqh3oFQxp5pd1tv1",
      "pubsub": null,
      "tpuQuic": "67.213.113.123:8002",
      "tpuVote": "67.213.113.123:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.213.113.123:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.113.123:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.118.147:8001",
      "gossip": "185.191.118.147:8000",
      "pubkey": "91zmBkB5aY7PZV87Kq1pzQ5DZAJqFViUEUREq1qXA5v8",
      "pubsub": null,
      "tpuQuic": "185.191.118.147:8002",
      "tpuVote": "185.191.118.147:8004",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "185.191.118.147:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.118.147:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.32.70:8002",
      "gossip": "64.31.32.70:8001",
      "pubkey": "8Qtcry8US5zQhZmmpZ8oWeKRw9xEnJuNpwritho1Fc4o",
      "pubsub": null,
      "tpuQuic": "64.31.32.70:8003",
      "tpuVote": "64.31.32.70:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.32.70:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.32.70:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.99:8002",
      "gossip": "208.91.110.99:8001",
      "pubkey": "7h5PcfcT6DupfsKrNW5NqfxwfS8WBnPgwT4yRQ5N8A4C",
      "pubsub": null,
      "tpuQuic": "208.91.110.99:8003",
      "tpuVote": "208.91.110.99:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.99:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.99:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.171.164.58:8001",
      "gossip": "104.171.164.58:8000",
      "pubkey": "H2Eyv3juoPi8dPNmgHvWeAXK1oXym5EnBvnA3hHyWB4d",
      "pubsub": null,
      "tpuQuic": "104.171.164.58:8002",
      "tpuVote": "104.171.164.58:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "104.171.164.58:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.171.164.58:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.111:8001",
      "gossip": "202.8.11.111:8000",
      "pubkey": "9mPsJgF7LeibePuTnsr6VdULrFDfUh8DMknazev6d2m7",
      "pubsub": null,
      "tpuQuic": "202.8.11.111:8002",
      "tpuVote": "202.8.11.111:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.111:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.111:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.201:8001",
      "gossip": "208.91.110.201:8000",
      "pubkey": "8nLSzutevMBuK1sdXNe1yqCyCEsjFfTmrqzjnooBXYyg",
      "pubsub": null,
      "tpuQuic": "208.91.110.201:8002",
      "tpuVote": "208.91.110.201:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "208.91.110.201:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.201:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "146.71.124.98:8001",
      "gossip": "146.71.124.98:8000",
      "pubkey": "gorFhR7d2y2MGFA8uMatbhm5xhkHJDuF4aeUd76WqPV",
      "pubsub": null,
      "tpuQuic": "146.71.124.98:8002",
      "tpuVote": "146.71.124.98:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "146.71.124.98:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.71.124.98:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.126:8002",
      "gossip": "141.95.48.150:8001",
      "pubkey": "FE975vMLPM61BukDAeraue7QHrG3TLpx4RUawbE7YV86",
      "pubsub": null,
      "tpuQuic": "141.95.48.150:8003",
      "tpuVote": "141.95.48.150:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "141.95.48.150:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.95.48.150:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "192.69.209.130:8003",
      "gossip": "192.69.209.130:8001",
      "pubkey": "EnvovQhZ3bditkCasRsBnWDQYXo3o3vWLyxyuXdSnfSR",
      "pubsub": null,
      "tpuQuic": "192.69.209.130:9007",
      "tpuVote": "192.69.209.130:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "192.69.209.130:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "192.69.209.130:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.248.149:8002",
      "gossip": "208.115.248.149:8001",
      "pubkey": "4d6RXcRNwT3XhxowHfBnpb8GmqsXq4MAWECztuxoKMH5",
      "pubsub": null,
      "tpuQuic": "208.115.248.149:8003",
      "tpuVote": "208.115.248.149:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.248.149:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.248.149:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.32.254:8002",
      "gossip": "64.31.32.254:8001",
      "pubkey": "4QDY9VHn6JhfkvnCRKxThm4ZPgEFxn9faccaQWpbrv1i",
      "pubsub": null,
      "tpuQuic": "64.31.32.254:8003",
      "tpuVote": "64.31.32.254:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.32.254:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.32.254:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.35:8100",
      "gossip": "64.130.33.35:8001",
      "pubkey": "2tEPkZcj3XEGnZazHRo22MiMR1BUDE47P4bZVwQFkeQz",
      "pubsub": null,
      "tpuQuic": "64.130.33.35:9007",
      "tpuVote": "64.130.33.35:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.33.35:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.35:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.36.110:8001",
      "gossip": "88.216.36.110:8000",
      "pubkey": "7UVpYKWLBFAA5tMX4bKPf62Mz2aWjWiiq6iSXxZBoaH2",
      "pubsub": null,
      "tpuQuic": "88.216.36.110:8002",
      "tpuVote": "88.216.36.110:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "88.216.36.110:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.36.110:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "34.239.240.195:8001",
      "gossip": "34.239.240.195:8000",
      "pubkey": "5AsmghjWYxzdsq4hPR7bAgTJ47hL7Pvz2MY4F53pYBiy",
      "pubsub": null,
      "tpuQuic": "34.239.240.195:8009",
      "tpuVote": "34.239.240.195:8005",
      "version": "3.1.10",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "34.239.240.195:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "34.239.240.195:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.54.77:8002",
      "gossip": "67.209.54.77:8001",
      "pubkey": "BG8WtWB5wYHFWxTVgJ9bUsMrue1m4NDB1mDvsfwD1e2Z",
      "pubsub": null,
      "tpuQuic": "67.209.54.77:8003",
      "tpuVote": "67.209.54.77:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.209.54.77:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.54.77:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.87.163:8001",
      "gossip": "64.34.87.163:8000",
      "pubkey": "4nQJvEzGFxwAdLArouQsN6Q9CKtEKEP3VpWKZuKHci1P",
      "pubsub": null,
      "tpuQuic": "64.34.87.163:8002",
      "tpuVote": "64.34.87.163:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.34.87.163:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.87.163:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.165.12:8001",
      "gossip": "5.199.165.12:8000",
      "pubkey": "GK1dUWJJhk62z7ZKQFuLq4xuNvKJoJW7GvijsdWQLxw6",
      "pubsub": null,
      "tpuQuic": "5.199.165.12:8002",
      "tpuVote": "5.199.165.12:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "5.199.165.12:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.165.12:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.55:8001",
      "gossip": "64.130.41.55:8000",
      "pubkey": "EBvTg3eznsSC2BrtFM1Qnr6GSYMavADcaG5vmYAJPzuU",
      "pubsub": null,
      "tpuQuic": "64.130.41.55:8002",
      "tpuVote": "64.130.41.55:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.41.55:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.55:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.96.23:8001",
      "gossip": "109.94.96.23:8000",
      "pubkey": "8u8k3QRkNkzLDvhZboaPKXwBHJB8DukN9u6NZzuufamK",
      "pubsub": null,
      "tpuQuic": "109.94.96.23:8002",
      "tpuVote": "109.94.96.23:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.94.96.23:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.96.23:8003"
    },
    {
      "rpc": "189.1.171.95:21611",
      "tpu": null,
      "tvu": "189.1.171.95:11601",
      "gossip": "189.1.171.95:21610",
      "pubkey": "2zpV1pRjjQzpm4De6cwuQHaV6zKHxx4ARbjWLBnAtFmj",
      "pubsub": "189.1.171.95:21612",
      "tpuQuic": "189.1.171.95:11602",
      "tpuVote": "189.1.171.95:11604",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "189.1.171.95:11609",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "189.1.171.95:11603"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.186.70:8001",
      "gossip": "70.40.186.70:8000",
      "pubkey": "9VNgapvXdLGJVDd7Biwbg8bVxH8vDNJX7tCsUiqezDbn",
      "pubsub": null,
      "tpuQuic": "70.40.186.70:8002",
      "tpuVote": "70.40.186.70:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "70.40.186.70:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.186.70:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.161:8001",
      "gossip": "64.130.37.161:8000",
      "pubkey": "36fENr89R9Xo38Uu3oyKjnjNb9p7BYDeDRPKdjuAc3Dy",
      "pubsub": null,
      "tpuQuic": "64.130.37.161:8002",
      "tpuVote": "64.130.37.161:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.37.161:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.161:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.32.54:8002",
      "gossip": "64.31.32.54:8001",
      "pubkey": "9a3CeEa5T5XQ7FSofC84e3dSeDLzdiDggD5ha1DPx9uD",
      "pubsub": null,
      "tpuQuic": "64.31.32.54:8003",
      "tpuVote": "64.31.32.54:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.32.54:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.32.54:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.24.58:8002",
      "gossip": "64.31.24.58:8001",
      "pubkey": "4g3ynMvWHdmkwBaJVTzw9kreYDYTxRV2RnTz9fcsDCgS",
      "pubsub": null,
      "tpuQuic": "64.31.24.58:8003",
      "tpuVote": "64.31.24.58:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.24.58:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.24.58:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.119.91:8001",
      "gossip": "67.213.119.91:8000",
      "pubkey": "3HM3VTkoRFjJAnSY45oXY3HPQuVddf25nuNVNBZgoTt6",
      "pubsub": null,
      "tpuQuic": "67.213.119.91:8002",
      "tpuVote": "67.213.119.91:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.119.91:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.119.91:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.80:8002",
      "gossip": "51.89.24.64:8001",
      "pubkey": "DbvWiKBnvweFJy6dq9KFJ11GYEQMrHRq8ynG21EMPASg",
      "pubsub": null,
      "tpuQuic": "51.89.24.64:8003",
      "tpuVote": "51.89.24.64:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.24.64:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.24.64:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.146.160.8:8002",
      "gossip": "45.146.160.8:8001",
      "pubkey": "AVsoUxH9SEfQPakL5nhs5oLEFf7AXPgEBfyqs93wUQJZ",
      "pubsub": null,
      "tpuQuic": "45.146.160.8:8003",
      "tpuVote": "45.146.160.8:8005",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "45.146.160.8:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.146.160.8:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.23:8002",
      "gossip": "64.130.32.23:8001",
      "pubkey": "2ioH1x7xwmDQBFtGcnYvjhSrAE23m6kzf5YoYnqouJ7n",
      "pubsub": null,
      "tpuQuic": "64.130.32.23:8003",
      "tpuVote": "64.130.32.23:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.23:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.23:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "43.134.230.55:8001",
      "gossip": "43.134.230.55:8000",
      "pubkey": "6pjnSo2MZpj7mQk7ucwkYcuKUa22c7ZVxCd4YzP4sW3t",
      "pubsub": null,
      "tpuQuic": "43.134.230.55:8002",
      "tpuVote": "43.134.230.55:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "43.134.230.55:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "43.134.230.55:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.35:8002",
      "gossip": "64.130.50.35:8001",
      "pubkey": "BTicPQ7YUoCgWv6MCAr4Pz4UjWHmFW8p6jhuUkns57H9",
      "pubsub": null,
      "tpuQuic": "64.130.50.35:8010",
      "tpuVote": "64.130.50.35:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "64.130.50.35:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.35:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.109.67:8001",
      "gossip": "208.91.109.67:8000",
      "pubkey": "FrMWZY8R3AT9tr1Yod7pRYz633s7K4ZfrZUP8g75L81Y",
      "pubsub": null,
      "tpuQuic": "208.91.109.67:8002",
      "tpuVote": "208.91.109.67:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "208.91.109.67:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.67:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.53:8002",
      "gossip": "64.31.54.53:8001",
      "pubkey": "7x4cUJiEgX9DBShLqGEqVLH6ReZtJ95Rpah722k2mWj",
      "pubsub": null,
      "tpuQuic": "64.31.54.53:8003",
      "tpuVote": "64.31.54.53:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.53:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.53:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.36.182:8003",
      "gossip": "64.130.36.182:8001",
      "pubkey": "BtJmUemxN7YQHCdkAmPiDitHEEH9eSMrMJWeHKERX7hE",
      "pubsub": null,
      "tpuQuic": "64.130.36.182:8004",
      "tpuVote": "64.130.36.182:8006",
      "version": "4.1.0-beta.3",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.36.182:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.36.182:8005"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.198:8001",
      "gossip": "64.130.63.198:8000",
      "pubkey": "8oawJU2bBnCr6tbfmzTsXge34bbsoBa9yjJ9PMc49Txq",
      "pubsub": null,
      "tpuQuic": "64.130.63.198:8002",
      "tpuVote": "64.130.63.198:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.198:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.198:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.142.205:8001",
      "gossip": "104.204.142.205:8000",
      "pubkey": "4cJjiR8PeEe6eyZKeiHXHUmhKeAZPoorXdG4NrMc4HJW",
      "pubsub": null,
      "tpuQuic": "104.204.142.205:8009",
      "tpuVote": "104.204.142.205:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.204.142.205:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.142.205:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.33:8001",
      "gossip": "64.130.43.33:8000",
      "pubkey": "1VvLBgaUQMhh1yByB8x1fSByX6YZMuCCHuU5A9pqcGS",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-beta.1",
      "clientId": "JitoLabs",
      "featureSet": 713536442,
      "serveRepair": "64.130.43.33:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.198:8003",
      "gossip": "64.130.42.198:8001",
      "pubkey": "FtZ7YmQLdmYdxyJEheABh1oZvGEybbG4DDtWa7fvA9aV",
      "pubsub": null,
      "tpuQuic": "64.130.42.198:9007",
      "tpuVote": "64.130.42.198:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "64.130.42.198:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.198:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.34:8001",
      "gossip": "45.152.160.34:8000",
      "pubkey": "AbYp65YKHfNaLR7kkDo5tpAvo921hynsJRSP5H2Ypq37",
      "pubsub": null,
      "tpuQuic": "45.152.160.34:8002",
      "tpuVote": "45.152.160.34:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "45.152.160.34:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.34:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.8.114:8000",
      "gossip": "64.31.8.114:8801",
      "pubkey": "GYo8AehAaVuUthGJK1K1LB1fqwFcaqDXqLX3F7LH9A4Q",
      "pubsub": null,
      "tpuQuic": "64.31.8.114:8001",
      "tpuVote": "64.31.8.114:8003",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "64.31.8.114:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.8.114:8002"
    },
    {
      "rpc": "64.130.44.115:8899",
      "tpu": null,
      "tvu": "64.130.44.115:8000",
      "gossip": "64.130.44.115:8001",
      "pubkey": "9WgUoM2tM3sQ38KUBnPMbRnuvdakaFhA3488XnVxtCaR",
      "pubsub": "64.130.44.115:8900",
      "tpuQuic": "64.130.44.115:8002",
      "tpuVote": "64.130.44.115:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.115:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.115:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.219.168.185:8001",
      "gossip": "103.219.168.185:8000",
      "pubkey": "5aGDqSpbimRGk2A8Vxa8MUGiiDzSaeQryCYLhkbfziMH",
      "pubsub": null,
      "tpuQuic": "103.219.168.185:8002",
      "tpuVote": "103.219.168.185:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "103.219.168.185:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.219.168.185:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.145:8001",
      "gossip": "67.213.121.145:8000",
      "pubkey": "767Kp5fStAGzHJtbgamtcxwtVX66YVUVJKtmcMUqC5Lo",
      "pubsub": null,
      "tpuQuic": "67.213.121.145:8002",
      "tpuVote": "67.213.121.145:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.121.145:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.145:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "145.239.161.175:8021",
      "gossip": "145.239.161.175:8020",
      "pubkey": "w2aM9Q8uxukxnyzVuEhboPrAJ2RKXC91u3f8ZiDGEpb",
      "pubsub": null,
      "tpuQuic": "145.239.161.175:8022",
      "tpuVote": "145.239.161.175:8024",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "145.239.161.175:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "145.239.161.175:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.52.237.102:9001",
      "gossip": "185.52.237.102:9000",
      "pubkey": "56XLfT9QYVCEP1ZfEg48VMNjsqJYibw5Fzr8d3jY9rAp",
      "pubsub": null,
      "tpuQuic": "185.52.237.102:9002",
      "tpuVote": "185.52.237.102:9004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.52.237.102:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.52.237.102:9003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.118.108:8002",
      "gossip": "185.191.118.108:8001",
      "pubkey": "EQTkooxZZKa8XojfvgHgUT2dPMgfxdWyQ5akWncG3x2E",
      "pubsub": null,
      "tpuQuic": "185.191.118.108:8003",
      "tpuVote": "185.191.118.108:8005",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "185.191.118.108:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.118.108:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "40.160.21.182:8001",
      "gossip": "40.160.21.182:8000",
      "pubkey": "2wewd1rFzqG5nseX1ZMnB7VU7N1Sz9rPyoXTBiGseTfU",
      "pubsub": null,
      "tpuQuic": "40.160.21.182:8002",
      "tpuVote": "40.160.21.182:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "40.160.21.182:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "40.160.21.182:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.136.38:8002",
      "gossip": "74.118.136.38:8001",
      "pubkey": "6tQjXRGfzoCoD4PMxMG1eeG2b29b2NbQ13z4oVdQzicq",
      "pubsub": null,
      "tpuQuic": "74.118.136.38:8003",
      "tpuVote": "74.118.136.38:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.136.38:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.136.38:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.130.53.73:7002",
      "pubkey": "2qDQZM2wTsBjDoDkq5L8fGAfdzmU4HNVanrYHzjBJnqu",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "54.216.178.104:38001",
      "gossip": "54.216.178.104:38000",
      "pubkey": "C36Ln6TU5KLBxu2hXGE5wS8JBZvfsurDuAbgzzk7K1du",
      "pubsub": null,
      "tpuQuic": "54.216.178.104:38002",
      "tpuVote": "54.216.178.104:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "54.216.178.104:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.216.178.104:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.248.250:8002",
      "gossip": "208.115.248.250:8001",
      "pubkey": "ARDixoPQxMmvUQroWubTZ9taKZb96nuQetWaJzFo6YX7",
      "pubsub": null,
      "tpuQuic": "208.115.248.250:8003",
      "tpuVote": "208.115.248.250:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.248.250:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.248.250:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.137:8888",
      "gossip": "198.13.141.41:8000",
      "pubkey": "EToV1YHQ44xSzBHGcy7AYzSpzjRh9R5EurBT7R7znf4m",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "44.231.137.254:8001",
      "gossip": "44.231.137.254:8000",
      "pubkey": "EVV8G8JuvWnvyA5fPUs9XjVdjEhu3BUnutdUb1hdEUnZ",
      "pubsub": null,
      "tpuQuic": "44.231.137.254:8002",
      "tpuVote": "44.231.137.254:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "44.231.137.254:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "44.231.137.254:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "54.168.211.135:28001",
      "gossip": "54.168.211.135:28000",
      "pubkey": "BresLznEnrkJhhYS8cx2rXC7umLcKbEojWFg64N8JfYm",
      "pubsub": null,
      "tpuQuic": "54.168.211.135:28002",
      "tpuVote": "54.168.211.135:28004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "54.168.211.135:28009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.168.211.135:28003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "135.181.209.36:8001",
      "gossip": "135.181.209.36:8000",
      "pubkey": "4JjJUQSzn5ZxEgH37aDax4xPRiDNDgamTbvoLLR8BQaz",
      "pubsub": null,
      "tpuQuic": "135.181.209.36:8009",
      "tpuVote": "135.181.209.36:8005",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "135.181.209.36:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "135.181.209.36:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.215.216:8002",
      "gossip": "2.57.215.216:8001",
      "pubkey": "9u5gycY1F7zcZvAVLjiYeQWCozujeWtUw3mFGgBVZUuc",
      "pubsub": null,
      "tpuQuic": "2.57.215.216:8003",
      "tpuVote": "2.57.215.216:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "2.57.215.216:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "2.57.215.216:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "212.83.43.110:10002",
      "gossip": "212.83.43.110:8001",
      "pubkey": "9PN6LrUrtogp3yk56xZAm2wx8dUJx7FR8qYeYpgSsjKE",
      "pubsub": null,
      "tpuQuic": "212.83.43.110:10003",
      "tpuVote": "212.83.43.110:10005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "212.83.43.110:10010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "212.83.43.110:10004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.106.59.243:8002",
      "gossip": "103.106.59.243:8001",
      "pubkey": "DJDssZy7Mcd96XeActEHptgMrRtmAcVNb3ogMDoLS4LM",
      "pubsub": null,
      "tpuQuic": "103.106.59.243:8003",
      "tpuVote": "103.106.59.243:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "103.106.59.243:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.106.59.243:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.198:8000",
      "gossip": "198.13.134.198:8001",
      "pubkey": "7yUujvp16Es4uTjsuHnRHLtuXTqwDWtVQpgYmyqvjsTM",
      "pubsub": null,
      "tpuQuic": "198.13.134.198:8002",
      "tpuVote": "198.13.134.198:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "198.13.134.198:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.198:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.17:8002",
      "gossip": "64.130.58.17:8001",
      "pubkey": "H5AsanQHPYjmuXGKgfrsre4mtEV9ZTE7Jj1rQRrHvZer",
      "pubsub": null,
      "tpuQuic": "64.130.58.17:8010",
      "tpuVote": "64.130.58.17:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "64.130.58.17:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.17:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.72:8002",
      "gossip": "64.130.42.72:8001",
      "pubkey": "4f97ayxHvUJn1FaUBHASzvYhPB7nS7n4EzXKt2QVNVq9",
      "pubsub": null,
      "tpuQuic": "64.130.42.72:8003",
      "tpuVote": "64.130.42.72:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.42.72:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.72:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.29:8002",
      "gossip": "64.130.44.29:8001",
      "pubkey": "BRFTTpbXLuxJqz5x3GyCDLFcLP7mv3Mvti271DQsAtAD",
      "pubsub": null,
      "tpuQuic": "64.130.44.29:8003",
      "tpuVote": "64.130.44.29:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.29:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.29:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.155:8001",
      "gossip": "64.130.50.155:8000",
      "pubkey": "7qZbLuLp7Wa5sjogZvxVpQTHJjxPubfg2Ywj8ZLAb1yb",
      "pubsub": null,
      "tpuQuic": "64.130.50.155:8002",
      "tpuVote": "64.130.50.155:8004",
      "version": "4.1.0-rc.1",
      "clientId": "HarmonicAgave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.50.155:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.155:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.54.174:8002",
      "gossip": "67.209.54.174:8001",
      "pubkey": "2DPgz3BUhxA5toGYEwm92EL7BHr4AosjjC4nLosv26Qa",
      "pubsub": null,
      "tpuQuic": "67.209.54.174:8003",
      "tpuVote": "67.209.54.174:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.209.54.174:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.54.174:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.11:8002",
      "gossip": "45.154.33.11:8001",
      "pubkey": "2sSGQXXfG6Q6guvsiLERfuEXvFkmhBfZRTNVyGkTjT8k",
      "pubsub": null,
      "tpuQuic": "45.154.33.11:8003",
      "tpuVote": "45.154.33.11:8005",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "45.154.33.11:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.11:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.204.108.100:8001",
      "gossip": "15.204.108.100:8000",
      "pubkey": "ETMry5Sed6V7zYsYzoqBcaByn3RR1Tj6ycnfxfwiLUio",
      "pubsub": null,
      "tpuQuic": "15.204.108.100:8002",
      "tpuVote": "15.204.108.100:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "15.204.108.100:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.108.100:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.142.181:8002",
      "gossip": "74.118.142.181:8001",
      "pubkey": "FvPxufQ5cL3ut2zb1uFPvKJyreves6qvNN5PvqwoKokK",
      "pubsub": null,
      "tpuQuic": "74.118.142.181:8010",
      "tpuVote": "74.118.142.181:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "74.118.142.181:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.142.181:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "18.185.200.19:8001",
      "gossip": "18.185.200.19:8000",
      "pubkey": "BWEN3PvexttzsUuFWBD1Fy9BLmewFhdpaS2WcMaHipQa",
      "pubsub": null,
      "tpuQuic": "18.185.200.19:8002",
      "tpuVote": "18.185.200.19:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "18.185.200.19:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "18.185.200.19:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.188:8888",
      "gossip": "198.13.136.220:8000",
      "pubkey": "73o76XL6cw9SgqEEcJQdBv2JGk4RQ8vLYB8cee3Luxcs",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.148:8002",
      "gossip": "208.91.110.148:8001",
      "pubkey": "ESu3mvaag4NWoBC8poTFjb3Pip9sHoBVijNJcfsvrQGS",
      "pubsub": null,
      "tpuQuic": "208.91.110.148:8003",
      "tpuVote": "208.91.110.148:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.148:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.148:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "34.58.167.52:8000",
      "gossip": "34.58.167.52:8001",
      "pubkey": "2npYpAQcNWcZo85eB43DnSMyeeVCiks7g65YaWVKp8TX",
      "pubsub": null,
      "tpuQuic": "34.58.167.52:8009",
      "tpuVote": "34.58.167.52:8005",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "34.58.167.52:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "34.58.167.52:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.183:8001",
      "gossip": "64.130.42.183:8000",
      "pubkey": "3fRJ1Q9Ab2bEksFKcHPSDgQBtKmxbKCWp3pEqbnYUS86",
      "pubsub": null,
      "tpuQuic": "64.130.42.183:8002",
      "tpuVote": "64.130.42.183:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.42.183:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.183:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.42.231.229:8001",
      "gossip": "89.42.231.229:8000",
      "pubkey": "ETEfye2iPmRc5CWhoMsU7VaXJV6y6VtiXKDfSeuR2FYB",
      "pubsub": null,
      "tpuQuic": "89.42.231.229:8002",
      "tpuVote": "89.42.231.229:8004",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "89.42.231.229:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.42.231.229:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "146.19.172.18:7733",
      "gossip": "146.19.172.18:8001",
      "pubkey": "2jJUwM7vdHuPvhjNye8GUSG3tzFYFRKSBQ7NoHyECSAU",
      "pubsub": null,
      "tpuQuic": "146.19.172.18:9007",
      "tpuVote": "146.19.172.18:9001",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 1429815730,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.19.172.18:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.142:8003",
      "gossip": "64.130.42.142:8001",
      "pubkey": "GhvaW5D4axqgfi62yGCyJ1yGAAXj9RRLfGjXX1auFzas",
      "pubsub": null,
      "tpuQuic": "64.130.42.142:9007",
      "tpuVote": "64.130.42.142:9001",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 1429815730,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.142:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.94.3.13:25001",
      "gossip": "141.94.3.13:25000",
      "pubkey": "EX1oqSeieN1m62WqAAiVXAZRd54HH7DrzCWfXfVPw2SP",
      "pubsub": null,
      "tpuQuic": "141.94.3.13:25002",
      "tpuVote": "141.94.3.13:25004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "141.94.3.13:25009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.94.3.13:25003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.196:8002",
      "gossip": "64.130.52.196:8001",
      "pubkey": "C3joRVhFzuxuUPy9KUtqu1mxLwfofhpMerKTgMdzQHf5",
      "pubsub": null,
      "tpuQuic": "64.130.52.196:8003",
      "tpuVote": "64.130.52.196:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.196:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.196:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.231.10:8000",
      "gossip": "208.115.231.10:8801",
      "pubkey": "7815LwmzjzL3X28S5ruv5BFGE1bRqSeKnaVtfbpA96Ur",
      "pubsub": null,
      "tpuQuic": "208.115.231.10:8001",
      "tpuVote": "208.115.231.10:8003",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "208.115.231.10:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.231.10:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "183.81.168.185:8000",
      "gossip": "183.81.168.185:8001",
      "pubkey": "HM8nqX2TpLuJtRNUJjoHMJ7EGmVyHSj2xExixGiSnwWK",
      "pubsub": null,
      "tpuQuic": "183.81.168.185:8002",
      "tpuVote": "183.81.168.185:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "183.81.168.185:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "183.81.168.185:8003"
    },
    {
      "rpc": "188.243.18.202:8899",
      "tpu": null,
      "tvu": "188.243.18.202:8001",
      "gossip": "188.243.18.202:8000",
      "pubkey": "BdcYVQWwFvLkSbB2ZNYqG5HK47P8K1uxevVvqX7WgDcw",
      "pubsub": "188.243.18.202:8900",
      "tpuQuic": "188.243.18.202:8002",
      "tpuVote": "188.243.18.202:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "188.243.18.202:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "188.243.18.202:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.214.77:8001",
      "gossip": "2.57.214.77:8000",
      "pubkey": "CvEeKZz6jP3c3LJAozgYEQGTLpuVVC3mEVGsw7wCXFGC",
      "pubsub": null,
      "tpuQuic": "2.57.214.77:8002",
      "tpuVote": "2.57.214.77:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "2.57.214.77:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "2.57.214.77:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.35.92.254:18001",
      "gossip": "89.35.92.254:18000",
      "pubkey": "BjiGCB7nxg7FCdzLa6nuRuUS4qPm2nvSXWRAtGFYcFPM",
      "pubsub": null,
      "tpuQuic": "89.35.92.254:18002",
      "tpuVote": "89.35.92.254:18004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "89.35.92.254:18009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.35.92.254:18003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.113.145:8001",
      "gossip": "67.213.113.145:8000",
      "pubkey": "BM5kVzUU4qkdwZRbrXePZ8AarJhgbMcHtCkvq9uEA5ji",
      "pubsub": null,
      "tpuQuic": "67.213.113.145:8009",
      "tpuVote": "67.213.113.145:8005",
      "version": "3.1.11",
      "clientId": "Agave",
      "featureSet": 4140108451,
      "serveRepair": "67.213.113.145:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.113.145:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.46.84.53:8001",
      "gossip": "72.46.84.53:8000",
      "pubkey": "7MRMfhgNyU1X6CFFYSPdoAa7AnTFF1RHmwz6mD4TeFzF",
      "pubsub": null,
      "tpuQuic": "72.46.84.53:8002",
      "tpuVote": "72.46.84.53:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "72.46.84.53:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.46.84.53:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.87.237:8001",
      "gossip": "57.129.87.237:8000",
      "pubkey": "AaAPRcS69VwaK64omaovjCPHLQ5qzsB6qPyaWBTABNQJ",
      "pubsub": null,
      "tpuQuic": "57.129.87.237:8002",
      "tpuVote": "57.129.87.237:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "57.129.87.237:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.87.237:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.65:8002",
      "gossip": "51.89.15.49:8001",
      "pubkey": "2gJ5Wj3HXgvjSrSWN9w8c9AJFxsvqJqqH5co3UT4Sv8Y",
      "pubsub": null,
      "tpuQuic": "51.89.15.49:8003",
      "tpuVote": "51.89.15.49:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.15.49:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.15.49:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.14:8002",
      "gossip": "84.32.103.14:8001",
      "pubkey": "9JBFg43nmMZLxL6hhx52nyhru4JqgWogp5rtNLmcxkZz",
      "pubsub": null,
      "tpuQuic": "84.32.103.14:8003",
      "tpuVote": "84.32.103.14:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "84.32.103.14:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.14:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.201:8002",
      "gossip": "64.130.42.201:8001",
      "pubkey": "GgSVs3f5BUEHzjLWtFt51imoyQqTVMqCm1dLECGVFbhu",
      "pubsub": null,
      "tpuQuic": "64.130.42.201:8010",
      "tpuVote": "64.130.42.201:8006",
      "version": "3.1.14",
      "clientId": "JitoLabs",
      "featureSet": 534737035,
      "serveRepair": "64.130.42.201:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.201:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.254:8002",
      "gossip": "64.130.33.254:8001",
      "pubkey": "RoryPpbo6f9tYF4e8Y9twGBwkDCpjQXYsnWGYj5cTE2",
      "pubsub": null,
      "tpuQuic": "64.130.33.254:8003",
      "tpuVote": "64.130.33.254:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "64.130.33.254:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.254:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "62.197.45.101:8700",
      "pubkey": "31zRXVPoRWhurxiXZqNEPjMitDPXXkPv1Q3MusZACcM8",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "3.0.11",
      "clientId": "JitoLabs",
      "featureSet": 3604001754,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "216.18.204.162:8899",
      "tpu": null,
      "tvu": "216.18.204.162:8001",
      "gossip": "216.18.204.162:8000",
      "pubkey": "36EFgwM2GZshpBHLuZDVZkqkT1V6wjS5bE5rP7fWKHz8",
      "pubsub": "216.18.204.162:8900",
      "tpuQuic": "216.18.204.162:8002",
      "tpuVote": "216.18.204.162:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.18.204.162:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.18.204.162:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.119.95:8002",
      "gossip": "67.213.119.95:8001",
      "pubkey": "4ELyKNZ5k6udAxaZCkZNWV6G22dpPrtf5PF7y3eWVV5s",
      "pubsub": null,
      "tpuQuic": "67.213.119.95:8003",
      "tpuVote": "67.213.119.95:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "67.213.119.95:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.119.95:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.89.221:8003",
      "gossip": "64.34.89.221:8001",
      "pubkey": "7Pb9BpVPF8FGhh65mBibvAXLs3JycPtzDyyrA69w5ETB",
      "pubsub": null,
      "tpuQuic": "64.34.89.221:9007",
      "tpuVote": "64.34.89.221:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.34.89.221:10508",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.89.221:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.166.143.79:8000",
      "gossip": "46.166.143.79:8001",
      "pubkey": "E7Qmhwqq8V4VBN58ScCDoW3hoH4M8PfcXFnDYuFPsuLg",
      "pubsub": null,
      "tpuQuic": "46.166.143.79:8002",
      "tpuVote": "46.166.143.79:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "46.166.143.79:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "46.166.143.79:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.218:8001",
      "gossip": "64.130.43.218:8000",
      "pubkey": "AbRu32vaqVTvXUTLXV4iLp4bieGsiJ8hTeX3jGJbjd5b",
      "pubsub": null,
      "tpuQuic": "64.130.43.218:8002",
      "tpuVote": "64.130.43.218:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.218:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.218:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.111:8002",
      "gossip": "51.195.26.47:8001",
      "pubkey": "6NHtm8XzbwLmg9tdVRNwidWpqpGXwQph14ayEexbZLCx",
      "pubsub": null,
      "tpuQuic": "51.195.26.47:8003",
      "tpuVote": "51.195.26.47:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.195.26.47:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.195.26.47:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "66.248.205.24:8001",
      "gossip": "66.248.205.24:8000",
      "pubkey": "6J2yA2GCqvp4NSxxaQdGrER6cYdok4psQNt9bxZVnJLU",
      "pubsub": null,
      "tpuQuic": "66.248.205.24:8002",
      "tpuVote": "66.248.205.24:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "66.248.205.24:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "66.248.205.24:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.186.69:8001",
      "gossip": "70.40.186.69:8000",
      "pubkey": "5nyfaKMYqSGRv2Td4veY5dN7sfRXd7XV4N7nj4gzSYm5",
      "pubsub": null,
      "tpuQuic": "70.40.186.69:8002",
      "tpuVote": "70.40.186.69:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "70.40.186.69:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.186.69:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.95:8002",
      "gossip": "51.222.162.201:8001",
      "pubkey": "7KTtvNi1XNDrdxELTQS3G1SZ8W7vDRMtemS5v8x7juDk",
      "pubsub": null,
      "tpuQuic": "51.222.162.201:8003",
      "tpuVote": "51.222.162.201:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.201:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.201:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.36.169:8000",
      "gossip": "64.130.36.169:8001",
      "pubkey": "6yZCtEdRqrh6hFycDf2mKKbP3FEdLDdUiMrFUwqEfQXG",
      "pubsub": null,
      "tpuQuic": "64.130.36.169:8002",
      "tpuVote": "64.130.36.169:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.36.169:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.36.169:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.62.35:8002",
      "gossip": "64.130.62.35:8001",
      "pubkey": "9pZ1QB7b2CBfnbfzHLiAVE8T1hPLRYdwg9Vy9M7q88Zz",
      "pubsub": null,
      "tpuQuic": "64.130.62.35:8003",
      "tpuVote": "64.130.62.35:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.62.35:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.62.35:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.138.146:8002",
      "gossip": "198.13.138.146:8001",
      "pubkey": "Gv4UCzpxZFCqaYLEk8dCVdggvJbk9wK1YrXRMQMURwJP",
      "pubsub": null,
      "tpuQuic": "198.13.138.146:8003",
      "tpuVote": "198.13.138.146:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.138.146:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.138.146:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.46.85.67:8001",
      "gossip": "72.46.85.67:8000",
      "pubkey": "ptzHCPfzwEooSUotNAseqn1gLiVBCQzW7EtR9oahZMc",
      "pubsub": null,
      "tpuQuic": "72.46.85.67:8002",
      "tpuVote": "72.46.85.67:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "72.46.85.67:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.46.85.67:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.170:8000",
      "gossip": "64.130.47.170:8001",
      "pubkey": "EFoxLuU6f5REJVvYDEhSjUSkc6rGMEW9kLi9mc7kX9SV",
      "pubsub": null,
      "tpuQuic": "64.130.47.170:8002",
      "tpuVote": "64.130.47.170:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.47.170:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.170:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.132.19:8001",
      "gossip": "198.13.132.19:8000",
      "pubkey": "9UEoc98Zm3Q9bBaVacwSjFCgrMTHxeSZpgUBtcKPWRZ3",
      "pubsub": null,
      "tpuQuic": "198.13.132.19:8002",
      "tpuVote": "198.13.132.19:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.132.19:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.132.19:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "132.226.5.101:8001",
      "pubkey": "CDc3KB5SMkcH4qxo7V7S4Q1UQ5TYdgabR7zZHmSXjWi6",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.227.118:8002",
      "gossip": "74.63.227.118:8001",
      "pubkey": "8b9gQYHcZcuG7d2rJoZAsMfY84jczFxUQ9ooUdjfo63g",
      "pubsub": null,
      "tpuQuic": "74.63.227.118:8003",
      "tpuVote": "74.63.227.118:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.227.118:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.227.118:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.137:8001",
      "gossip": "64.130.52.137:8000",
      "pubkey": "HcFror7dgqg5XbdQfcqAa7fYcoKRsJ8CntkoCrNTALrZ",
      "pubsub": null,
      "tpuQuic": "64.130.52.137:8002",
      "tpuVote": "64.130.52.137:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.137:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.137:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.33:8001",
      "gossip": "84.32.103.33:8000",
      "pubkey": "2tu3HkNxaD9EBR3SfM5q6GQTrhw98RFhnQjGyqdWGwke",
      "pubsub": null,
      "tpuQuic": "84.32.103.33:8002",
      "tpuVote": "84.32.103.33:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "84.32.103.33:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.33:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.61:8002",
      "gossip": "64.130.54.61:8001",
      "pubkey": "bhLz7cRcWWsaNPc6EtPsvQVBDConzimCuekE2xrYenu",
      "pubsub": null,
      "tpuQuic": "64.130.54.61:8010",
      "tpuVote": "64.130.54.61:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "64.130.54.61:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.61:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.78:8002",
      "gossip": "64.130.51.78:8001",
      "pubkey": "8XBdeh92ovJ5pPhLygQdxWWY9CAvLSqNa4KqVLoA1gGC",
      "pubsub": null,
      "tpuQuic": "64.130.51.78:8003",
      "tpuVote": "64.130.51.78:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.78:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.78:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.253:8001",
      "gossip": "45.152.160.253:8000",
      "pubkey": "2nBoUrkdwLbkzVQYXyTDFhtKy5gf1rzmSjaQh7Kt9UHQ",
      "pubsub": null,
      "tpuQuic": "45.152.160.253:8002",
      "tpuVote": "45.152.160.253:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "45.152.160.253:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.253:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.119:8002",
      "gossip": "64.130.63.119:8001",
      "pubkey": "mcs3TkGVfuB9XaMyYsKAhVmusoRy7N2jc3rEBCanVYN",
      "pubsub": null,
      "tpuQuic": "64.130.63.119:8003",
      "tpuVote": "64.130.63.119:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.119:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.119:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "173.231.57.154:8001",
      "gossip": "173.231.57.154:8000",
      "pubkey": "416yNs1Ecdo8rMjJXDj7zZYLjxFWdWEXUpvpdzy6nScY",
      "pubsub": null,
      "tpuQuic": "173.231.57.154:8002",
      "tpuVote": "173.231.57.154:8004",
      "version": "4.0.0-rc.0",
      "clientId": "JitoLabs",
      "featureSet": 767961353,
      "serveRepair": "173.231.57.154:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "173.231.57.154:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "78.159.127.198:8001",
      "gossip": "78.159.127.198:8000",
      "pubkey": "DPxPcn8e5djXFYjThRKi6ktow9d2Ak3E9wSWjkLcZ6do",
      "pubsub": null,
      "tpuQuic": "78.159.127.198:8002",
      "tpuVote": "78.159.127.198:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "78.159.127.198:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "78.159.127.198:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.32:8002",
      "gossip": "64.130.43.32:8001",
      "pubkey": "A2d2LZx8ErQh5UF7dVBEQJdWNxo5riw3pz36AD8JfZgc",
      "pubsub": null,
      "tpuQuic": "64.130.43.32:8003",
      "tpuVote": "64.130.43.32:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.32:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.32:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.99.99:8000",
      "gossip": "109.94.99.99:8001",
      "pubkey": "ENoB7pSGXnUpKyQz1Ltmja5DMV1CFnBNco1sgvvoeSV",
      "pubsub": null,
      "tpuQuic": "109.94.99.99:8002",
      "tpuVote": "109.94.99.99:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.94.99.99:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.99.99:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "195.231.30.71:8001",
      "gossip": "195.231.30.71:8000",
      "pubkey": "GxxXXKqA3gCodmbx5LyeHcZn4AcrVrgutLa4uZ68e6KY",
      "pubsub": null,
      "tpuQuic": "195.231.30.71:8002",
      "tpuVote": "195.231.30.71:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "195.231.30.71:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "195.231.30.71:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.107.20:8002",
      "gossip": "208.91.107.20:8001",
      "pubkey": "BePU2be6uUfBV2tLTG3SgW28NitAYGR9pw4AEEGC8Nhs",
      "pubsub": null,
      "tpuQuic": "208.91.107.20:8010",
      "tpuVote": "208.91.107.20:8006",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "208.91.107.20:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.107.20:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "37.27.227.59:8002",
      "gossip": "37.27.227.59:8001",
      "pubkey": "9Cqh3HbBw1xyS2A8W46EFASZsB1DwB8wstpopmdqk75a",
      "pubsub": null,
      "tpuQuic": "37.27.227.59:8003",
      "tpuVote": "37.27.227.59:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "37.27.227.59:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "37.27.227.59:8004"
    },
    {
      "rpc": "195.14.6.39:8899",
      "tpu": null,
      "tvu": "195.14.6.39:8002",
      "gossip": "195.14.6.39:8001",
      "pubkey": "FuwZDxMo4HowfxdNeYCSEf3cdyRZbfWjJaox8DBCRXMX",
      "pubsub": "195.14.6.39:8900",
      "tpuQuic": "195.14.6.39:8003",
      "tpuVote": "195.14.6.39:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "195.14.6.39:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "195.14.6.39:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.73:8002",
      "gossip": "64.130.58.73:8001",
      "pubkey": "52t8rFWWts8sVEmY4swyBKoQQdSZHVLDf31KLz94UT2V",
      "pubsub": null,
      "tpuQuic": "64.130.58.73:8003",
      "tpuVote": "64.130.58.73:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.58.73:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.73:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "148.72.141.233:8001",
      "gossip": "148.72.141.233:8000",
      "pubkey": "Xand1BDTThFRgW6UJYqWmVJa31Xsb5JQ4qP45RJigXW",
      "pubsub": null,
      "tpuQuic": "148.72.141.233:8002",
      "tpuVote": "148.72.141.233:8004",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "148.72.141.233:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "148.72.141.233:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.36.166:8001",
      "gossip": "64.130.36.166:8000",
      "pubkey": "Hc9BWtzhYgbARcwKhuA7YtZESD3u3DC9k8akeBTtk2xR",
      "pubsub": null,
      "tpuQuic": "64.130.36.166:8002",
      "tpuVote": "64.130.36.166:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.36.166:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.36.166:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.96.27:8003",
      "gossip": "109.94.96.27:8001",
      "pubkey": "3crTTp8W8mmfvr8GySBczQCf7yVhJYv1cuPrWkQ4ywLt",
      "pubsub": null,
      "tpuQuic": "109.94.96.27:9007",
      "tpuVote": "109.94.96.27:9001",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 1674174145,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.96.27:9007"
    },
    {
      "rpc": "67.213.123.19:8899",
      "tpu": null,
      "tvu": "67.213.123.19:8001",
      "gossip": "67.213.123.19:8000",
      "pubkey": "E1XrKYsmffExef8odUmPX85ZxSG9Y376CME6w8M2eXcv",
      "pubsub": "67.213.123.19:8900",
      "tpuQuic": "67.213.123.19:8002",
      "tpuVote": "67.213.123.19:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.213.123.19:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.123.19:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.49:8001",
      "gossip": "64.130.44.49:8000",
      "pubkey": "CwSsbkufNWqYTYnUVd3bexNNQWQPupGNb4mLperTDsnD",
      "pubsub": null,
      "tpuQuic": "64.130.44.49:8002",
      "tpuVote": "64.130.44.49:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.49:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.49:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "148.113.199.40:8021",
      "gossip": "148.113.199.40:8001",
      "pubkey": "J5URvJ9g1m7fBRLsWzb6bk8xg1jsBJ1bm3WTnCCMU8AB",
      "pubsub": null,
      "tpuQuic": "148.113.199.40:8022",
      "tpuVote": "148.113.199.40:8024",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "148.113.199.40:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "148.113.199.40:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.45.99:8001",
      "gossip": "64.130.45.99:8000",
      "pubkey": "Eatjc2bamWSLcZvGXuHZDpUVS4K1SVb1zdAzJQ16QLwh",
      "pubsub": null,
      "tpuQuic": "64.130.45.99:8002",
      "tpuVote": "64.130.45.99:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.45.99:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.45.99:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.38:8002",
      "gossip": "64.130.59.38:8001",
      "pubkey": "7EgvxSmpbwiRroMmkEYVHNS49RgokDThL9ysSTq45sGS",
      "pubsub": null,
      "tpuQuic": "64.130.59.38:8003",
      "tpuVote": "64.130.59.38:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.38:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.38:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.132.103:8001",
      "gossip": "45.139.132.103:8000",
      "pubkey": "7u5C9MqWpMfQZNdh1PTGqxKXA4Jooo65k1kuKwVxGDqx",
      "pubsub": null,
      "tpuQuic": "45.139.132.103:8009",
      "tpuVote": "45.139.132.103:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.139.132.103:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.139.132.103:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.96.253:8001",
      "gossip": "109.94.96.253:8000",
      "pubkey": "H2EHXu1vr9avdYUpgLCAryzioCmeYnQQbJKQUAqTf4hT",
      "pubsub": null,
      "tpuQuic": "109.94.96.253:8002",
      "tpuVote": "109.94.96.253:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.94.96.253:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.96.253:8003"
    },
    {
      "rpc": "45.45.156.250:8899",
      "tpu": null,
      "tvu": "45.45.156.250:8002",
      "gossip": "45.45.156.250:8001",
      "pubkey": "FLVgaCPvSGFguumN9ao188izB4K4rxSWzkHneQMtkwQJ",
      "pubsub": "45.45.156.250:8900",
      "tpuQuic": "64.130.53.11:5010",
      "tpuVote": "45.45.156.250:8005",
      "version": "4.0.0",
      "clientId": "AgaveBam",
      "featureSet": 3718597879,
      "serveRepair": "45.45.156.250:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.11:5011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.189.44.202:8002",
      "gossip": "185.189.44.202:8001",
      "pubkey": "9THdeSydLUzFEaKqcMJunwa3sQDTtE7WDUz6iMjcsVZU",
      "pubsub": null,
      "tpuQuic": "185.189.44.202:8010",
      "tpuVote": "185.189.44.202:8006",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "185.189.44.202:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.189.44.202:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.84.175:8000",
      "gossip": "85.195.84.175:8001",
      "pubkey": "ygkfg929meYR4WGW6msiEiKHSP29nWwvZWVJ8tyENXC",
      "pubsub": null,
      "tpuQuic": "85.195.84.175:8002",
      "tpuVote": "85.195.84.175:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "85.195.84.175:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.84.175:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.118.48:9100",
      "gossip": "185.191.118.48:8001",
      "pubkey": "3TLeQjAbVsYf49SfFivQSaLJYiXYB9QUr8womdUqaoz1",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": "185.191.118.48:9103",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "185.191.118.48:9108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.113:8001",
      "gossip": "67.213.121.113:8000",
      "pubkey": "9gvrYPxovyangGaRVV2uoppgVq5JAasXg8m3KLPBSdMd",
      "pubsub": null,
      "tpuQuic": "67.213.121.113:8002",
      "tpuVote": "67.213.121.113:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.121.113:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.113:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.225.149:8002",
      "gossip": "74.63.225.149:8001",
      "pubkey": "FQ93LQUyraVmWmJepCdyYHCwJhaGzG9pZ1vi7NJsHhPs",
      "pubsub": null,
      "tpuQuic": "74.63.225.149:8003",
      "tpuVote": "74.63.225.149:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.225.149:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.225.149:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.218:8002",
      "gossip": "5.135.174.18:8001",
      "pubkey": "FyYejmV9X3jGESQ2dZG9sWDvJ8hFenx9e3QMKyhtjh4N",
      "pubsub": null,
      "tpuQuic": "5.135.174.18:8003",
      "tpuVote": "5.135.174.18:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.174.18:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.174.18:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.184.69:8001",
      "gossip": "70.40.184.69:8000",
      "pubkey": "DeK4Jz1L8Mh4ds7VZEANDa59gG4CrxdaX1JewxKSYWto",
      "pubsub": null,
      "tpuQuic": "70.40.184.69:8002",
      "tpuVote": "70.40.184.69:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "70.40.184.69:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.184.69:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.146.160.2:10002",
      "gossip": "45.146.160.2:8001",
      "pubkey": "9unW61yw1ZSyGq57BEHuiSKzfC7qKFkV4ZBa6LXRGNzV",
      "pubsub": null,
      "tpuQuic": "45.146.160.2:10010",
      "tpuVote": "45.146.160.2:10006",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "45.146.160.2:10013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.146.160.2:10011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.122.207.110:8001",
      "gossip": "109.122.207.110:8000",
      "pubkey": "EzzMj5mz88R7cKoxRia7HNpN3qUT1P7AVgc5tefareth",
      "pubsub": null,
      "tpuQuic": "109.122.207.110:8002",
      "tpuVote": "109.122.207.110:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.122.207.110:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.122.207.110:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.20:8003",
      "gossip": "64.130.37.20:8001",
      "pubkey": "7SaX3gyJUcHFw5F6vtT2MqE6ANzLehg25Ce5Kq37Q4xY",
      "pubsub": null,
      "tpuQuic": "64.130.37.20:9007",
      "tpuVote": "64.130.37.20:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.20:8107",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.20:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.55:8002",
      "gossip": "198.13.134.55:8001",
      "pubkey": "5DJSdgCYryMdJxbwFDpJuW8zn8bdHxyyTyzBSaQH8yKP",
      "pubsub": null,
      "tpuQuic": "198.13.134.55:8003",
      "tpuVote": "198.13.134.55:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.55:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.55:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.50:8001",
      "gossip": "198.13.130.50:8000",
      "pubkey": "1NTp1rYyMf7MQnNPjMwcgDZgTDx2Pv4BWHCFjTYxcof",
      "pubsub": null,
      "tpuQuic": "198.13.130.50:8002",
      "tpuVote": "198.13.130.50:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.130.50:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.50:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.240:8000",
      "gossip": "64.130.37.240:8001",
      "pubkey": "9E3jS6Xry3XC9nAU94V4CNHa1RgAoWa9sAEtUMDTUV4w",
      "pubsub": null,
      "tpuQuic": "64.130.37.240:8002",
      "tpuVote": "64.130.37.240:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.240:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.240:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.9:8002",
      "gossip": "208.91.110.9:8001",
      "pubkey": "RCSKaoWdCPh2JuhKqAdAMYKSCH18DvzhYEpaWTE4Fkz",
      "pubsub": null,
      "tpuQuic": "208.91.110.9:8003",
      "tpuVote": "208.91.110.9:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.9:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.9:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.162.39:8000",
      "pubkey": "Ds2xAzPn8ySmseSuY52oWC7LBw31FEBvcNw8x7Ucda1q",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.141.219:8001",
      "gossip": "104.204.141.219:8000",
      "pubkey": "24tL57pJsNqsdA29c7DQsFsxWRK79RVUXNcwt5LcLYW2",
      "pubsub": null,
      "tpuQuic": "104.204.141.219:8002",
      "tpuVote": "104.204.141.219:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "104.204.141.219:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.141.219:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.88.18.106:18002",
      "gossip": "23.88.18.106:18001",
      "pubkey": "AqKUPUXwTJtVyknCQaaWgvvF6eq4RrG8Za34XBnM8Ffg",
      "pubsub": null,
      "tpuQuic": "23.88.18.106:18003",
      "tpuVote": "23.88.18.106:18005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "23.88.18.106:18010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.88.18.106:18004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.141.203:8001",
      "gossip": "104.204.141.203:8000",
      "pubkey": "6JLZRBnPwjRqrs6bgujmwLXx2DnT6UQHKeaMvj6iiU6j",
      "pubsub": null,
      "tpuQuic": "104.204.141.203:8002",
      "tpuVote": "104.204.141.203:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "104.204.141.203:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.141.203:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.207.214.233:8001",
      "gossip": "84.207.214.233:8000",
      "pubkey": "H6VNyYJgnSELVFK81KfgiWWDPYNEJHBgpdnmaScoUQHb",
      "pubsub": null,
      "tpuQuic": "84.207.214.233:8009",
      "tpuVote": "84.207.214.233:8005",
      "version": "3.1.8",
      "clientId": "AgaveBam",
      "featureSet": 1620780344,
      "serveRepair": "84.207.214.233:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.207.214.233:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.187.35.42:8001",
      "gossip": "5.187.35.42:8000",
      "pubkey": "2nCMYSwFM5TsWhooJDsYjv25wQmMuPag221fnURwSnRQ",
      "pubsub": null,
      "tpuQuic": "5.187.35.42:8002",
      "tpuVote": "5.187.35.42:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "5.187.35.42:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.187.35.42:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.94:8002",
      "gossip": "51.89.25.70:8001",
      "pubkey": "Cs1afR38EdJUq7UCe3NegGTta1q5DwEWf6TKr3rpbQxR",
      "pubsub": null,
      "tpuQuic": "51.89.25.70:8003",
      "tpuVote": "51.89.25.70:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.70:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.70:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.167:8002",
      "gossip": "64.130.37.167:8001",
      "pubkey": "8r5ZZpELGH8aetrPqjxpKJYiQA5RQjKTUi96qAaj4444",
      "pubsub": null,
      "tpuQuic": "64.130.37.167:8003",
      "tpuVote": "64.130.37.167:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.167:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.167:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.77.64.138:8001",
      "gossip": "45.77.64.138:8000",
      "pubkey": "GvTwyQnoYLCV2qANCyVYyKEzZ6Q9FzZwfmNCMSZn7xbb",
      "pubsub": null,
      "tpuQuic": "45.77.64.138:8002",
      "tpuVote": "45.77.64.138:8004",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "45.77.64.138:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.77.64.138:8003"
    },
    {
      "rpc": "85.195.124.221:8899",
      "tpu": null,
      "tvu": "85.195.124.221:8900",
      "gossip": "85.195.124.221:8001",
      "pubkey": "Hsvo1wzKVUpucHm2z749ZpMA6K4FSpaKPmoG7uEQgw2S",
      "pubsub": "85.195.124.221:8900",
      "tpuQuic": "85.195.124.221:8901",
      "tpuVote": "85.195.124.221:8903",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "85.195.124.221:8907",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.124.221:8902"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "161.118.202.7:8001",
      "pubkey": "41FQLVzVgdwdQahJWQ7An18oa8jtX57muiZ21CDex147",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "137.239.202.126:8003",
      "gossip": "137.239.202.126:8001",
      "pubkey": "287bYc66c9CBkw3hER41Mkd3uJi2s5fhdGCiN57oJnFt",
      "pubsub": null,
      "tpuQuic": "137.239.202.126:8037",
      "tpuVote": "137.239.202.126:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "137.239.202.126:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "137.239.202.126:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "142.132.156.31:8000",
      "pubkey": "6THzFCxKmmqvjh3HgZD252umvfgRWyswvoZmSea8fTiW",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.1",
      "clientId": "Agave",
      "featureSet": 3294202862,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.48.82:8002",
      "gossip": "64.31.48.82:8001",
      "pubkey": "Docc9Hy2AeR2WbhNVkoNU3yPPAqRtTaMgASBaTF6kEqs",
      "pubsub": null,
      "tpuQuic": "64.31.48.82:8003",
      "tpuVote": "64.31.48.82:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.48.82:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.48.82:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.21.130.72:11202",
      "gossip": "185.21.130.72:11201",
      "pubkey": "84d71jKFRunLRFSufBrVCe8NK6GdRpGXWKwUkhNAGdDx",
      "pubsub": null,
      "tpuQuic": "185.21.130.72:11203",
      "tpuVote": "185.21.130.72:11205",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.21.130.72:11210",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.21.130.72:11204"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "150.109.204.195:8000",
      "gossip": "150.109.204.195:9000",
      "pubkey": "4Ut3F1koyLUUjjavw2BFGtbs7CLMcyCnUbgf5FZdZT9J",
      "pubsub": null,
      "tpuQuic": "150.109.204.195:8001",
      "tpuVote": "150.109.204.195:8003",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "150.109.204.195:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "150.109.204.195:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.193.238:8000",
      "gossip": "208.115.193.238:8801",
      "pubkey": "FrK9zz4Vz27U27Qo5G2ZtjxS3k74s39SAAy8Pv284ak9",
      "pubsub": null,
      "tpuQuic": "208.115.193.238:8001",
      "tpuVote": "208.115.193.238:8003",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "208.115.193.238:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.193.238:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.54.227:8002",
      "gossip": "67.209.54.227:8001",
      "pubkey": "45VwwbqMHXvAA24HeokhcmmQGdk4j2ngEDNS6f34sYSE",
      "pubsub": null,
      "tpuQuic": "67.209.54.227:8003",
      "tpuVote": "67.209.54.227:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.209.54.227:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.54.227:8004"
    },
    {
      "rpc": "160.202.131.101:8899",
      "tpu": null,
      "tvu": "160.202.131.101:8001",
      "gossip": "160.202.131.101:8000",
      "pubkey": "3ULFA9D7kbXCnMusAXaFVjHUi5Na9Gxy8C2v7KERMmVm",
      "pubsub": "160.202.131.101:8900",
      "tpuQuic": "160.202.131.101:8002",
      "tpuVote": "160.202.131.101:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "160.202.131.101:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "160.202.131.101:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.71:8002",
      "gossip": "51.89.17.31:8001",
      "pubkey": "A5xvt4SLohczatm2KL7sLNr6gw27oAuwGF7gzdo14UEt",
      "pubsub": null,
      "tpuQuic": "51.89.17.31:8003",
      "tpuVote": "51.89.17.31:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.17.31:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.17.31:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.134:8002",
      "gossip": "64.130.59.134:8001",
      "pubkey": "BEn7DiAjWbEAi7DFFYmVDwSxcaMoF1UiACa9dWiBMJxn",
      "pubsub": null,
      "tpuQuic": "64.130.59.134:8003",
      "tpuVote": "64.130.59.134:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.134:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.134:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.190:8002",
      "gossip": "64.130.57.190:8001",
      "pubkey": "C6qLd7CneF6NVUeHn7RKrcbMcFHbSQFDgLdn9YAN8YaM",
      "pubsub": null,
      "tpuQuic": "64.130.57.190:8003",
      "tpuVote": "64.130.57.190:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.57.190:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.190:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.197.110:8001",
      "gossip": "88.216.197.110:8000",
      "pubkey": "8mHyysUkFcyZQVNtowTFUtfznPhyJqh9KuLqzY5GEAQL",
      "pubsub": null,
      "tpuQuic": "88.216.197.110:8002",
      "tpuVote": "88.216.197.110:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "88.216.197.110:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.197.110:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.101.206.245:8001",
      "gossip": "103.101.206.245:8000",
      "pubkey": "rgyWS6rvQxEnLMR1mjp8yv1dG8vWppNAK9gxxfRMbVu",
      "pubsub": null,
      "tpuQuic": "103.101.206.245:8002",
      "tpuVote": "103.101.206.245:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "103.101.206.245:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.101.206.245:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.36:8002",
      "gossip": "202.8.11.36:8001",
      "pubkey": "FN2J5BYiAou44HZggdmKaVD2YBYCWxtvSK92B8B7NX1K",
      "pubsub": null,
      "tpuQuic": "202.8.11.36:8003",
      "tpuVote": "202.8.11.36:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.36:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.36:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.130:8002",
      "gossip": "145.239.233.182:8001",
      "pubkey": "5dF29EqstQnZv4kNX7SnLDQZDkVZy4kd2caQPvqW4geR",
      "pubsub": null,
      "tpuQuic": "145.239.233.182:8003",
      "tpuVote": "145.239.233.182:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "145.239.233.182:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "145.239.233.182:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.166.162.108:8002",
      "gossip": "46.166.162.108:8001",
      "pubkey": "2Bkh1iTW9xqxiqQAV8wquR5ptG2GPJgWRszwkQf4jvqJ",
      "pubsub": null,
      "tpuQuic": "46.166.162.108:8003",
      "tpuVote": "46.166.162.108:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "46.166.162.108:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "46.166.162.108:8004"
    },
    {
      "rpc": "169.155.46.20:8895",
      "tpu": null,
      "tvu": "169.155.46.20:8002",
      "gossip": "169.155.46.20:8001",
      "pubkey": "DgRLtnbpq2kLnQneByo5TbKyvNGvxaaEEFt8TfyFXtxX",
      "pubsub": "169.155.46.20:8895",
      "tpuQuic": "169.155.46.20:8003",
      "tpuVote": "169.155.46.20:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "169.155.46.20:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "169.155.46.20:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.235.219.22:8001",
      "gossip": "15.235.219.22:8000",
      "pubkey": "7Arv5Gj56Cpjd5z5xcQ4Lmm2JW69EF9QZ2pX498UpH3o",
      "pubsub": null,
      "tpuQuic": "15.235.219.22:8002",
      "tpuVote": "15.235.219.22:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "15.235.219.22:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.235.219.22:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.123:11001",
      "gossip": "64.130.35.123:11000",
      "pubkey": "BA4Sw6KJGvbpftZtRvZzcqpTvWDo7QUmFkq2bQvCbwZD",
      "pubsub": null,
      "tpuQuic": "64.130.35.123:11002",
      "tpuVote": "64.130.35.123:11004",
      "version": "4.0.0-beta.6",
      "clientId": "Agave",
      "featureSet": 2475355604,
      "serveRepair": "64.130.35.123:11009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.35.123:11003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.130.59.78:8001",
      "pubkey": "GQqGi2XjwnjYynJHKH4aEuK9DzeXBMgTCQNH94Haa6gL",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.250.254.235:8002",
      "gossip": "45.250.254.235:8001",
      "pubkey": "8XBEysescLVySuMjfCF1vWHA4XcxmgJZp9sJ5wfRGQo2",
      "pubsub": null,
      "tpuQuic": "45.250.254.235:8003",
      "tpuVote": "45.250.254.235:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "45.250.254.235:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.250.254.235:8004"
    },
    {
      "rpc": "109.230.239.43:8899",
      "tpu": null,
      "tvu": "109.230.239.43:8001",
      "gossip": "109.230.239.43:8000",
      "pubkey": "Fi1wAnPHb8bKyJcyLjnTyGQZSzkt7NSMtABzFFP62UWE",
      "pubsub": "109.230.239.43:8900",
      "tpuQuic": "109.230.239.43:8002",
      "tpuVote": "109.230.239.43:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "109.230.239.43:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.230.239.43:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.119:8002",
      "gossip": "64.130.49.119:8001",
      "pubkey": "zc45nBJHyhs8dHqyB9srLRchzbPXVusvhsCBdjFMJ8T",
      "pubsub": null,
      "tpuQuic": "64.130.49.119:8003",
      "tpuVote": "64.130.49.119:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.49.119:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.119:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.140.79:8002",
      "gossip": "198.13.140.79:8001",
      "pubkey": "HUkH7pRmECYY2WUVTYJo7H8dbhRqQ5bdwSweJwzBbreJ",
      "pubsub": null,
      "tpuQuic": "198.13.140.79:8003",
      "tpuVote": "198.13.140.79:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.140.79:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.79:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.82:8001",
      "gossip": "64.130.54.82:8000",
      "pubkey": "X1s7JVhwyjqVqKDuoUSD64BEkMHGZTAuQpACcyjYFHH",
      "pubsub": null,
      "tpuQuic": "64.130.54.82:8002",
      "tpuVote": "64.130.54.82:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.82:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.82:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.235.163.90:8002",
      "gossip": "84.235.163.90:8001",
      "pubkey": "6SnzUBGWNb6E79csfmJZ4gtCgZrkr5oCqKr4rJCWBPTj",
      "pubsub": null,
      "tpuQuic": "84.235.163.90:8010",
      "tpuVote": "84.235.163.90:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "84.235.163.90:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.235.163.90:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.127.221:18001",
      "gossip": "67.213.127.221:18000",
      "pubkey": "3MmzqzW89ZB6tXwYWfA8DYw5TQg8ErAxipPtPN1zWQRc",
      "pubsub": null,
      "tpuQuic": "67.213.127.221:18002",
      "tpuVote": "67.213.127.221:18004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "67.213.127.221:18009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.127.221:18003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "172.241.224.141:8001",
      "gossip": "172.241.224.141:8000",
      "pubkey": "nXWsX9oEgsW89gdwv9jSRhHtWFmyL1VyVoDFE1cP8HH",
      "pubsub": null,
      "tpuQuic": "172.241.224.141:8002",
      "tpuVote": "172.241.224.141:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "172.241.224.141:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "172.241.224.141:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.85:8002",
      "gossip": "208.115.227.85:8001",
      "pubkey": "7bAYkzgMV8YEXa2iEX2EbTYZ5v4rQArAT7gYf5MxrHi6",
      "pubsub": null,
      "tpuQuic": "208.115.227.85:8003",
      "tpuVote": "208.115.227.85:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.85:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.85:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.96.207:8001",
      "gossip": "109.94.96.207:8000",
      "pubkey": "8Ya3TYpAZumnkgqJUnHJxRTpbM2Af252iQ79b69XsxG5",
      "pubsub": null,
      "tpuQuic": "109.94.96.207:8002",
      "tpuVote": "109.94.96.207:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.94.96.207:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.96.207:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.186.121:8002",
      "gossip": "84.32.186.121:8001",
      "pubkey": "9tbe1ZUFA9xXiQnvx26Mr4qjfnMU7CrYVuoQ2Ujegtgq",
      "pubsub": null,
      "tpuQuic": "84.32.186.121:8003",
      "tpuVote": "84.32.186.121:8005",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "84.32.186.121:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.186.121:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.187:8000",
      "gossip": "64.130.47.187:8001",
      "pubkey": "5gLB5teGaEY6dzPC1wKJm1C33vpqj9JaTH9pB1rJS6at",
      "pubsub": null,
      "tpuQuic": "64.130.47.187:8009",
      "tpuVote": "64.130.47.187:8005",
      "version": "3.1.8",
      "clientId": "AgaveBam",
      "featureSet": 1620780344,
      "serveRepair": "64.130.47.187:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.187:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "154.45.250.147:8002",
      "gossip": "154.45.250.147:8001",
      "pubkey": "FYCko5v9q6HfiXEJQJ41BgV3YogvpRK7SpTMzY9dszBN",
      "pubsub": null,
      "tpuQuic": "154.45.250.147:8003",
      "tpuVote": "154.45.250.147:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "154.45.250.147:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "154.45.250.147:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.129.84.96:8000",
      "gossip": "45.129.84.96:8001",
      "pubkey": "psotQuj3Fsn7n28JUD1nzX6LKDvQP1NfNRWvks4PiNd",
      "pubsub": null,
      "tpuQuic": "45.129.84.96:8009",
      "tpuVote": "45.129.84.96:8005",
      "version": "3.1.11",
      "clientId": "JitoLabs",
      "featureSet": 4140108451,
      "serveRepair": "45.129.84.96:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.129.84.96:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.195:8002",
      "gossip": "64.130.58.195:8001",
      "pubkey": "8x12HGGe3fsczdZaQCJxKuax8SfSCGNt9uuBcVFpqifv",
      "pubsub": null,
      "tpuQuic": "64.130.58.195:8003",
      "tpuVote": "64.130.58.195:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.58.195:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.195:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.135.254:8000",
      "gossip": "45.139.135.254:8001",
      "pubkey": "BH6aHw9y4Ejes5KdPYA3ezwERCvJd2zMzGLKze45kfy3",
      "pubsub": null,
      "tpuQuic": "45.139.135.254:8002",
      "tpuVote": "45.139.135.254:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.139.135.254:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.139.135.254:8003"
    },
    {
      "rpc": "164.152.160.241:8897",
      "tpu": null,
      "tvu": "164.152.160.241:8002",
      "gossip": "164.152.160.241:8001",
      "pubkey": "FvsR7Jp6k6r9hXojjDbV7Tmp98WngHQjq1biTbwNdspL",
      "pubsub": "164.152.160.241:8898",
      "tpuQuic": "164.152.160.241:8003",
      "tpuVote": "164.152.160.241:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "164.152.160.241:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "164.152.160.241:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.105:8002",
      "gossip": "208.91.110.105:8001",
      "pubkey": "BYv5HbmJkWFVKqwoWmgLuDWEjWhH3K8R8u9eM2KVxYMM",
      "pubsub": null,
      "tpuQuic": "208.91.110.105:8003",
      "tpuVote": "208.91.110.105:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.105:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.105:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.164.132:8001",
      "gossip": "5.199.164.132:8000",
      "pubkey": "4UqiuVmmwnxtfk6L4JBtjh3QL3NeVzwrQ9TsxYwXJn8N",
      "pubsub": null,
      "tpuQuic": "5.199.164.132:8002",
      "tpuVote": "5.199.164.132:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "5.199.164.132:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.164.132:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "157.90.131.173:8001",
      "gossip": "157.90.131.173:8000",
      "pubkey": "CmSbvK71AG4FgcXQrKAioyx48xZtZMhpfN29fTpLCEUG",
      "pubsub": null,
      "tpuQuic": "157.90.131.173:8002",
      "tpuVote": "157.90.131.173:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "157.90.131.173:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "157.90.131.173:8003"
    },
    {
      "rpc": "149.255.37.130:8899",
      "tpu": null,
      "tvu": "149.255.37.130:8002",
      "gossip": "149.255.37.130:8001",
      "pubkey": "DqjuGwQSg8K32PSpcraw793PmpfvJg6XUejFD1BLmjNa",
      "pubsub": "149.255.37.130:8900",
      "tpuQuic": "149.255.37.130:8003",
      "tpuVote": "149.255.37.130:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 946547621,
      "serveRepair": "149.255.37.130:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "149.255.37.130:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.140.168.178:8003",
      "gossip": "64.140.168.178:8001",
      "pubkey": "Cp1vVi883gTtjtUQWUc6c8DiTEYvcAn5tpV4uj2pX4oZ",
      "pubsub": null,
      "tpuQuic": "64.140.168.178:9007",
      "tpuVote": "64.140.168.178:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.140.168.178:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.140.168.178:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.130.53.240:8000",
      "pubkey": "12LifzFgJCFKnm7a9mmEJeN4UpnVBpshDFa6cjKPs9PH",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.136.48:8002",
      "gossip": "74.118.136.48:8001",
      "pubkey": "3iMDc84oMVwULRGrRFZvpKPewkkuvx7dX7N6GJD6KjfL",
      "pubsub": null,
      "tpuQuic": "74.118.136.48:8010",
      "tpuVote": "74.118.136.48:8006",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "74.118.136.48:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.136.48:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.111.166:8002",
      "gossip": "208.91.111.166:8001",
      "pubkey": "PgaFqKC4aUh9VSQ1RHkBHpkWrBJ9nBt1G8AGUboiFVq",
      "pubsub": null,
      "tpuQuic": "208.91.111.166:8003",
      "tpuVote": "208.91.111.166:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.111.166:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.111.166:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.42:8001",
      "gossip": "64.130.57.42:8000",
      "pubkey": "GLXdPYhDmY4mWaNSMtJKGDEbyQHHeSopBtsZwK1sC9Kp",
      "pubsub": null,
      "tpuQuic": "64.130.57.42:8002",
      "tpuVote": "64.130.57.42:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.57.42:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.42:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.198:8001",
      "gossip": "64.130.32.198:8000",
      "pubkey": "6ToN7SokzSM3fjHaJEijgwQkh26DaaZDQLq9gYe5SYyb",
      "pubsub": null,
      "tpuQuic": "64.130.32.198:8002",
      "tpuVote": "64.130.32.198:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.198:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.198:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "209.249.216.180:8001",
      "gossip": "209.249.216.180:8000",
      "pubkey": "DtpwEimugAAbRkKvwTR5F7q3kX76RyJuUkt2sMUZnqQw",
      "pubsub": null,
      "tpuQuic": "209.249.216.180:8002",
      "tpuVote": "209.249.216.180:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "209.249.216.180:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "209.249.216.180:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.42:8001",
      "gossip": "64.130.50.42:8000",
      "pubkey": "CQ8mVMDSxVw79otE2XX47CaLHTkX5q6nRfh5KZpoDVeT",
      "pubsub": null,
      "tpuQuic": "64.130.50.42:8002",
      "tpuVote": "64.130.50.42:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.50.42:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.42:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.111.249:8001",
      "gossip": "208.91.111.249:8000",
      "pubkey": "ByiSccsreouVi8GGeA6yJu1sEtSFmZX8H2cdBexGy7us",
      "pubsub": null,
      "tpuQuic": "208.91.111.249:8002",
      "tpuVote": "208.91.111.249:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.111.249:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.111.249:8003"
    },
    {
      "rpc": "86.105.224.96:8899",
      "tpu": null,
      "tvu": "86.105.224.96:8001",
      "gossip": "86.105.224.96:8000",
      "pubkey": "HPVMm62MZpgC7WnEQhZrhQ1Aidu3D8vHXyn6sFbeLmvt",
      "pubsub": "86.105.224.96:8900",
      "tpuQuic": "86.105.224.96:8009",
      "tpuVote": "86.105.224.96:8005",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "86.105.224.96:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.105.224.96:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.116.182:8001",
      "gossip": "185.191.116.182:8000",
      "pubkey": "stNPhGRZhn4ZdKEjLAqCGBQas7XC7xeXj8ifxejsSLV",
      "pubsub": null,
      "tpuQuic": "185.191.116.182:8002",
      "tpuVote": "185.191.116.182:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.191.116.182:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.116.182:8003"
    },
    {
      "rpc": "64.130.61.109:8899",
      "tpu": null,
      "tvu": "64.130.61.109:8001",
      "gossip": "64.130.61.109:8000",
      "pubkey": "GGeajvuQfks8vtFSBtRXpnJknVqj14hGdgatVoQu5D3Y",
      "pubsub": "64.130.61.109:8900",
      "tpuQuic": "64.130.61.109:8002",
      "tpuVote": "64.130.61.109:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.61.109:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.109:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.215.84:8001",
      "gossip": "2.57.215.84:8000",
      "pubkey": "junkJtGFJ6kMBvk7kC3XCBYXcugpUkjoojHuVFMSRrS",
      "pubsub": null,
      "tpuQuic": "2.57.215.84:8002",
      "tpuVote": "2.57.215.84:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "2.57.215.84:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "2.57.215.84:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.202:8002",
      "gossip": "198.13.138.183:9014",
      "pubkey": "6UuFiQwFJtCJBs2V9kyTpCNhfRka2PUKBdxRnrzeHV3N",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 1718981463,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.185.226.162:8000",
      "gossip": "64.185.226.162:8026",
      "pubkey": "C71kfMFmEzoxHtbaazqRmoaDjhEAEujkbghfJGHHpYsQ",
      "pubsub": null,
      "tpuQuic": "64.185.226.162:8001",
      "tpuVote": "64.185.226.162:8003",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.185.226.162:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.185.226.162:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.132.97:8003",
      "gossip": "45.139.132.97:8000",
      "pubkey": "faiCpbit1D1SZYysWiKXaDRo2JHCoKyD3zeGEVTWsxQ",
      "pubsub": null,
      "tpuQuic": "45.139.132.97:9007",
      "tpuVote": "45.139.132.97:9001",
      "version": "0.911.40002",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 1878484565,
      "serveRepair": "45.139.132.97:8018",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.139.132.97:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.26.11.243:8001",
      "gossip": "185.26.11.243:8000",
      "pubkey": "FUNPsh7HZtvegE3ChsJYWMf9oavPc6TRgrK5fcChvjXM",
      "pubsub": null,
      "tpuQuic": "185.26.11.243:8002",
      "tpuVote": "185.26.11.243:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.26.11.243:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.11.243:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.126.87:8002",
      "gossip": "67.213.126.87:8001",
      "pubkey": "2iptHgPjrgBjmsdBYXhQUqtgwJ6LvVp8qpGtCs6mPDTy",
      "pubsub": null,
      "tpuQuic": "67.213.126.87:8003",
      "tpuVote": "67.213.126.87:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.213.126.87:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.126.87:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.162.93.213:8002",
      "gossip": "69.162.93.213:8001",
      "pubkey": "BGXZ6gRq4q2hZdb2WAsZQ4Rs5ZBZiLDwNxpSZyeiCW6H",
      "pubsub": null,
      "tpuQuic": "69.162.93.213:8003",
      "tpuVote": "69.162.93.213:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "69.162.93.213:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.162.93.213:8004"
    },
    {
      "rpc": "185.191.117.10:8899",
      "tpu": null,
      "tvu": "185.191.117.10:8001",
      "gossip": "185.191.117.10:8000",
      "pubkey": "AYmnzRqjdnDckxgXXzCHeZjXKoSbY7Lg6YiErfibSckY",
      "pubsub": "185.191.117.10:8900",
      "tpuQuic": "185.191.117.10:8002",
      "tpuVote": "185.191.117.10:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "185.191.117.10:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.10:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "204.16.244.123:7001",
      "pubkey": "7L7oStgzasa5YaLenNmAue1vyTPrSqKRvsMkVBYy6jor",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.89:8002",
      "gossip": "64.130.57.89:8001",
      "pubkey": "82Dpz6E2wrnFhpAYL2EXcLQb2ygFFtexxCNHxEVVxTXG",
      "pubsub": null,
      "tpuQuic": "64.130.57.89:8003",
      "tpuVote": "64.130.57.89:8005",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "64.130.57.89:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.89:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.38.133.19:40501",
      "gossip": "64.38.133.19:40500",
      "pubkey": "mg64tpnkbRZ6T97Jvz6rMy2VwEFihHt5RiUP36PwoYN",
      "pubsub": null,
      "tpuQuic": "64.38.133.19:40502",
      "tpuVote": "64.38.133.19:40504",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.38.133.19:40509",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.38.133.19:40503"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.242.226:8002",
      "gossip": "204.16.242.226:8001",
      "pubkey": "Hu9NqUsHFgaPkZU1JuYcfp15TBvr5zRTTZHrMHBser1F",
      "pubsub": null,
      "tpuQuic": "204.16.242.226:8003",
      "tpuVote": "204.16.242.226:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.242.226:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.242.226:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.42:8001",
      "gossip": "208.91.110.42:8000",
      "pubkey": "4xJuzsGmmzG9kUuHLgCHCgH5keAikC5GamVHG1LYcQYQ",
      "pubsub": null,
      "tpuQuic": "208.91.110.42:8002",
      "tpuVote": "208.91.110.42:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "208.91.110.42:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.42:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.204.241.62:8002",
      "gossip": "15.204.241.62:8001",
      "pubkey": "CB5NTPpGECA2z8C33VJmM4xLQv999EdMW9Xqv91MDp5x",
      "pubsub": null,
      "tpuQuic": "15.204.241.62:8003",
      "tpuVote": "15.204.241.62:8005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "15.204.241.62:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.241.62:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.74:8000",
      "pubkey": "8wWw5CexN7huHoC2rWKERy13jrKGRYvXto5PEjtzNegN",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "209.195.8.140:8001",
      "gossip": "209.195.8.140:8000",
      "pubkey": "6z7EpU47PzcLJiC7iqD1ZRoxcenkp5DvKA3oCNV8pp2T",
      "pubsub": null,
      "tpuQuic": "209.195.8.140:8002",
      "tpuVote": "209.195.8.140:8004",
      "version": "4.0.0-rc.0",
      "clientId": "JitoLabs",
      "featureSet": 767961353,
      "serveRepair": "209.195.8.140:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "209.195.8.140:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "207.180.237.81:8000",
      "gossip": "207.180.237.81:8001",
      "pubkey": "FPY2HrgYfK9eSFsJwWTpJFErMkGQgyjMp4FN9dbJ46HN",
      "pubsub": null,
      "tpuQuic": "207.180.237.81:8002",
      "tpuVote": "207.180.237.81:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "207.180.237.81:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "207.180.237.81:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.135:8001",
      "gossip": "64.130.49.135:9001",
      "pubkey": "tk2tVcFeF2YUbKyqd4Lr6TsB5xRD5koBjyGwSQimiU6",
      "pubsub": null,
      "tpuQuic": "64.130.49.135:9008",
      "tpuVote": "64.130.49.135:9002",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "64.130.49.135:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.135:9008"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.150:8031",
      "gossip": "208.91.110.150:8030",
      "pubkey": "FV5AYeeyufSWS71LzJNn5dzoTsFKHJsAxBkYEZ9xuvj2",
      "pubsub": null,
      "tpuQuic": "208.91.110.150:8032",
      "tpuVote": "208.91.110.150:8034",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.150:8039",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.150:8033"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "117.52.250.42:8001",
      "gossip": "117.52.250.42:8000",
      "pubkey": "G6QVNexyqTPZcHNAuPXFSSoVEsBXQftLJ1xGY9z3E2UT",
      "pubsub": null,
      "tpuQuic": "117.52.250.42:8002",
      "tpuVote": "117.52.250.42:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "117.52.250.42:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "117.52.250.42:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "20.120.229.168:8001",
      "gossip": "20.120.229.168:8000",
      "pubkey": "2NPhx13GGikr1LQF6UGPXKvsNvSMDEfVAY48RUKBsw4C",
      "pubsub": null,
      "tpuQuic": "20.120.229.168:8002",
      "tpuVote": "20.120.229.168:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "20.120.229.168:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "20.120.229.168:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "91.200.250.55:8001",
      "gossip": "91.200.250.55:8000",
      "pubkey": "ekonARL6thxoZtGP1RJTFUcTD9vS1NBroBSgiDyGvJ6",
      "pubsub": null,
      "tpuQuic": "91.200.250.55:8009",
      "tpuVote": "91.200.250.55:8005",
      "version": "3.0.14",
      "clientId": "AgaveBam",
      "featureSet": 3604001754,
      "serveRepair": "91.200.250.55:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.200.250.55:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.206:8000",
      "gossip": "198.13.134.206:8001",
      "pubkey": "AReejek8kq8oQNQuEd2kFiCyqoGG95h4rSy5wwGpsZH5",
      "pubsub": null,
      "tpuQuic": "198.13.134.206:8002",
      "tpuVote": "198.13.134.206:8004",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "198.13.134.206:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.206:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.130.47.139:8001",
      "pubkey": "7xZ6YrAJTVZ5kJFdhRK5PgRZBejX7D3cYD4SWy1PPLrf",
      "pubsub": null,
      "tpuQuic": "64.130.47.139:8003",
      "tpuVote": "64.130.47.139:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.47.139:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.139:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.200:8002",
      "gossip": "64.130.59.200:8001",
      "pubkey": "5tEYQPYvjfDG3EAvPYcXmkDPLG5ZFaueCCceRYe14yqF",
      "pubsub": null,
      "tpuQuic": "64.130.59.200:8003",
      "tpuVote": "64.130.59.200:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.200:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.200:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.236:8002",
      "gossip": "5.135.193.211:8001",
      "pubkey": "63FUJB4TTUpuzVyK1k2VNdryLwbcVNwnbUAzAt1vZdXM",
      "pubsub": null,
      "tpuQuic": "5.135.193.211:8003",
      "tpuVote": "5.135.193.211:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.193.211:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.193.211:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.176.152:8001",
      "gossip": "84.32.176.152:8000",
      "pubkey": "amsmDw68dSRh1SLhjuqxQp1Z9wXL5zQKZ88mhrSgdEo",
      "pubsub": null,
      "tpuQuic": "84.32.176.152:8002",
      "tpuVote": "84.32.176.152:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "84.32.176.152:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.176.152:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.185.230.218:8001",
      "gossip": "64.185.230.218:8000",
      "pubkey": "B8B5dcaoqYyH1MaKZudVBTsApg7L2TSo7tS9GzZuxUtP",
      "pubsub": null,
      "tpuQuic": "64.185.230.218:8002",
      "tpuVote": "64.185.230.218:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.185.230.218:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.185.230.218:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.98:8002",
      "gossip": "51.89.25.98:8001",
      "pubkey": "CstP2LuDZ7G2YrUysxz84NTLmEZt72VYhv1rZVLCNVhC",
      "pubsub": null,
      "tpuQuic": "51.89.25.98:8003",
      "tpuVote": "51.89.25.98:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.98:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.98:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.113:8001",
      "gossip": "64.130.43.113:8000",
      "pubkey": "4vPjSx4ynmBNtLG6aihCF1iA7kdahtzVq2rkzu8Ey9q7",
      "pubsub": null,
      "tpuQuic": "64.130.43.113:8002",
      "tpuVote": "64.130.43.113:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.43.113:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.113:8003"
    },
    {
      "rpc": "45.134.108.141:8899",
      "tpu": null,
      "tvu": "45.134.108.141:8001",
      "gossip": "45.134.108.141:8000",
      "pubkey": "778nW5D6RNk3UXjQq8Dp75aYixDtx7zoe3g2PnL3EXC3",
      "pubsub": "45.134.108.141:8900",
      "tpuQuic": "45.134.108.141:8002",
      "tpuVote": "45.134.108.141:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.134.108.141:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.134.108.141:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.94.253:8001",
      "gossip": "64.34.94.253:8000",
      "pubkey": "AEUKg3RusmkJZD1Z1p4SqhS1ARvjNPDee1EBxwYbrHe",
      "pubsub": null,
      "tpuQuic": "64.34.94.253:8002",
      "tpuVote": "64.34.94.253:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.34.94.253:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.94.253:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.219.89.82:8001",
      "gossip": "216.219.89.82:8000",
      "pubkey": "2WUrazNKQp2mN5Zn5jUzmNagjpxdu36qvaXtqi2L5nQW",
      "pubsub": null,
      "tpuQuic": "216.219.89.82:8002",
      "tpuVote": "216.219.89.82:8004",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2478291359,
      "serveRepair": "216.219.89.82:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.219.89.82:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.244.154.152:8001",
      "gossip": "67.244.154.152:8000",
      "pubkey": "GEBChpCGYJ4cbv4L1io4AopRGzakHWPJ5CrRCFuvWCnp",
      "pubsub": null,
      "tpuQuic": "67.244.154.152:8002",
      "tpuVote": "67.244.154.152:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.244.154.152:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.244.154.152:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.70:8002",
      "gossip": "64.130.61.70:8001",
      "pubkey": "xrjxE8YVx4V37QSMfvojWmntruGmQaiUj6fSvAdu7vV",
      "pubsub": null,
      "tpuQuic": "64.130.61.70:8003",
      "tpuVote": "64.130.61.70:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.61.70:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.70:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "79.127.216.14:8002",
      "gossip": "79.127.216.14:8001",
      "pubkey": "HQpHhZYLgHUzNDH1apDJT3jKoc4KYfemqmtH7zEMsCeB",
      "pubsub": null,
      "tpuQuic": "79.127.216.14:8003",
      "tpuVote": "79.127.216.14:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "79.127.216.14:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "79.127.216.14:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "212.83.43.113:10002",
      "gossip": "212.83.43.113:8001",
      "pubkey": "Fn8n1SMeGazEEz5WV8byUf8Jx6Eoe8Fr7QFiytth2mNh",
      "pubsub": null,
      "tpuQuic": "212.83.43.113:10003",
      "tpuVote": "212.83.43.113:10005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "212.83.43.113:10010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "212.83.43.113:10004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "54.249.5.159:28001",
      "gossip": "54.249.5.159:28000",
      "pubkey": "4RBcrS9M6eLJXtDEHJjoT7yZYqMA3mF1GQ6tN2SweoBV",
      "pubsub": null,
      "tpuQuic": "54.249.5.159:28002",
      "tpuVote": "54.249.5.159:28004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "54.249.5.159:28009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.249.5.159:28003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.54.153.247:8003",
      "gossip": "86.54.153.247:8001",
      "pubkey": "B49e7fEJ7exH3jLNBcWD3ZGwjTEV1DF1PjJUWi6mLYkR",
      "pubsub": null,
      "tpuQuic": "86.54.153.247:8037",
      "tpuVote": "86.54.153.247:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "86.54.153.247:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.54.153.247:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.19:8002",
      "gossip": "64.31.54.19:8001",
      "pubkey": "5KW4npMzaCKdCVXZcUaLnnE99ehkYqmwqkpus8hDdbUj",
      "pubsub": null,
      "tpuQuic": "64.31.54.19:8003",
      "tpuVote": "64.31.54.19:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.19:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.19:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.82.107:8001",
      "gossip": "85.195.82.107:8000",
      "pubkey": "7JKy6JretZuu75YKJapXqYSvKsdoj5esEkqCxY9DAnWY",
      "pubsub": null,
      "tpuQuic": "85.195.82.107:8002",
      "tpuVote": "85.195.82.107:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "85.195.82.107:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.82.107:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.90:8001",
      "gossip": "64.130.33.90:8000",
      "pubkey": "5DfMpd2LRghpyXLQuowjKJgSJU7mq2VeXZHCrPTFoCNZ",
      "pubsub": null,
      "tpuQuic": "64.130.33.90:8002",
      "tpuVote": "64.130.33.90:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.33.90:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.90:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "160.202.128.65:8001",
      "gossip": "160.202.128.65:8000",
      "pubkey": "GR24qfKovgpg8DpLCiuM3Gxmv3W8HHHxoDab6nWbb9kj",
      "pubsub": null,
      "tpuQuic": "160.202.128.65:8002",
      "tpuVote": "160.202.128.65:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "160.202.128.65:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "160.202.128.65:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.161:8002",
      "gossip": "185.191.117.161:8001",
      "pubkey": "ATk65xnhhdyqHtg7vmLVq8EfCmcndTabtV7UcDtUma6Y",
      "pubsub": null,
      "tpuQuic": "185.191.117.161:8003",
      "tpuVote": "185.191.117.161:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.161:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.161:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.111.240.157:25001",
      "gossip": "23.111.240.157:25000",
      "pubkey": "Her4g5FeQqYY5kCFw8JDaw8NneCc5TH1G7LcQoHLLiG8",
      "pubsub": null,
      "tpuQuic": "23.111.240.157:25002",
      "tpuVote": "23.111.240.157:25004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "23.111.240.157:25009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.111.240.157:25003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.253:8000",
      "gossip": "64.130.37.253:8001",
      "pubkey": "8J3AMfkwkyHG3U9QwbAge7gKQdyqiasoUPLdqTb1616Q",
      "pubsub": null,
      "tpuQuic": "64.130.37.253:8002",
      "tpuVote": "64.130.37.253:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.253:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.253:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.129.84.63:8001",
      "gossip": "45.129.84.63:8000",
      "pubkey": "7P6sTtceh826DekZzmtFV2vby5WyZhBTjw5HgwDttZuS",
      "pubsub": null,
      "tpuQuic": "45.129.84.63:8002",
      "tpuVote": "45.129.84.63:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.129.84.63:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.129.84.63:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.46.222.100:8001",
      "gossip": "38.46.222.100:8000",
      "pubkey": "FkK84oBY6wyn5KS7HbuxcwsBujv82nUFqBP1bYPeBaDB",
      "pubsub": null,
      "tpuQuic": "38.46.222.100:8002",
      "tpuVote": "38.46.222.100:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "38.46.222.100:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.46.222.100:8003"
    },
    {
      "rpc": "185.26.11.109:8899",
      "tpu": null,
      "tvu": "185.26.11.109:8001",
      "gossip": "185.26.11.109:8000",
      "pubkey": "ENJYwGQy59Mcaj6uhEviFhpdNPVdezxfuGWxz2xpJGWe",
      "pubsub": "185.26.11.109:8900",
      "tpuQuic": "185.26.11.109:8002",
      "tpuVote": "185.26.11.109:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.26.11.109:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.11.109:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.82:8002",
      "gossip": "51.89.24.66:8001",
      "pubkey": "31tGs1FEyq4JPjKWYPEbqiomxFCCRqf2LJNRe97HGLMc",
      "pubsub": null,
      "tpuQuic": "51.89.24.66:8003",
      "tpuVote": "51.89.24.66:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.24.66:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.24.66:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.186:8001",
      "gossip": "70.40.185.186:8000",
      "pubkey": "GdVrHn98Nq7aUSBu3zKBdQiZ6nQBnmti37X5aWh8m7nf",
      "pubsub": null,
      "tpuQuic": "70.40.185.186:8002",
      "tpuVote": "70.40.185.186:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.186:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.186:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.162.93.195:8002",
      "gossip": "69.162.93.195:8001",
      "pubkey": "AG7u4er6Rnzh9PZswu6dcz2yXdQsDU6kh9PPTijExDF7",
      "pubsub": null,
      "tpuQuic": "69.162.93.195:8003",
      "tpuVote": "69.162.93.195:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "69.162.93.195:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.162.93.195:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.81:8000",
      "gossip": "198.13.130.81:8001",
      "pubkey": "CqYJtBrHzzPYdg9N3HqghuYh9PTeA4TVHXLPY66rXbeo",
      "pubsub": null,
      "tpuQuic": "198.13.130.81:8002",
      "tpuVote": "198.13.130.81:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.81:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.81:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.242.230:8002",
      "gossip": "204.16.242.230:8001",
      "pubkey": "9zRBvhPKPydin9Ss4RwA6fWB5J3zJ5rPCDZ11jkxvjt",
      "pubsub": null,
      "tpuQuic": "204.16.242.230:8003",
      "tpuVote": "204.16.242.230:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.242.230:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.242.230:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.142.195:8002",
      "gossip": "74.118.142.195:8001",
      "pubkey": "EKHbiK7QTYk6LhfZwbh5VTrnAruHPofAU2rNx2iobpnX",
      "pubsub": null,
      "tpuQuic": "74.118.142.195:8010",
      "tpuVote": "74.118.142.195:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "74.118.142.195:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.142.195:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "146.0.249.83:11001",
      "gossip": "146.0.249.83:11000",
      "pubkey": "A3cAkqLq27MTmNpedB4L5gQcAVhX2mghf4WhPZDpbALY",
      "pubsub": null,
      "tpuQuic": "146.0.249.83:11002",
      "tpuVote": "146.0.249.83:11004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "146.0.249.83:11009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.0.249.83:11003"
    },
    {
      "rpc": "148.113.211.35:8899",
      "tpu": null,
      "tvu": "148.113.211.35:8000",
      "gossip": "148.113.211.35:8001",
      "pubkey": "D2fjWRzGi3Z8Tb5zwoizZY6ti2qj2G5FZ9LchSBdtXoA",
      "pubsub": "148.113.211.35:8900",
      "tpuQuic": "148.113.211.35:8000",
      "tpuVote": "148.113.211.35:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "148.113.211.35:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "148.113.211.35:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.132.69:8001",
      "gossip": "198.13.132.69:8000",
      "pubkey": "7m8LrpfJpLMQEUDT3xCsVdZTqRnoE9crfFjCq7sizwUF",
      "pubsub": null,
      "tpuQuic": "198.13.132.69:8002",
      "tpuVote": "198.13.132.69:8004",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2700650398,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "184.105.146.36:8001",
      "gossip": "184.105.146.36:8000",
      "pubkey": "HbimD4dL5wJv12HR4btXD1y5QCnF7i9uvkkeqxighJma",
      "pubsub": null,
      "tpuQuic": "184.105.146.36:8002",
      "tpuVote": "184.105.146.36:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "184.105.146.36:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "184.105.146.36:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "54.165.173.39:8001",
      "gossip": "54.165.173.39:8000",
      "pubkey": "Gnqj2n4CDsBDgnuhbSwY5uvcdJu7XQmQpzmuJfG44Bmt",
      "pubsub": null,
      "tpuQuic": "54.165.173.39:8002",
      "tpuVote": "54.165.173.39:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "54.165.173.39:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.165.173.39:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.67:8002",
      "gossip": "64.31.54.67:8001",
      "pubkey": "DztvB32ejUNiUWqFadpKzfDHR6Aep8YbvZF87NWTnUxv",
      "pubsub": null,
      "tpuQuic": "64.31.54.67:8003",
      "tpuVote": "64.31.54.67:8005",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "64.31.54.67:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.67:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.215.13:8002",
      "gossip": "208.115.215.13:8001",
      "pubkey": "986PbncHsdaXTQUzRfutLJUshhpWyuQCTjjzqCyPym5K",
      "pubsub": null,
      "tpuQuic": "208.115.215.13:8003",
      "tpuVote": "208.115.215.13:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.215.13:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.215.13:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.20:8002",
      "gossip": "64.130.59.20:8001",
      "pubkey": "GNUgS1TQaxLVrXRpsDaAVtAgxMauYYdaJxweMbdQ2mGt",
      "pubsub": null,
      "tpuQuic": "64.130.59.20:8003",
      "tpuVote": "64.130.59.20:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.20:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.20:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.187.35.11:8001",
      "gossip": "5.187.35.11:8000",
      "pubkey": "CThLQDwBD1fnN1yvN3PzULAHB8SGrREtNXzEfTujztLt",
      "pubsub": null,
      "tpuQuic": "5.187.35.11:8002",
      "tpuVote": "5.187.35.11:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "5.187.35.11:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.187.35.11:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.165.38:8001",
      "gossip": "5.199.165.38:8000",
      "pubkey": "Dqxs9U2nC62pxyPhkWvqQGkK7JKUkdrZ43vcJMuc9EdB",
      "pubsub": null,
      "tpuQuic": "5.199.165.38:8002",
      "tpuVote": "5.199.165.38:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.199.165.38:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.165.38:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "34.85.6.112:8001",
      "gossip": "34.85.6.112:8000",
      "pubkey": "CAKCxhx9N7pNNc9R2TfkTQgPhiEjCJSSHCr8tasaN6bL",
      "pubsub": null,
      "tpuQuic": "34.85.6.112:8002",
      "tpuVote": "34.85.6.112:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "34.85.6.112:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "34.85.6.112:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.130.226.112:8001",
      "gossip": "185.130.226.112:8000",
      "pubkey": "JDSRm1qFKs4jbNWWDCA1T7oCfEmVS3PU23o3kcUjL8Ms",
      "pubsub": null,
      "tpuQuic": "185.130.226.112:8002",
      "tpuVote": "185.130.226.112:8004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "185.130.226.112:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.130.226.112:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.95:8001",
      "gossip": "64.130.43.95:8000",
      "pubkey": "4dzMAX9N6JwuTwjCdjgt24RCZXVjJiu3Dj14P37fcrqe",
      "pubsub": null,
      "tpuQuic": "64.130.43.95:8002",
      "tpuVote": "64.130.43.95:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.95:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.95:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.30:8002",
      "gossip": "64.130.51.30:8001",
      "pubkey": "6mczgRKffEmjD6GUG22t7usRk5y2SY7DaLz4kXEGKjCR",
      "pubsub": null,
      "tpuQuic": "64.130.51.30:8003",
      "tpuVote": "64.130.51.30:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.30:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.30:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.96.113:8001",
      "gossip": "109.94.96.113:8000",
      "pubkey": "Brry7zX15vnwsDdRSjV6qKbXkuBmRNBhEABKhZp7a723",
      "pubsub": null,
      "tpuQuic": "109.94.96.113:8002",
      "tpuVote": "109.94.96.113:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.94.96.113:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.96.113:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.143.210:8002",
      "gossip": "74.118.143.210:8001",
      "pubkey": "5gTMtreugG87o91MVTiEeBHQqiuccGkLfaVZj8rXQnQm",
      "pubsub": null,
      "tpuQuic": "74.118.143.210:8003",
      "tpuVote": "74.118.143.210:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.143.210:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.143.210:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "141.148.240.85:8001",
      "pubkey": "71gEmy626AKVy3kUqbkfvVwtLE5RimT2zPGVuHGccDLS",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.53.11:8001",
      "gossip": "64.130.53.11:8000",
      "pubkey": "8DssifuWG7KmrpWv29B5kFMrDGqMkZTqtBvYp7buENqR",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.24:8001",
      "gossip": "84.32.103.24:8000",
      "pubkey": "FCogV51pg35BtHUJKoNYdVV6M534hHiRfjHxKYPD8nMK",
      "pubsub": null,
      "tpuQuic": "84.32.103.24:8002",
      "tpuVote": "84.32.103.24:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "84.32.103.24:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.24:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.90:8002",
      "gossip": "51.89.25.42:8001",
      "pubkey": "54NdZ3Tf6U8keuHtcg56ZKkwJMQCinQhFLqFnhbPcSsC",
      "pubsub": null,
      "tpuQuic": "51.89.25.42:8003",
      "tpuVote": "51.89.25.42:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.42:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.42:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.140.51:8003",
      "gossip": "198.13.140.51:8001",
      "pubkey": "3vxeTuFpqqVZdBgWscTyShUeaPjsQMZR5Q8NX6jKv6K9",
      "pubsub": null,
      "tpuQuic": "198.13.140.51:9007",
      "tpuVote": "198.13.140.51:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "198.13.140.51:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.51:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.166:8002",
      "gossip": "51.68.222.126:8001",
      "pubkey": "2aokuN1g6vkPBCukwiVuUtyJF4RouVhQTLG5MLkcprYj",
      "pubsub": null,
      "tpuQuic": "51.68.222.126:8003",
      "tpuVote": "51.68.222.126:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.222.126:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.222.126:8004"
    },
    {
      "rpc": "67.209.52.246:8899",
      "tpu": null,
      "tvu": "67.209.52.246:8001",
      "gossip": "67.209.52.246:8000",
      "pubkey": "Ge1Mzthy4pxZZjGenGpJR9cryqwrShW4esz453HMxVmn",
      "pubsub": "67.209.52.246:8900",
      "tpuQuic": "67.209.52.246:8002",
      "tpuVote": "67.209.52.246:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.209.52.246:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.52.246:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "8.216.67.110:8001",
      "gossip": "8.216.67.110:8000",
      "pubkey": "AFHqwwXytdW1fxD3CRFZGhyJX6p1RKsdxcrGrqSxDEdP",
      "pubsub": null,
      "tpuQuic": "8.216.67.110:8002",
      "tpuVote": "8.216.67.110:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "8.216.67.110:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "8.216.67.110:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.189.44.139:50001",
      "gossip": "185.189.44.139:50000",
      "pubkey": "BkwGGSKc1PZVPGv7eWPHYxFkvSF4pwQNgR6WdvqJ2U8o",
      "pubsub": null,
      "tpuQuic": "185.189.44.139:50002",
      "tpuVote": "185.189.44.139:50004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.189.44.139:50009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.189.44.139:50003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.46.86.19:8000",
      "gossip": "72.46.86.19:8001",
      "pubkey": "8j83d88bXmTN3exa74aJcmuJLhv29QFMjW2wJmtRd4di",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.162.17:8001",
      "gossip": "63.254.162.17:8000",
      "pubkey": "9ZogGD16avAEcKiTKqe5vAXtyJHcL8EjP8AwTgAJjxAx",
      "pubsub": null,
      "tpuQuic": "63.254.162.17:8002",
      "tpuVote": "63.254.162.17:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "63.254.162.17:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.162.17:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.138.190:8001",
      "gossip": "198.13.138.190:8000",
      "pubkey": "9TYYFJ3C12h7w3Kg3r6kkewKxCpqgwCzBFbtjZWkJ2Rk",
      "pubsub": null,
      "tpuQuic": "198.13.138.190:8002",
      "tpuVote": "198.13.138.190:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.138.190:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.138.190:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.76:8001",
      "gossip": "64.130.44.76:8000",
      "pubkey": "F1roFmRDREzGK2eyaTnd5eduMxdyRQwXE6ggehx2GbaX",
      "pubsub": null,
      "tpuQuic": "64.130.44.76:8002",
      "tpuVote": "64.130.44.76:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.44.76:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.76:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.126:8002",
      "gossip": "64.130.51.126:8001",
      "pubkey": "76HRwxxnsZEVgwXrDXnjzTXbPXMz4h4maeN213dLuqZm",
      "pubsub": null,
      "tpuQuic": "64.130.51.126:8003",
      "tpuVote": "64.130.51.126:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.126:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.126:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.167.199:8001",
      "gossip": "63.254.167.199:8000",
      "pubkey": "AG5A8PAwR1svZVQDbbwEWhXFCs5NrGVgnwY7y9EZPKM2",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.141.211:8888",
      "gossip": "64.130.46.211:8000",
      "pubkey": "DxCVPhqnYZ28e2nLGNjJwRJGWCj3Sg8dXqQ1MgXQ1jR1",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.79:8001",
      "gossip": "64.130.49.79:8000",
      "pubkey": "5uJGyn5Bva79q82zGJEgn5my8Psg1YFTcBsrGBT2ehsw",
      "pubsub": null,
      "tpuQuic": "64.130.49.79:8002",
      "tpuVote": "64.130.49.79:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.49.79:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.79:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.168:8001",
      "gossip": "64.130.43.168:8000",
      "pubkey": "DQx8rYQPwR2gaUoPXsc66G6mJvXXdoVubSRndQDQDvZE",
      "pubsub": null,
      "tpuQuic": "64.130.43.168:8002",
      "tpuVote": "64.130.43.168:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.43.168:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.168:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "40.160.1.214:8001",
      "gossip": "40.160.1.214:8000",
      "pubkey": "x68ynKQhQhMaLyheotiLHPrTT2fEqPDiZSuq2obTvhb",
      "pubsub": null,
      "tpuQuic": "40.160.1.214:8002",
      "tpuVote": "40.160.1.214:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "40.160.1.214:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "40.160.1.214:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.67.178.160:8002",
      "gossip": "109.67.178.160:8001",
      "pubkey": "3C5nQEhw1FijWQgCUAmgMr7m8bciXP47UGNksDHRXdwo",
      "pubsub": null,
      "tpuQuic": "109.67.178.160:8003",
      "tpuVote": "109.67.178.160:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.67.178.160:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.67.178.160:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.90:8001",
      "gossip": "64.130.52.90:8000",
      "pubkey": "ECzCPoy2TvmkthJfKBbX9wQRouqkkXT2vPC9VbLs4ijN",
      "pubsub": null,
      "tpuQuic": "64.130.52.90:8002",
      "tpuVote": "64.130.52.90:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.90:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.90:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.12:8002",
      "gossip": "208.91.110.12:8001",
      "pubkey": "J3TqnwDMUKtTKHgUM4SkRB2EJiwX3Z6WU8NP9XVQe9kN",
      "pubsub": null,
      "tpuQuic": "208.91.110.12:8003",
      "tpuVote": "208.91.110.12:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.12:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.12:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "129.146.98.41:8001",
      "pubkey": "EHijB2eCTkxnWHS4vAhFodTTkjE57g98xL3ogomNkDVf",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.112.87:8001",
      "gossip": "67.213.112.87:8000",
      "pubkey": "EBQzxHQ4JF4ub4aaHYvzoBVdxqcNhqDrJznSQikbarSV",
      "pubsub": null,
      "tpuQuic": "67.213.112.87:8002",
      "tpuVote": "67.213.112.87:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "67.213.112.87:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.112.87:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "52.74.207.191:8001",
      "gossip": "52.74.207.191:8000",
      "pubkey": "DCJAmEVGD1diA3JBTBSQuUxzKsQMtbA7qZoa25RhfHkn",
      "pubsub": null,
      "tpuQuic": "52.74.207.191:8002",
      "tpuVote": "52.74.207.191:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "52.74.207.191:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "52.74.207.191:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.50.116.254:8001",
      "gossip": "149.50.116.254:8000",
      "pubkey": "HHBaucfpz9a5gRgAQegVNh3kiXyydt8pAqRfMKHSrZ4N",
      "pubsub": null,
      "tpuQuic": "149.50.116.254:8002",
      "tpuVote": "149.50.116.254:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "149.50.116.254:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "149.50.116.254:8003"
    },
    {
      "rpc": "169.155.47.239:8895",
      "tpu": null,
      "tvu": "169.155.47.239:8002",
      "gossip": "169.155.47.239:8001",
      "pubkey": "2u4CQMTa4CugECy74796dHrqZg6PH5t481LbeKfUZApm",
      "pubsub": "169.155.47.239:8895",
      "tpuQuic": "169.155.47.239:8003",
      "tpuVote": "169.155.47.239:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "169.155.47.239:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "169.155.47.239:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "91.189.181.178:8702",
      "gossip": "91.189.181.178:8001",
      "pubkey": "79Bxtij5cFAFtB4ik64DNLtLNekDCJxX3h9beNYQZ7Ts",
      "pubsub": null,
      "tpuQuic": "91.189.181.178:8703",
      "tpuVote": "91.189.181.178:8705",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "91.189.181.178:8710",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.189.181.178:8704"
    },
    {
      "rpc": "91.199.149.216:8899",
      "tpu": null,
      "tvu": "91.199.149.216:8001",
      "gossip": "91.199.149.216:8000",
      "pubkey": "EMbTAAcM4zq1AeSKNtrRWfpNk22pXm4wUh4YtZMuzS3E",
      "pubsub": "91.199.149.216:8900",
      "tpuQuic": "91.199.149.216:8002",
      "tpuVote": "91.199.149.216:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "91.199.149.216:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.199.149.216:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.205:8001",
      "gossip": "198.13.130.205:8000",
      "pubkey": "C4Zqwn1BixWzPGW5F14C1geQyrJru46gi4oazA4nNP33",
      "pubsub": null,
      "tpuQuic": "198.13.130.205:8002",
      "tpuVote": "198.13.130.205:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "198.13.130.205:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.205:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.130.59.114:8001",
      "pubkey": "6jib7oegNCyHNn5mvzdANFiweJrawVMk27PgD4Yo6zFh",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.202:8002",
      "gossip": "198.13.138.183:9008",
      "pubkey": "CNhh62quRhLdP2qJcmvjZ7N2mddGc4xU1yanoBc4XBpR",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 1718981463,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.223.110:8001",
      "gossip": "208.115.223.110:8000",
      "pubkey": "391qzo9EZQJu8MDJV7FCzkcEixJ9Uson1zdTi3S94Rcq",
      "pubsub": null,
      "tpuQuic": "208.115.223.110:8002",
      "tpuVote": "208.115.223.110:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.223.110:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.223.110:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.53:8002",
      "gossip": "64.130.32.53:8001",
      "pubkey": "8yKmwP3u5b9wb9ZrjoJuqPvVohKKgjXjQZ96wZE8t1xx",
      "pubsub": null,
      "tpuQuic": "64.130.32.53:8010",
      "tpuVote": "64.130.32.53:8006",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "64.130.32.53:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.53:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.225.109:8002",
      "gossip": "74.63.225.109:8001",
      "pubkey": "5Skqwj9YK9fCHnCdDuXCsGjTYBJh1EmWd2VypEJoEzeT",
      "pubsub": null,
      "tpuQuic": "74.63.225.109:8003",
      "tpuVote": "74.63.225.109:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.225.109:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.225.109:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.61.209.94:8001",
      "gossip": "5.61.209.94:8000",
      "pubkey": "H5GrPNcyxt2tmxJy7XUfySpr5T6g7tnS7KHSDMWC2amR",
      "pubsub": null,
      "tpuQuic": "5.61.209.94:8002",
      "tpuVote": "5.61.209.94:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "5.61.209.94:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.61.209.94:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.202:8002",
      "gossip": "198.13.138.183:9002",
      "pubkey": "RJLjc3vkGogLhL2rbbVVHVYmzQ6hLZUmECUNjLhfuSp",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 1718981463,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.92.25.170:10002",
      "gossip": "38.92.25.170:8001",
      "pubkey": "DTZq36U4kNkDHZYcRkFP7ifYFkKMEYYbfGGwxekEBV1j",
      "pubsub": null,
      "tpuQuic": "38.92.25.170:10003",
      "tpuVote": "38.92.25.170:10005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "38.92.25.170:10010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.92.25.170:10004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.35:8002",
      "gossip": "64.130.61.35:8001",
      "pubkey": "66K71Yaq5VDN87Pd3He6Vd24YUD4MuWktNPohy9cKj9z",
      "pubsub": null,
      "tpuQuic": "64.130.61.35:8010",
      "tpuVote": "64.130.61.35:8006",
      "version": "3.1.13",
      "clientId": "JitoLabs",
      "featureSet": 534737035,
      "serveRepair": "64.130.61.35:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.35:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "95.67.39.238:8000",
      "gossip": "95.67.39.238:8001",
      "pubkey": "BN7Ba1n84dE4xBtCWUZhnJ8kXYJfNf8oKrmepJpo3PgK",
      "pubsub": null,
      "tpuQuic": "95.67.39.238:8002",
      "tpuVote": "95.67.39.238:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "95.67.39.238:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "95.67.39.238:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.113:8001",
      "gossip": "45.154.33.113:8000",
      "pubkey": "C38mmGPHkeDsafDYGsugSNayhrFm3JaxfLw1ETY6bhF8",
      "pubsub": null,
      "tpuQuic": "45.154.33.113:8002",
      "tpuVote": "45.154.33.113:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.154.33.113:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.113:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.81.231:8001",
      "gossip": "85.195.81.231:8000",
      "pubkey": "4K96wBZ1u4ZWcEBTTvJWHHn1ysu9TXio51H79aFNZcrb",
      "pubsub": null,
      "tpuQuic": "85.195.81.231:8002",
      "tpuVote": "85.195.81.231:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "85.195.81.231:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.81.231:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.39.38:8002",
      "gossip": "64.31.39.38:8001",
      "pubkey": "GvCsNfXr4wuqMJaTVE5aZsbDhLyRHvJd5zxsBJVKgz5p",
      "pubsub": null,
      "tpuQuic": "64.31.39.38:8003",
      "tpuVote": "64.31.39.38:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.39.38:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.39.38:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.123:8002",
      "gossip": "208.115.227.123:8001",
      "pubkey": "9DGGDdZAXqDRvFuUTYorTnoy82DwWNDHsMVUNnvwhTtC",
      "pubsub": null,
      "tpuQuic": "208.115.227.123:8003",
      "tpuVote": "208.115.227.123:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.123:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.123:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.106:8002",
      "gossip": "64.130.51.106:8001",
      "pubkey": "2UyQjsmLKtkJ8aWLAoiY1ufyxeNzf8ionBR2esaEZRmJ",
      "pubsub": null,
      "tpuQuic": "64.130.51.106:8003",
      "tpuVote": "64.130.51.106:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.106:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.106:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.105:8002",
      "gossip": "208.115.227.105:8001",
      "pubkey": "FoqhkrbjmB5jsZNKNCvvKb72yFZcpKwpdj8uSA8u7sP",
      "pubsub": null,
      "tpuQuic": "208.115.227.105:8003",
      "tpuVote": "208.115.227.105:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.105:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.105:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.185.235.178:8000",
      "gossip": "64.185.235.178:8001",
      "pubkey": "CTPTb5uE8oiveKZ2QeuMBRoKqbMvhBuR47Vx5HP2Ntsz",
      "pubsub": null,
      "tpuQuic": "64.185.235.178:8002",
      "tpuVote": "64.185.235.178:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.185.235.178:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.185.235.178:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.182:8002",
      "gossip": "64.130.50.182:8001",
      "pubkey": "GnGWBG8hbzB2fsFxyuJMu1T1obEsPYvKxg125B2ikZPq",
      "pubsub": null,
      "tpuQuic": "64.130.50.182:8003",
      "tpuVote": "64.130.50.182:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.50.182:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.182:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.37:8002",
      "gossip": "64.130.63.37:8001",
      "pubkey": "Dc3E4cPJSxf9xQwDSQXe8oByAMajGrSnsEWdw58oKjRi",
      "pubsub": null,
      "tpuQuic": "64.130.63.37:8003",
      "tpuVote": "64.130.63.37:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.37:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.37:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.225.151:8002",
      "gossip": "74.63.225.151:8001",
      "pubkey": "BVobQfGuiCVGAEmJTh6fYjymVyov2ExYnxwMMQ9TdBJp",
      "pubsub": null,
      "tpuQuic": "74.63.225.151:8003",
      "tpuVote": "74.63.225.151:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.225.151:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.225.151:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "212.83.42.37:8002",
      "gossip": "212.83.42.37:8001",
      "pubkey": "6ZoHxArWyTD3BCjxc1Nf6rspZjk13P8s3HPqFyxZBZEr",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": "212.83.42.37:8005",
      "version": "4.1.0-beta.3",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.222.124.5:8001",
      "gossip": "89.222.124.5:8000",
      "pubkey": "F9ro7zou6AVpLbY39BYxWTBRNsn2FuQvuo98gGvRZ93y",
      "pubsub": null,
      "tpuQuic": "89.222.124.5:8002",
      "tpuVote": "89.222.124.5:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "89.222.124.5:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.222.124.5:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.55.166:8002",
      "gossip": "64.130.55.166:8001",
      "pubkey": "3v84Ky5PCDxKA7VPmsAHtT2YiWSoWv6DALofXNUq12gC",
      "pubsub": null,
      "tpuQuic": "64.130.55.166:8010",
      "tpuVote": "64.130.55.166:8006",
      "version": "3.1.13",
      "clientId": "JitoLabs",
      "featureSet": 534737035,
      "serveRepair": "64.130.55.166:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.55.166:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "170.39.214.106:8000",
      "gossip": "170.39.214.106:8001",
      "pubkey": "nyc3eiB6TkD62ZzpkTp33cyPvyCZXi84U7X7tw7ZGmP",
      "pubsub": null,
      "tpuQuic": "170.39.214.106:8002",
      "tpuVote": "170.39.214.106:8004",
      "version": "4.1.0-beta.1",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "170.39.214.106:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "170.39.214.106:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.138.91:8002",
      "gossip": "198.13.138.91:8001",
      "pubkey": "FWu44KtnpZxEuRHrx5KrSxSumJqg79b1r4Pw9N2qp4tA",
      "pubsub": null,
      "tpuQuic": "198.13.138.91:8003",
      "tpuVote": "198.13.138.91:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.138.91:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.138.91:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "144.76.100.53:8001",
      "gossip": "144.76.100.53:8000",
      "pubkey": "6KUfs1AcGeWx7joQXaZRaezrB48svh8oJJVxAQhQQ4oX",
      "pubsub": null,
      "tpuQuic": "144.76.100.53:8002",
      "tpuVote": "144.76.100.53:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "144.76.100.53:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "144.76.100.53:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.23.119.3:8001",
      "gossip": "89.23.119.3:8000",
      "pubkey": "Hhmqtm3KAEssJvG8KiaNjY59HA3YJvwNASwH2EQ3a9hE",
      "pubsub": null,
      "tpuQuic": "89.23.119.3:8002",
      "tpuVote": "89.23.119.3:8004",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 744338704,
      "serveRepair": "89.23.119.3:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.23.119.3:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "37.61.215.226:8001",
      "gossip": "37.61.215.226:8000",
      "pubkey": "EQybsk4e2V3q8q9fuwWsNDewTYLhwxj46pDofacBeiSV",
      "pubsub": null,
      "tpuQuic": "37.61.215.226:8002",
      "tpuVote": "37.61.215.226:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "37.61.215.226:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "37.61.215.226:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.111.164:8002",
      "gossip": "208.91.111.164:8001",
      "pubkey": "GS8agKzL1X4rjCyZGQNdogcwPagKPUb9fYdK8Aii6GbL",
      "pubsub": null,
      "tpuQuic": "208.91.111.164:8010",
      "tpuVote": "208.91.111.164:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "208.91.111.164:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.111.164:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "204.16.247.55:7001",
      "pubkey": "5y3cCNf2QaQAxWNcEHEZk4DsehnTTQjaavx1z7u9mEjd",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.162.100:8003",
      "gossip": "63.254.162.100:8001",
      "pubkey": "E6xQd8Y2heco4kYXqmdhXLkL37NpxYD28ik1JcCPrSHM",
      "pubsub": null,
      "tpuQuic": "63.254.162.100:9007",
      "tpuVote": "63.254.162.100:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "63.254.162.100:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.162.100:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "152.70.104.115:8002",
      "gossip": "152.70.104.115:8001",
      "pubkey": "5jSDE9Q7HFUm1b2KwWnmNqz3FBC455uNhHxBA7w1EZu8",
      "pubsub": null,
      "tpuQuic": "152.70.104.115:8010",
      "tpuVote": "152.70.104.115:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "152.70.104.115:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "152.70.104.115:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.109.165.102:8001",
      "gossip": "109.109.165.102:8000",
      "pubkey": "3MWUX8eGFZLm2omuZEP8yoSB1Cd43RJoDNE3MTKPA2eM",
      "pubsub": null,
      "tpuQuic": "109.109.165.102:8002",
      "tpuVote": "109.109.165.102:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.109.165.102:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.109.165.102:8003"
    },
    {
      "rpc": "64.130.44.105:8899",
      "tpu": null,
      "tvu": "64.130.44.105:8001",
      "gossip": "64.130.44.105:8000",
      "pubkey": "7CjSxih1ffdjPmtqUidEwwB6LLLs4PmquXza7J8Y6GCb",
      "pubsub": "64.130.44.105:8900",
      "tpuQuic": "64.130.44.105:8002",
      "tpuVote": "64.130.44.105:8004",
      "version": "4.0.2",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.105:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.105:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "177.54.159.255:8003",
      "gossip": "177.54.159.255:8001",
      "pubkey": "AD5Z1NpvuX2GotPFNHMvUopPJyJPYJ16dBchSfhX1NVb",
      "pubsub": null,
      "tpuQuic": "177.54.159.255:9007",
      "tpuVote": "177.54.159.255:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "177.54.159.255:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "177.54.159.255:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.71:8000",
      "gossip": "64.130.32.71:8001",
      "pubkey": "3jKjLZW5WLwWEizTfCFqpqVW3Aw7H1e5hJNWaAxf23xy",
      "pubsub": null,
      "tpuQuic": "64.130.32.71:8002",
      "tpuVote": "64.130.32.71:8004",
      "version": "4.1.0-rc.0",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.32.71:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.71:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "160.202.131.7:8002",
      "gossip": "160.202.131.7:8001",
      "pubkey": "DXxxrCCvvGjayejfg56Yb2FgeZe2WVioCm4xzEjiyvhp",
      "pubsub": null,
      "tpuQuic": "160.202.131.7:8003",
      "tpuVote": "160.202.131.7:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "160.202.131.7:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "160.202.131.7:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.53.68:8001",
      "gossip": "64.130.53.68:8000",
      "pubkey": "8G1ZbK1kL1g5HBrtX3BKXgciwb4SG8AEZkaJpF15bzC1",
      "pubsub": null,
      "tpuQuic": "64.130.53.68:8002",
      "tpuVote": "64.130.53.68:8004",
      "version": "4.0.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.53.68:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.68:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.32.131.192:11001",
      "gossip": "45.32.131.192:11000",
      "pubkey": "9y4L5hf3HZYqgNSTZzrSqTRtwRtN2wJRsffVqL3xuRC1",
      "pubsub": null,
      "tpuQuic": "45.32.131.192:11002",
      "tpuVote": "45.32.131.192:11004",
      "version": "4.0.0-beta.6",
      "clientId": "Agave",
      "featureSet": 2475355604,
      "serveRepair": "45.32.131.192:11009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.32.131.192:11003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.67.149.207:8002",
      "gossip": "69.67.149.207:8001",
      "pubkey": "4KZBM4wrcmriNcEg6iWyacufyUbxkcBVc9Y8Txf1zvfz",
      "pubsub": null,
      "tpuQuic": "69.67.149.207:8003",
      "tpuVote": "69.67.149.207:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "69.67.149.207:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.67.149.207:8004"
    },
    {
      "rpc": "45.139.132.38:8899",
      "tpu": null,
      "tvu": "45.139.132.38:8001",
      "gossip": "45.139.132.38:8000",
      "pubkey": "B2rZnGU6xLmFZPKbxxWFzmnhf33Z3m2cCjB6BfoaAG5i",
      "pubsub": "45.139.132.38:8900",
      "tpuQuic": "45.139.132.38:8002",
      "tpuVote": "45.139.132.38:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.139.132.38:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.139.132.38:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.48:8002",
      "gossip": "64.130.41.48:8001",
      "pubkey": "DbZvDHBMw77Vk4v7okNnt92ZSj4jCq5eWQnWBwzMCXis",
      "pubsub": null,
      "tpuQuic": "64.130.41.48:8003",
      "tpuVote": "64.130.41.48:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.48:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.48:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.54.156:8002",
      "gossip": "67.209.54.156:8001",
      "pubkey": "4RBJmfekVKTw5FGDvUNcByba62kg8J9JSNJXxeBZLeCz",
      "pubsub": null,
      "tpuQuic": "67.209.54.156:8010",
      "tpuVote": "67.209.54.156:8006",
      "version": "3.0.6",
      "clientId": "Agave",
      "featureSet": 3604001754,
      "serveRepair": "67.209.54.156:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.54.156:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "183.81.168.170:10002",
      "gossip": "183.81.168.170:8001",
      "pubkey": "Hh6cZ9deimADa6QYXRQkDDxtWsp2uHXmJMvJVgSmGENR",
      "pubsub": null,
      "tpuQuic": "183.81.168.170:10003",
      "tpuVote": "183.81.168.170:10005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "183.81.168.170:10010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "183.81.168.170:10004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.53:8001",
      "gossip": "64.130.33.53:8000",
      "pubkey": "DQpnTLznhS1uo7dcyKQwAQL4svRwwnvWSmovqX5rSaTB",
      "pubsub": null,
      "tpuQuic": "64.130.33.53:8002",
      "tpuVote": "64.130.33.53:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.33.53:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.53:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.121:8000",
      "gossip": "185.191.117.121:8001",
      "pubkey": "41yNYzbhuvHeNMR11etmX37eyU7UEw2LVsmDzhH8tjfe",
      "pubsub": null,
      "tpuQuic": "185.191.117.121:8002",
      "tpuVote": "185.191.117.121:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.121:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.121:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "92.205.35.118:8001",
      "gossip": "92.205.35.118:8000",
      "pubkey": "Zujo4RePERC8xWYS4AJioWwfhrKEWNhESvYQEfZeEK1",
      "pubsub": null,
      "tpuQuic": "92.205.35.118:8002",
      "tpuVote": "92.205.35.118:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "92.205.35.118:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "92.205.35.118:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.202:8002",
      "gossip": "198.13.138.183:9013",
      "pubkey": "DTz4uDuwy1Ep52jBfXtBiNBsqLfw4PyZHKDwZYEPrnko",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 1718981463,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.121:8002",
      "gossip": "202.8.11.121:8001",
      "pubkey": "8aeNm8LpDxdiAiK6V7gCc6TjJW4fim3w5hAGZQizBEiZ",
      "pubsub": null,
      "tpuQuic": "202.8.11.121:8003",
      "tpuVote": "202.8.11.121:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.121:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.121:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.8.136:8002",
      "gossip": "202.8.8.136:8001",
      "pubkey": "6KXq7B9ietxs859ASPapYtJDy5ZAFADr7bAxDwN3Jsn5",
      "pubsub": null,
      "tpuQuic": "202.8.8.136:8003",
      "tpuVote": "202.8.8.136:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.8.136:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.8.136:8004"
    },
    {
      "rpc": "37.122.252.21:8899",
      "tpu": null,
      "tvu": "37.122.252.21:9001",
      "gossip": "37.122.252.21:9000",
      "pubkey": "8CNn4obJ6fzd91c3DXh3dske5N5FxnzTM5LL5Wd92YVA",
      "pubsub": "37.122.252.21:8900",
      "tpuQuic": "37.122.252.21:9002",
      "tpuVote": "37.122.252.21:9004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "37.122.252.21:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "37.122.252.21:9003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.197:8002",
      "gossip": "64.130.52.197:8001",
      "pubkey": "FnkBRqhinmSJ2TPMrh3ndShMkyxdJJNFzTUSu6Gff5a2",
      "pubsub": null,
      "tpuQuic": "64.130.52.197:8003",
      "tpuVote": "64.130.52.197:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.197:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.197:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.245:8002",
      "gossip": "64.130.49.245:8001",
      "pubkey": "EzH57zgunDyzNqWrkDJzuiMNaYZZ4mEmbwYPXvMcPqu1",
      "pubsub": null,
      "tpuQuic": "64.130.49.245:8003",
      "tpuVote": "64.130.49.245:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.49.245:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.245:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.3:8002",
      "gossip": "64.130.63.3:8001",
      "pubkey": "G8tx5MaQQ5ZAuchjGrbLLP3vU4ALQZVfJJtJ1F7SbKTb",
      "pubsub": null,
      "tpuQuic": "64.130.63.3:8003",
      "tpuVote": "64.130.63.3:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.3:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.3:8004"
    },
    {
      "rpc": "64.130.32.137:8899",
      "tpu": null,
      "tvu": "64.130.32.137:8000",
      "gossip": "64.130.32.137:8901",
      "pubkey": "B5DJjeGUophwWwHDZH9ThLd3KKxztfwu4NYdhPoE7CBk",
      "pubsub": "64.130.32.137:8900",
      "tpuQuic": "64.130.32.137:8001",
      "tpuVote": "64.130.32.137:8003",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.137:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.137:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.8.45:8002",
      "gossip": "202.8.8.45:8001",
      "pubkey": "aecNXxvx8Mx4wD35XM9mKUk9g3pxh1kwxSoz82kwngm",
      "pubsub": null,
      "tpuQuic": "202.8.8.45:8003",
      "tpuVote": "202.8.8.45:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.8.45:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.8.45:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.44.207.194:8001",
      "gossip": "185.44.207.194:8000",
      "pubkey": "8BiAuCW75pog4QZDKtNEtmF14P3zajxyDAspNFBQ1FmK",
      "pubsub": null,
      "tpuQuic": "185.44.207.194:8002",
      "tpuVote": "185.44.207.194:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.44.207.194:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.44.207.194:8003"
    },
    {
      "rpc": "64.130.37.145:8899",
      "tpu": null,
      "tvu": "64.130.37.145:8001",
      "gossip": "64.130.37.145:8000",
      "pubkey": "J6qaDB8iVQRtuEEW2BDZ134PtbeQn2ePSJpzPE7b6HLF",
      "pubsub": "64.130.37.145:8900",
      "tpuQuic": "64.130.37.145:8002",
      "tpuVote": "64.130.37.145:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.145:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.145:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.131:8002",
      "gossip": "63.254.172.131:8001",
      "pubkey": "DWehv5Xpdk3HCbpTZKP5ns6YZDAh9cyzsF1pB7dopXEc",
      "pubsub": null,
      "tpuQuic": "63.254.172.131:8003",
      "tpuVote": "63.254.172.131:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "63.254.172.131:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.172.131:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.109:8002",
      "gossip": "64.130.50.109:8001",
      "pubkey": "6C32qQb8RvjoDMXxNaWrbro4XXL7uy7qhCgXbVGYznsU",
      "pubsub": null,
      "tpuQuic": "64.130.50.109:8003",
      "tpuVote": "64.130.50.109:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.109:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.109:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "173.231.57.146:8000",
      "gossip": "173.231.57.146:8001",
      "pubkey": "BumMRCFzYXf6QpjsE9er7GGxDP8VnJgYp6AnnAKYwAUT",
      "pubsub": null,
      "tpuQuic": "173.231.57.146:8002",
      "tpuVote": "173.231.57.146:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "173.231.57.146:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "173.231.57.146:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.162.93.125:8002",
      "gossip": "69.162.93.125:8001",
      "pubkey": "Hk6CSRxkErSQi2MnK7R8qJUTckwtaMXr7ZkfFGo4zuu8",
      "pubsub": null,
      "tpuQuic": "69.162.93.125:8003",
      "tpuVote": "69.162.93.125:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "69.162.93.125:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.162.93.125:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.45:18001",
      "gossip": "67.213.121.45:18000",
      "pubkey": "ymUiKKhg3FHV36h2UaiJePWVU9dRQUx6qPmnNyXWQKv",
      "pubsub": null,
      "tpuQuic": "67.213.121.45:18002",
      "tpuVote": "67.213.121.45:18004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.213.121.45:18009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.45:18003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "18.181.206.122:8001",
      "gossip": "18.181.206.122:8000",
      "pubkey": "CUhajmzXtXa73DarLjw48EB9zTsf8FTeQcWdahrBfuBj",
      "pubsub": null,
      "tpuQuic": "18.181.206.122:8002",
      "tpuVote": "18.181.206.122:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "18.181.206.122:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "18.181.206.122:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.120:8002",
      "gossip": "135.125.166.236:8001",
      "pubkey": "7Dw6VParAf6AdpLW1oiLy5gcn5eyDMVR7pHToxqFJUVn",
      "pubsub": null,
      "tpuQuic": "135.125.166.236:8003",
      "tpuVote": "135.125.166.236:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "135.125.166.236:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "135.125.166.236:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "108.61.202.248:8001",
      "gossip": "108.61.202.248:8000",
      "pubkey": "G3vRmZXR2vevMCGnsBpF9dCmvriLvVsULm1FeeC3EGPu",
      "pubsub": null,
      "tpuQuic": "108.61.202.248:8002",
      "tpuVote": "108.61.202.248:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "108.61.202.248:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "108.61.202.248:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "43.167.196.210:8000",
      "gossip": "43.167.196.210:9000",
      "pubkey": "26iUxXiSp2cPd72CoEfKcobruQDUkY1sxE2rojdP38em",
      "pubsub": null,
      "tpuQuic": "43.167.196.210:8001",
      "tpuVote": "43.167.196.210:8003",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "43.167.196.210:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "43.167.196.210:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "40.160.33.1:8001",
      "gossip": "40.160.33.1:8000",
      "pubkey": "ByZZt3FEmXc2zbHZu4xumYYdsCpiYWyV1UW6GUGuN3zH",
      "pubsub": null,
      "tpuQuic": "40.160.33.1:8002",
      "tpuVote": "40.160.33.1:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "40.160.33.1:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "40.160.33.1:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "34.204.79.146:8001",
      "gossip": "34.204.79.146:8000",
      "pubkey": "4en9Bank4uEcRwUkZcfPKXExvHpQiwH5MtLXdMM95tjc",
      "pubsub": null,
      "tpuQuic": "34.204.79.146:8002",
      "tpuVote": "34.204.79.146:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "34.204.79.146:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "34.204.79.146:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.186.104:8002",
      "gossip": "84.32.186.104:8001",
      "pubkey": "5GkW3RBwchDfjKKRkRXd1aLQDXg6rQhbKuSUS86YC9YA",
      "pubsub": null,
      "tpuQuic": "84.32.186.104:8003",
      "tpuVote": "84.32.186.104:8005",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "84.32.186.104:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.186.104:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.248.38:8002",
      "gossip": "208.115.248.38:8001",
      "pubkey": "7uKRnvAKyWAasiBJWnSAM4CDqUQ6eJv8Gvjg6Kyaczkg",
      "pubsub": null,
      "tpuQuic": "208.115.248.38:8003",
      "tpuVote": "208.115.248.38:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.248.38:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.248.38:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.202:8002",
      "gossip": "198.13.138.183:9009",
      "pubkey": "HekJJKRCSi6dwV8zAUqAgh45Qx9Mha3haQC9UgycrctK",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 1718981463,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.20:8002",
      "gossip": "64.130.32.20:8001",
      "pubkey": "q12oJzWSdnWyehACrqFaNkGJSgmRd1B1fVjQrX6QGjS",
      "pubsub": null,
      "tpuQuic": "64.130.32.20:8003",
      "tpuVote": "64.130.32.20:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.20:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.20:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.243.88:8002",
      "gossip": "204.16.243.88:8001",
      "pubkey": "2hVBaapGkDkb5w2HXBjnjjJuoQzcy4knoTW1n1JpQkmx",
      "pubsub": null,
      "tpuQuic": "204.16.243.88:8003",
      "tpuVote": "204.16.243.88:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.243.88:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.243.88:8004"
    },
    {
      "rpc": "169.155.169.151:8895",
      "tpu": null,
      "tvu": "169.155.169.151:8002",
      "gossip": "169.155.169.151:8001",
      "pubkey": "KBhamJP3VmPHj7Az5pn4HUfUmokVTj842qCC98mu7jt",
      "pubsub": "169.155.169.151:8895",
      "tpuQuic": "169.155.169.151:8004",
      "tpuVote": "169.155.169.151:8006",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "169.155.169.151:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "169.155.169.151:8005"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "177.54.155.165:8001",
      "gossip": "177.54.155.165:8000",
      "pubkey": "BX6DGLybRi9CgMVJedTc6HtjTJkiqbMv2LRkpuragcFu",
      "pubsub": null,
      "tpuQuic": "177.54.155.165:8002",
      "tpuVote": "177.54.155.165:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "177.54.155.165:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "177.54.155.165:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.19.222.221:8000",
      "gossip": "162.19.222.221:8001",
      "pubkey": "EhYGRiFBwJgiVsXjtzwwkpuRFNkpDZ7pXVWoqMNYroSV",
      "pubsub": null,
      "tpuQuic": "162.19.222.221:8002",
      "tpuVote": "162.19.222.221:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "162.19.222.221:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.222.221:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "157.90.129.17:8001",
      "gossip": "157.90.129.17:8000",
      "pubkey": "V1yU2Sg6Vps4j41VPEwBYmMDg85pWwSBd7DRrGR6UUZ",
      "pubsub": null,
      "tpuQuic": "157.90.129.17:8000",
      "tpuVote": "157.90.129.17:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "157.90.129.17:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "157.90.129.17:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.218:8003",
      "gossip": "198.13.130.218:8001",
      "pubkey": "7gCW7eQUuZ4ep2z1ntZCPREBRtkL7geCtuXfnzxr5JrG",
      "pubsub": null,
      "tpuQuic": "198.13.130.218:9007",
      "tpuVote": "198.13.130.218:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "198.13.130.218:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.218:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.132.91:8001",
      "gossip": "45.139.132.91:8000",
      "pubkey": "An6tZtSYXDRHZEMiWK4MiSYq61EHC9HkwxYq7cL8gQZ7",
      "pubsub": null,
      "tpuQuic": "45.139.132.91:8002",
      "tpuVote": "45.139.132.91:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "45.139.132.91:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.139.132.91:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.163:8000",
      "gossip": "64.130.40.163:8001",
      "pubkey": "CLmgYBmHe2dnazZA4KU5xMKNkuanKmAUZM3dtFBBzvyE",
      "pubsub": null,
      "tpuQuic": "64.130.40.163:8002",
      "tpuVote": "64.130.40.163:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.40.163:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.163:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "146.19.172.37:8000",
      "gossip": "146.19.172.37:8001",
      "pubkey": "7hSbVXCGeGhkQ3cfQVoWjH4H97W7qNf9fsF7M6FSC7NG",
      "pubsub": null,
      "tpuQuic": "146.19.172.37:8002",
      "tpuVote": "146.19.172.37:8004",
      "version": "4.0.0-beta.7",
      "clientId": "JitoLabs",
      "featureSet": 1253319928,
      "serveRepair": "146.19.172.37:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.19.172.37:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "130.61.188.103:8001",
      "pubkey": "FNraFMfkGPnD75rxEn6xMsweZcybudumYjicj6Y4Zyst",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.248.50.136:8000",
      "gossip": "149.248.50.136:8001",
      "pubkey": "E3PYoUugtSW8xCNpYfERQMp4MtEdeLpFWy7Xx9zMe5SV",
      "pubsub": null,
      "tpuQuic": "149.248.50.136:8002",
      "tpuVote": "149.248.50.136:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "149.248.50.136:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "149.248.50.136:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.88.64.91:18503",
      "gossip": "38.88.64.91:18502",
      "pubkey": "5yq94XNv3eeNWWNrwLpVeWRX6oXQMbURGVBZG6w4p1k8",
      "pubsub": null,
      "tpuQuic": "38.88.64.91:18504",
      "tpuVote": "38.88.64.91:18506",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "38.88.64.91:18511",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.88.64.91:18505"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.65:8002",
      "gossip": "208.115.227.65:8001",
      "pubkey": "AZiCseE6u8PgprS9tQ5yNH6zqpZTGcEeL7xCcN4avUZB",
      "pubsub": null,
      "tpuQuic": "208.115.227.65:8003",
      "tpuVote": "208.115.227.65:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.65:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.65:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.142.203:8002",
      "gossip": "74.118.142.203:8001",
      "pubkey": "6UhiY437yr7W1jpEkCZuBc4SmUjfW2ALPnFc5wBWB6ek",
      "pubsub": null,
      "tpuQuic": "74.118.142.203:8010",
      "tpuVote": "74.118.142.203:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "74.118.142.203:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.142.203:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.252.121.174:8000",
      "gossip": "23.252.121.174:8001",
      "pubkey": "Hi9CBpuiJQLp8UayRKS2Qz8SYu2arZXTcaHqcQdSH3gD",
      "pubsub": null,
      "tpuQuic": "23.252.121.174:8002",
      "tpuVote": "23.252.121.174:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "23.252.121.174:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.252.121.174:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.234.13.22:8001",
      "gossip": "185.234.13.22:9001",
      "pubkey": "LdDaGbcJKxjEQrDDU4a6Nws5jrfsBGL8fFaYEJ8tvsA",
      "pubsub": null,
      "tpuQuic": "185.234.13.22:9008",
      "tpuVote": "185.234.13.22:9002",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "185.234.13.22:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.234.13.22:9008"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.214.64:8002",
      "gossip": "2.57.214.64:8001",
      "pubkey": "Gdj3VYX9FExmHuZUEipJ8n6FmiVxyj8D2g3Yzsy3pw2B",
      "pubsub": null,
      "tpuQuic": "2.57.214.64:8003",
      "tpuVote": "2.57.214.64:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "2.57.214.64:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "2.57.214.64:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "66.165.245.30:8002",
      "gossip": "66.165.245.30:8001",
      "pubkey": "8qXHzEUTTMt2BA8mLb8QLRb8bdhj7ndGzwpviSLVUUju",
      "pubsub": null,
      "tpuQuic": "66.165.245.30:8003",
      "tpuVote": "66.165.245.30:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "66.165.245.30:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "66.165.245.30:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "31.204.159.134:8001",
      "gossip": "31.204.159.134:8000",
      "pubkey": "GH3enpsk3uFBqQxnPDtpaFZfeT8Vfmpmk45D83Lj85rT",
      "pubsub": null,
      "tpuQuic": "31.204.159.134:8002",
      "tpuVote": "31.204.159.134:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "31.204.159.134:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "31.204.159.134:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.143.133:8002",
      "gossip": "74.118.143.133:8001",
      "pubkey": "Fhor6EAqsokiuAu77NDBoD7MhGNzpbx4bxdBuXJ6ysk4",
      "pubsub": null,
      "tpuQuic": "74.118.143.133:8003",
      "tpuVote": "74.118.143.133:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.143.133:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.143.133:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.186:8002",
      "gossip": "64.130.42.186:8001",
      "pubkey": "7LFFX8qNCG8kj3YBUjwTrQGGZvSb5BQxrkETTZMAD3NH",
      "pubsub": null,
      "tpuQuic": "64.130.42.186:8003",
      "tpuVote": "64.130.42.186:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.186:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.186:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.17.96.235:8002",
      "gossip": "46.17.96.235:8001",
      "pubkey": "8tMuAgQnnG9fy4CeC9ci6VuMPEr42rDCZ6rT1fmtHzAR",
      "pubsub": null,
      "tpuQuic": "46.17.96.235:8003",
      "tpuVote": "46.17.96.235:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "46.17.96.235:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "46.17.96.235:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.108:9002",
      "gossip": "64.130.61.108:9001",
      "pubkey": "5yXtKhQ6YTGy6iR9EhfZqvPjyxGfvwPjAv8DKNcLWTVM",
      "pubsub": null,
      "tpuQuic": "64.130.61.108:9003",
      "tpuVote": "64.130.61.108:9005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.61.108:9010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.108:9004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.219.170.147:8000",
      "gossip": "103.219.170.147:8001",
      "pubkey": "FbYantinnH1nqSiiVAZHqYYuX8zKTPmYM5YV1Gy417x6",
      "pubsub": null,
      "tpuQuic": "103.219.170.147:8002",
      "tpuVote": "103.219.170.147:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "103.219.170.147:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.219.170.147:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "168.222.96.14:10002",
      "gossip": "168.222.96.14:8001",
      "pubkey": "24CEcf9B9RY9UE89SYXSkYgfbbBWhni1CvyzBwTm6GUX",
      "pubsub": null,
      "tpuQuic": "168.222.96.14:10003",
      "tpuVote": "168.222.96.14:10005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "168.222.96.14:10010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "168.222.96.14:10004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.238.108.20:8000",
      "gossip": "47.238.108.20:8001",
      "pubkey": "Ggag6smi6bR3JNFkNY4qeohEVxLwacDm3jfbhcnhm5g2",
      "pubsub": null,
      "tpuQuic": "47.238.108.20:8002",
      "tpuVote": "47.238.108.20:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "47.238.108.20:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "47.238.108.20:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.132.12.3:8001",
      "gossip": "23.132.12.3:8000",
      "pubkey": "J7Et2bomU55NV1AhU2m6i7BQiPzZUZVKyjy6pdhwvw2d",
      "pubsub": null,
      "tpuQuic": "23.132.12.3:8002",
      "tpuVote": "23.132.12.3:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "23.132.12.3:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.132.12.3:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.61.209.178:8001",
      "gossip": "5.61.209.178:8000",
      "pubkey": "AbUmvDjzqoUuBVnqKgHvucFi7i1UEN3CLRhy3hazJrKH",
      "pubsub": null,
      "tpuQuic": "5.61.209.178:8002",
      "tpuVote": "5.61.209.178:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "5.61.209.178:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.61.209.178:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.200:8001",
      "gossip": "208.91.110.200:8000",
      "pubkey": "5yN8YHcmfXLudPUFDXWnz5uuFXJK1jfGHRua7US5PdtS",
      "pubsub": null,
      "tpuQuic": "208.91.110.200:8002",
      "tpuVote": "208.91.110.200:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.200:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.200:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.245.8:8002",
      "gossip": "204.16.245.8:8001",
      "pubkey": "2yAaxmrwto2z4LyS88PJZHsjtKDsp2rQu7s9LVVY4N24",
      "pubsub": null,
      "tpuQuic": "204.16.245.8:8003",
      "tpuVote": "204.16.245.8:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "204.16.245.8:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.245.8:8004"
    },
    {
      "rpc": "169.155.168.247:8895",
      "tpu": null,
      "tvu": "169.155.168.247:8002",
      "gossip": "169.155.168.247:8001",
      "pubkey": "4DVEaUwAJJSPBCp837jhP7BXqH6ti9YLaR236oeVnq1W",
      "pubsub": "169.155.168.247:8895",
      "tpuQuic": "169.155.168.247:8003",
      "tpuVote": "169.155.168.247:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "169.155.168.247:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "169.155.168.247:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.140.169.242:8001",
      "gossip": "64.140.169.242:8000",
      "pubkey": "HshcigPR9PsT8ptvkaWUzWDhPjpzonBNPU6jRzUTz7GN",
      "pubsub": null,
      "tpuQuic": "64.140.169.242:8002",
      "tpuVote": "64.140.169.242:8004",
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 103234736,
      "serveRepair": "64.140.169.242:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.140.169.242:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.92:8002",
      "gossip": "64.130.44.92:8001",
      "pubkey": "EdBvMMpar1CvcvLif6RUNfSiFYcyUN6rZzSEk3HSTk3b",
      "pubsub": null,
      "tpuQuic": "64.130.44.92:8003",
      "tpuVote": "64.130.44.92:8005",
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 1036699848,
      "serveRepair": "64.130.44.92:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.92:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.142.202:8002",
      "gossip": "74.118.142.202:8001",
      "pubkey": "GLWHavSSBTbUdHathcfcj4MHe6KUfpjZ3pCpSmdoL7NH",
      "pubsub": null,
      "tpuQuic": "74.118.142.202:8003",
      "tpuVote": "74.118.142.202:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.142.202:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.142.202:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.52.240:8001",
      "gossip": "67.209.52.240:8000",
      "pubkey": "7vSERQ1y6XmE6Qzi3ifi3ATtpxwttFhk5yt8S3ioePRh",
      "pubsub": null,
      "tpuQuic": "67.209.52.240:8002",
      "tpuVote": "67.209.52.240:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.209.52.240:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.52.240:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.45.136:8002",
      "gossip": "64.130.45.136:8001",
      "pubkey": "26FCjTLvrCEKA4NGcYbTyVUHcYwF7UfefgmgxudAtdh6",
      "pubsub": null,
      "tpuQuic": "64.130.45.136:8003",
      "tpuVote": "64.130.45.136:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.45.136:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.45.136:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.97.137:8001",
      "gossip": "109.94.97.137:8000",
      "pubkey": "6yMZRXE25GvjKTsr7JzgvGctZQtdANPeNHzQnrzMm5f6",
      "pubsub": null,
      "tpuQuic": "109.94.97.137:8002",
      "tpuVote": "109.94.97.137:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.94.97.137:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.97.137:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "8.216.87.21:8001",
      "gossip": "8.216.87.21:8000",
      "pubkey": "2KDxf5np6kMQ1uNA1GHNoiRFvt8t2Gqb6cVVNTdFtnyM",
      "pubsub": null,
      "tpuQuic": "8.216.87.21:8002",
      "tpuVote": "8.216.87.21:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "8.216.87.21:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "8.216.87.21:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.129:8002",
      "gossip": "145.239.233.181:8001",
      "pubkey": "7qszS2Y7y4Yi3Nx49tNXVHbqrUFXpmFHHiCybC5CB89g",
      "pubsub": null,
      "tpuQuic": "145.239.233.181:8003",
      "tpuVote": "145.239.233.181:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "145.239.233.181:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "145.239.233.181:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.227:8001",
      "gossip": "64.130.43.227:8000",
      "pubkey": "7Br2mfWaQ9eah93BJCSGpsw7zLxtgQ4QJNKHrjsCtDC2",
      "pubsub": null,
      "tpuQuic": "64.130.43.227:8002",
      "tpuVote": "64.130.43.227:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.43.227:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.227:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.214:8002",
      "gossip": "64.130.42.214:8001",
      "pubkey": "6uYK3HEnjRdLKCtLdQe3cb55pta5PAf9KRbjf8EKAwkJ",
      "pubsub": null,
      "tpuQuic": "64.130.42.214:8003",
      "tpuVote": "64.130.42.214:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2478291359,
      "serveRepair": "64.130.42.214:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.214:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.167.235.180:8002",
      "gossip": "103.167.235.180:8001",
      "pubkey": "AAxKcKiuioNxiBXR3xGziYah3bji5jUH6FJFgZnbErEs",
      "pubsub": null,
      "tpuQuic": "103.167.235.180:8003",
      "tpuVote": "103.167.235.180:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.167.235.180:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.167.235.180:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.143.244:8002",
      "gossip": "74.118.143.244:8001",
      "pubkey": "Enhz3CG5Pf5vQtG4osLkTywh7xgsZJTUP6pktYEKpx9j",
      "pubsub": null,
      "tpuQuic": "74.118.143.244:8003",
      "tpuVote": "74.118.143.244:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.143.244:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.143.244:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.223.242:8002",
      "gossip": "208.115.223.242:8001",
      "pubkey": "68xHuhwGBBCgNgRBHJEj2NXJ8gYDsVJQDQ7cz9uMwQsQ",
      "pubsub": null,
      "tpuQuic": "208.115.223.242:8003",
      "tpuVote": "208.115.223.242:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.223.242:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.223.242:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.78:8001",
      "gossip": "64.130.49.78:8000",
      "pubkey": "CV99G9WFFTX5zkpJuaVYT3d5KYUUXNZ6JNkM4L9SfKsH",
      "pubsub": null,
      "tpuQuic": "64.130.49.78:8002",
      "tpuVote": "64.130.49.78:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.49.78:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.78:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.141.236:8001",
      "gossip": "104.204.141.236:8000",
      "pubkey": "4YL3qLExSBGHpKh3gscHuWEThMaJSUeMF5fpxr4WM8fY",
      "pubsub": null,
      "tpuQuic": "104.204.141.236:8002",
      "tpuVote": "104.204.141.236:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.204.141.236:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.141.236:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "108.171.202.236:8000",
      "gossip": "108.171.202.236:8001",
      "pubkey": "BYYyjVc6tv9mFsZ3Y7dMLaqfHQMXjUx5aeudhTXtc6sD",
      "pubsub": null,
      "tpuQuic": "108.171.202.236:8002",
      "tpuVote": "108.171.202.236:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "108.171.202.236:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "108.171.202.236:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "31.204.159.135:8001",
      "gossip": "31.204.159.135:8000",
      "pubkey": "7Fgn13GyWZDvqfTd8ZDnDYdbhAiaeciXvb9WWLfqBwUb",
      "pubsub": null,
      "tpuQuic": "31.204.159.135:8002",
      "tpuVote": "31.204.159.135:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "31.204.159.135:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "31.204.159.135:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.83.27:8001",
      "gossip": "57.129.83.27:8000",
      "pubkey": "AFBHRGWn5t4Nt6g98o6W6qiAtWPcFiXbnApiZaFWr6Dd",
      "pubsub": null,
      "tpuQuic": "57.129.83.27:8002",
      "tpuVote": "57.129.83.27:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "57.129.83.27:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.83.27:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.11.172.2:8001",
      "gossip": "141.11.172.2:8000",
      "pubkey": "gaECm96WhjHFDR2wjsJAENcLWRWrxuSerMbdzB71nbT",
      "pubsub": null,
      "tpuQuic": "141.11.172.2:8002",
      "tpuVote": "141.11.172.2:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.11.172.2:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.11.172.2:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "95.67.10.106:8000",
      "gossip": "95.67.10.106:8001",
      "pubkey": "H2KxofgJj2awY6Lg8ZNzBH7mdMDFW6YXuBWXMAx7pnND",
      "pubsub": null,
      "tpuQuic": "95.67.10.106:8002",
      "tpuVote": "95.67.10.106:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "95.67.10.106:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "95.67.10.106:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.84.231.4:8003",
      "gossip": "38.84.231.4:8001",
      "pubkey": "Gc2gaT6eVRgSkAeoLSC4uNBYbTDYHjAxpGyEt82U796p",
      "pubsub": null,
      "tpuQuic": "38.84.231.4:9007",
      "tpuVote": "38.84.231.4:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "38.84.231.4:8910",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.84.231.4:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.185:8001",
      "gossip": "67.213.121.185:8000",
      "pubkey": "fsMhN9YAPNqyETmo4epujzF8MTqHciQCpnZpYQf4WwL",
      "pubsub": null,
      "tpuQuic": "67.213.121.185:8002",
      "tpuVote": "67.213.121.185:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.121.185:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.185:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.177:8001",
      "gossip": "64.130.41.177:8000",
      "pubkey": "H1pLBpc3dasAebP27A1MjGPsKGKssAHZVGHUHYdwNFas",
      "pubsub": null,
      "tpuQuic": "64.130.41.177:8002",
      "tpuVote": "64.130.41.177:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.41.177:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.177:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.208:8002",
      "gossip": "64.130.49.208:8001",
      "pubkey": "ABTMbv3ih2Nn2TbgXR2km2ii47kA3JwJV8vmLukReZF6",
      "pubsub": null,
      "tpuQuic": "64.130.49.208:8003",
      "tpuVote": "64.130.49.208:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.49.208:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.208:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "157.90.36.101:8001",
      "gossip": "157.90.36.101:8000",
      "pubkey": "Aa5h1epY8NEaKEfYxQqmEUuQsmVmudroXjsSKdXDgUMj",
      "pubsub": null,
      "tpuQuic": "157.90.36.101:8002",
      "tpuVote": "157.90.36.101:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "157.90.36.101:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "157.90.36.101:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.42:8002",
      "gossip": "64.130.63.42:8001",
      "pubkey": "GZouT6RQpdwQR46nuVW3Bu7cQdY35Aym9XUawGkEmoGE",
      "pubsub": null,
      "tpuQuic": "64.130.63.42:8003",
      "tpuVote": "64.130.63.42:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.42:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.42:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "13.115.241.179:8001",
      "gossip": "13.115.241.179:8000",
      "pubkey": "F63x38c6Y2wUurAx1Gpu6YD9GtXtbtyZ9phAzBj481jU",
      "pubsub": null,
      "tpuQuic": "13.115.241.179:8002",
      "tpuVote": "13.115.241.179:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "13.115.241.179:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "13.115.241.179:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "169.150.228.2:8001",
      "gossip": "169.150.228.2:8000",
      "pubkey": "fzj1BrvZoLrkUE2FPQVozjKRKKojAttBMvvBbdXsEWa",
      "pubsub": null,
      "tpuQuic": "169.150.228.2:8002",
      "tpuVote": "169.150.228.2:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "169.150.228.2:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "169.150.228.2:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.140:8002",
      "gossip": "64.130.50.140:8001",
      "pubkey": "A6vboCdQe3f7trTM5yE7o4Yrpbt5Ar3MGrZEneDWyVP8",
      "pubsub": null,
      "tpuQuic": "64.130.50.140:8003",
      "tpuVote": "64.130.50.140:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.140:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.140:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "54.173.155.105:8000",
      "gossip": "54.173.155.105:8001",
      "pubkey": "QTgsAcRsqdiKX8MhVqGRy8FUR6JZ4K6BUDJvZxTwWRY",
      "pubsub": null,
      "tpuQuic": "54.173.155.105:8002",
      "tpuVote": "54.173.155.105:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.173.155.105:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.173.155.105:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.200:9002",
      "gossip": "64.130.43.200:9001",
      "pubkey": "2buDtffsx445R5PA2GPu8vaExu22VZbu3RUJc7vGSawQ",
      "pubsub": null,
      "tpuQuic": "64.130.43.200:9003",
      "tpuVote": "64.130.43.200:9005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.43.200:9010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.200:9004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.83:10002",
      "gossip": "45.154.33.83:8001",
      "pubkey": "HtNL7r8Kh7BRFQLQESET6UXrYki2bVKdvaLANzL1NMcT",
      "pubsub": null,
      "tpuQuic": "45.154.33.83:10003",
      "tpuVote": "45.154.33.83:10005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.154.33.83:10010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.83:10004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "77.223.113.47:8001",
      "gossip": "77.223.113.47:8000",
      "pubkey": "6aLUwsQdZoqEHqGmTeJQnJGTqgrwgKBfXuEcBqkwQGUL",
      "pubsub": null,
      "tpuQuic": "77.223.113.47:8009",
      "tpuVote": "77.223.113.47:8005",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "77.223.113.47:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "77.223.113.47:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.136.167:8002",
      "gossip": "198.13.136.167:8001",
      "pubkey": "gtNjmWqHFizsQqaGZHTvQKZKwBHBmyeMZ64tigvxsWG",
      "pubsub": null,
      "tpuQuic": "198.13.136.167:8003",
      "tpuVote": "198.13.136.167:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.136.167:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.136.167:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.78:8001",
      "gossip": "64.130.37.78:8000",
      "pubkey": "DnN5dnZXW5cT4pEf4VHqEVGYJ75ukzmC6oNta4xTB8B4",
      "pubsub": null,
      "tpuQuic": "64.130.37.78:8002",
      "tpuVote": "64.130.37.78:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.37.78:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.78:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.131:9002",
      "gossip": "64.130.63.131:9001",
      "pubkey": "CJKJb8LhfVZAhcmCLVj5RwLVGGAvCxfn6TESuzE8JMzX",
      "pubsub": null,
      "tpuQuic": "64.130.63.131:9003",
      "tpuVote": "64.130.63.131:9005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.63.131:9010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.131:9004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.113.121:8001",
      "gossip": "67.213.113.121:8000",
      "pubkey": "AHBRFKWYiM8JMQMfNZ8jupkd2TuemcCLYybBz4bPwqww",
      "pubsub": null,
      "tpuQuic": "67.213.113.121:8002",
      "tpuVote": "67.213.113.121:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.213.113.121:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.113.121:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.80.231:8002",
      "gossip": "64.34.80.231:8001",
      "pubkey": "H9GddPa7cKbZt75rifn55XjuSgQEZoqfmDhYEZzr1Dxb",
      "pubsub": null,
      "tpuQuic": "64.34.80.231:8003",
      "tpuVote": "64.34.80.231:8005",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "64.34.80.231:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.80.231:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.41:8000",
      "gossip": "64.130.61.41:8001",
      "pubkey": "5nkdGcmDQk4Wq1evbQGwzRERMVUtpZ9CKM3gbmLYVQU2",
      "pubsub": null,
      "tpuQuic": "64.130.61.41:8002",
      "tpuVote": "64.130.61.41:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.61.41:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.41:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.9.21:8002",
      "gossip": "202.8.9.21:8001",
      "pubkey": "C5xadtyMKqwKExsUmFN9sH1CDs3A4haNsaBqXnZDvQZu",
      "pubsub": null,
      "tpuQuic": "202.8.9.21:8003",
      "tpuVote": "202.8.9.21:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "202.8.9.21:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.9.21:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.140.72:8000",
      "gossip": "104.204.140.72:8001",
      "pubkey": "913fNi3NqvwxXPJnKwDj6voXodVNoPeUzxZsvJrmWbZm",
      "pubsub": null,
      "tpuQuic": "104.204.140.72:8002",
      "tpuVote": "104.204.140.72:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "104.204.140.72:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.140.72:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.189.44.132:8016",
      "gossip": "185.189.44.132:8015",
      "pubkey": "9egigMgQoZKPpfV8LGNckwAWXhEXZdAjBV6UDsiFD6yN",
      "pubsub": null,
      "tpuQuic": "185.189.44.132:8017",
      "tpuVote": "185.189.44.132:8019",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "185.189.44.132:8024",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.189.44.132:8018"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.72:8002",
      "gossip": "64.130.57.72:8001",
      "pubkey": "6vy3EpVjJJP9jhNwxGQZkKNA95xohY5bmttmJieMe7hf",
      "pubsub": null,
      "tpuQuic": "64.130.57.72:8003",
      "tpuVote": "64.130.57.72:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.57.72:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.72:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.235.219.100:8001",
      "gossip": "15.235.219.100:8000",
      "pubkey": "DSdAk8SAhjG9xPsoutb1nbzTafjo4LPahSPT7MdkrJrt",
      "pubsub": null,
      "tpuQuic": "15.235.219.100:8002",
      "tpuVote": "15.235.219.100:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "15.235.219.100:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.235.219.100:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "52.53.215.218:8000",
      "pubkey": "227AAz9szsWgzJ9aMjCNHsKAwvTd7QhpSTcQ1ZRpR2XZ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.131:8002",
      "gossip": "64.130.41.131:8001",
      "pubkey": "mcb3ieXSbz8GPeDuLLxzomxGtk6YgfCL5uY5JCjUrNR",
      "pubsub": null,
      "tpuQuic": "64.130.41.131:8003",
      "tpuVote": "64.130.41.131:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.41.131:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.131:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.66.180.251:8001",
      "gossip": "103.66.180.251:8000",
      "pubkey": "51nLRn56xUcVRFWGSZUicr5W9hmF7hHqskXr4cfXSirw",
      "pubsub": null,
      "tpuQuic": "103.66.180.251:8002",
      "tpuVote": "103.66.180.251:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "103.66.180.251:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.66.180.251:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "66.245.192.120:8001",
      "gossip": "66.245.192.120:8000",
      "pubkey": "Do6UymKJV5QTXeNJjTAB1qmhhrhUZ3XfG6Kk1i6WqWuA",
      "pubsub": null,
      "tpuQuic": "66.245.192.120:8002",
      "tpuVote": "66.245.192.120:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "66.245.192.120:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "66.245.192.120:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.42:9002",
      "gossip": "198.13.130.42:9001",
      "pubkey": "EkbyVmersZeRdVdeTthFfZrykCWU76aW9fMhoVqES6ZH",
      "pubsub": null,
      "tpuQuic": "198.13.130.42:9003",
      "tpuVote": "198.13.130.42:9005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "198.13.130.42:9010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.42:9004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "95.217.87.137:20000",
      "gossip": "95.217.87.137:8000",
      "pubkey": "52f34vNc4T7WL2DKocE9511henQWvugArziJ6qBS3FQ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.88:8000",
      "gossip": "64.130.44.88:8001",
      "pubkey": "ENScTpPMpZRSFKj1yvQ587CiQJ8u7wLDNsUbdVuDYSV",
      "pubsub": null,
      "tpuQuic": "64.130.44.88:8002",
      "tpuVote": "64.130.44.88:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.88:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.88:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.185:8002",
      "gossip": "64.130.41.185:8001",
      "pubkey": "GPhMv88zqwAqTpCegRWJY1RKR16Y4J1eUb6W3psv7mbY",
      "pubsub": null,
      "tpuQuic": "64.130.41.185:8003",
      "tpuVote": "64.130.41.185:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.185:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.185:8004"
    },
    {
      "rpc": "64.130.34.199:8899",
      "tpu": null,
      "tvu": "64.130.34.199:8000",
      "gossip": "64.130.34.199:8901",
      "pubkey": "5UCjrobFCwAbWmRReALyqShRTUwqNzXjmED5GADdUcQg",
      "pubsub": "64.130.34.199:8900",
      "tpuQuic": "64.130.34.199:8001",
      "tpuVote": "64.130.34.199:8003",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.34.199:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.34.199:8002"
    },
    {
      "rpc": "64.130.37.164:8899",
      "tpu": null,
      "tvu": "64.130.37.164:8001",
      "gossip": "64.130.37.164:8000",
      "pubkey": "PyRK3hCoAwS8WGFFoc6nL3BQm5orQrv1baKQhbBTenc",
      "pubsub": "64.130.37.164:8900",
      "tpuQuic": "64.130.37.164:8002",
      "tpuVote": "64.130.37.164:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.37.164:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.164:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.51:8001",
      "gossip": "64.130.52.51:8000",
      "pubkey": "4wMRuXSY5jPkUubpFCbr3TxQ8P4SGCbJyKpz3fHzqVNs",
      "pubsub": null,
      "tpuQuic": "64.130.52.51:8002",
      "tpuVote": "64.130.52.51:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.51:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.51:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.106:9002",
      "gossip": "64.130.33.106:9001",
      "pubkey": "5DWNYqYDZdXChXdcrc73ypzracrR1cvgQfagFyURsK7w",
      "pubsub": null,
      "tpuQuic": "64.130.33.106:9003",
      "tpuVote": "64.130.33.106:9005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.33.106:9010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.106:9004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.45:8002",
      "gossip": "64.31.54.45:8001",
      "pubkey": "23o2KDdmv1RyQm3xeZcGHN5Pd6X7yAzRMWDh4nkYgf44",
      "pubsub": null,
      "tpuQuic": "64.31.54.45:8003",
      "tpuVote": "64.31.54.45:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.45:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.45:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.45.17:8001",
      "gossip": "64.130.45.17:8000",
      "pubkey": "Dg1CKkYMbHHY56deRNnVbb6YGzuT2Wr8qAX88RCW1PMd",
      "pubsub": null,
      "tpuQuic": "64.130.45.17:8002",
      "tpuVote": "64.130.45.17:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.45.17:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.45.17:8003"
    },
    {
      "rpc": "104.204.143.101:8899",
      "tpu": null,
      "tvu": "104.204.143.101:8000",
      "gossip": "104.204.143.101:8001",
      "pubkey": "8r7i74XrG1gbQtMm6KxhYXRJMKeGJc5jCjfv33kkuPVM",
      "pubsub": "104.204.143.101:8900",
      "tpuQuic": "104.204.143.101:8002",
      "tpuVote": "104.204.143.101:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "104.204.143.101:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.143.101:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.169:8002",
      "gossip": "64.130.33.169:8001",
      "pubkey": "mcsXdSsykvtmVr2L76qXLYLi8Qc3H7Zo1mW73TLUvo5",
      "pubsub": null,
      "tpuQuic": "64.130.33.169:8003",
      "tpuVote": "64.130.33.169:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.33.169:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.169:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.87:8001",
      "gossip": "45.154.33.87:8000",
      "pubkey": "FgUmjTvtRy37Cr2WtEAHTTPMDBmtrVQFb7q2FABQzhMK",
      "pubsub": null,
      "tpuQuic": "45.154.33.87:8002",
      "tpuVote": "45.154.33.87:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "45.154.33.87:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.87:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.204.46.163:8001",
      "gossip": "15.204.46.163:8000",
      "pubkey": "8Z9iWCyNerDj5XAXChZjADsLQQBnFbSsH4N2aLaGYBDW",
      "pubsub": null,
      "tpuQuic": "15.204.46.163:8002",
      "tpuVote": "15.204.46.163:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "15.204.46.163:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.46.163:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.187.35.5:8000",
      "gossip": "5.187.35.5:8001",
      "pubkey": "9PqYMEFY43S971V1KpU486CvxF7Hv9JcChs9axkAhDPJ",
      "pubsub": null,
      "tpuQuic": "5.187.35.5:8002",
      "tpuVote": "5.187.35.5:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "5.187.35.5:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.187.35.5:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.109.115:8001",
      "gossip": "208.91.109.115:8000",
      "pubkey": "DoMjbTUfx93paMRaGH4dsYCJTM2CuE1jBQXUQX3diDQM",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.114:8002",
      "gossip": "64.130.37.114:8001",
      "pubkey": "2LvGD3kxgpbrt9aavy41p6M7eRdPGTBpNLq8FU889N7T",
      "pubsub": null,
      "tpuQuic": "64.130.37.114:8003",
      "tpuVote": "64.130.37.114:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.114:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.114:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.144.245.158:8002",
      "gossip": "216.144.245.158:8001",
      "pubkey": "EAq497Fxbbq1JszJYzpHCVc6x3ZAi8bSEi4E6K9eUS49",
      "pubsub": null,
      "tpuQuic": "216.144.245.158:8003",
      "tpuVote": "216.144.245.158:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "216.144.245.158:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.144.245.158:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "151.241.225.10:10002",
      "gossip": "151.241.225.10:8001",
      "pubkey": "Rsvp2Wy146u2UU6NDBUQNqNStTsPrQMbYKRtiiJnnvn",
      "pubsub": null,
      "tpuQuic": "151.241.225.10:10003",
      "tpuVote": "151.241.225.10:10005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "151.241.225.10:10010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "151.241.225.10:10004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.21:8002",
      "gossip": "64.31.54.21:8001",
      "pubkey": "9WaLLArsyTBDq4DRQTkbEW6Kux2d6BvCMFG9atSFLpeG",
      "pubsub": null,
      "tpuQuic": "64.31.54.21:8003",
      "tpuVote": "64.31.54.21:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.21:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.21:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "108.171.202.98:8003",
      "gossip": "108.171.202.98:8001",
      "pubkey": "51AhSAXGhUxGyJPGA7pWL2BQiULXqahPLNnZZcx5ke3e",
      "pubsub": null,
      "tpuQuic": "108.171.202.98:9007",
      "tpuVote": "108.171.202.98:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "108.171.202.98:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "108.171.202.98:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.174:8001",
      "gossip": "64.130.32.174:8000",
      "pubkey": "G1iGE66yqPyL7PJQAosMUNTCfVBcC6NbaC7tnmPJBPh3",
      "pubsub": null,
      "tpuQuic": "64.130.32.174:8002",
      "tpuVote": "64.130.32.174:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.174:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.174:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "189.1.164.137:8002",
      "gossip": "189.1.164.137:8001",
      "pubkey": "bw3QYExsu2i44qHWuLdZkAqUEgKVjkcNknzdaW83gJE",
      "pubsub": null,
      "tpuQuic": "189.1.164.137:8003",
      "tpuVote": "189.1.164.137:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "189.1.164.137:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "189.1.164.137:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.31:8002",
      "gossip": "64.31.54.31:8001",
      "pubkey": "2tDrPobU4wiC3Vu7G38J8J9xnJoVqPDoHBQViSubyJcF",
      "pubsub": null,
      "tpuQuic": "64.31.54.31:8003",
      "tpuVote": "64.31.54.31:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.31:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.31:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.170:8002",
      "gossip": "141.98.219.170:8001",
      "pubkey": "5Rp9cLwm8gWqLeCRGMLCChqbN7Ck157ejtrM1HsA2M5t",
      "pubsub": null,
      "tpuQuic": "141.98.219.170:8003",
      "tpuVote": "141.98.219.170:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.219.170:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.170:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.54.41:8002",
      "gossip": "67.209.54.41:8001",
      "pubkey": "HdWiUPmy4Wro8oPTwH7qaJxAieup5Uqwm7V3A3PtG6Hb",
      "pubsub": null,
      "tpuQuic": "67.209.54.41:8003",
      "tpuVote": "67.209.54.41:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.209.54.41:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.54.41:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.245.186.92:11000",
      "gossip": "162.245.186.92:8001",
      "pubkey": "AAoBorcRXePSqj4YuJ9i1ZMkGDsQrt8EkaWXwHDYiJan",
      "pubsub": null,
      "tpuQuic": "162.245.186.92:8003",
      "tpuVote": "162.245.186.92:11003",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "162.245.186.92:11008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.245.186.92:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.55.26:8000",
      "gossip": "64.31.55.26:8801",
      "pubkey": "91ojfWAy638yJdgoyNWzLpiJ9sNDzqV6gmFFEk1Htpb6",
      "pubsub": null,
      "tpuQuic": "64.31.55.26:8001",
      "tpuVote": "64.31.55.26:8003",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "64.31.55.26:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.55.26:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.152:8002",
      "gossip": "141.98.219.152:8001",
      "pubkey": "9XBMLJeUbR3JTE3b9ShwWtbypSwQq7trMzaYWBYyq7b",
      "pubsub": null,
      "tpuQuic": "141.98.219.152:8010",
      "tpuVote": "141.98.219.152:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "141.98.219.152:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.152:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.89:8003",
      "gossip": "64.130.50.89:8001",
      "pubkey": "AKELE4qnhYtB4yxeQmMqJ7nx8qvT1XcPbSdyXbGTd7tG",
      "pubsub": null,
      "tpuQuic": "64.130.50.89:9007",
      "tpuVote": "64.130.50.89:9001",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 1668064299,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.89:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.215.211:8001",
      "gossip": "2.57.215.211:8000",
      "pubkey": "4ZLEdaNrbt3v7vdpA69iyXRThbBrSywgimqoULgZk5Nx",
      "pubsub": null,
      "tpuQuic": "2.57.215.211:8009",
      "tpuVote": "2.57.215.211:8005",
      "version": "3.0.6",
      "clientId": "Agave",
      "featureSet": 3604001754,
      "serveRepair": "2.57.215.211:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "2.57.215.211:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.120:8001",
      "gossip": "198.13.130.120:8000",
      "pubkey": "BcQx8zeH4H2bT31z81UMNMFMEazsLSdoL9kJtcPUwBB6",
      "pubsub": null,
      "tpuQuic": "198.13.130.120:8002",
      "tpuVote": "198.13.130.120:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.130.120:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.120:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.73:8002",
      "gossip": "198.13.130.73:8001",
      "pubkey": "DJTVPQHCF4XmuE1PpcL7bvLWPpWzGkuCb9RiTBMcsd11",
      "pubsub": null,
      "tpuQuic": "198.13.130.73:8003",
      "tpuVote": "198.13.130.73:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.73:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.73:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.99:8002",
      "gossip": "208.115.227.99:8001",
      "pubkey": "73CNDeX1NfCJPWbAuDMpwdrsKuC3hD1EcCZmw1KrxFgq",
      "pubsub": null,
      "tpuQuic": "208.115.227.99:8003",
      "tpuVote": "208.115.227.99:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.99:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.99:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.42.175:8002",
      "gossip": "64.31.42.175:8001",
      "pubkey": "4FpAH7P9w1iAzaNrpSMfqmZCGfoMDtfTJRPHsC8Zk6RZ",
      "pubsub": null,
      "tpuQuic": "64.31.42.175:8003",
      "tpuVote": "64.31.42.175:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.42.175:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.42.175:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "91.237.141.127:8000",
      "gossip": "91.237.141.127:8001",
      "pubkey": "9ptZMcPPoiDpkiCiPAP3gq1rq6UTetEKptAGs254ismW",
      "pubsub": null,
      "tpuQuic": "91.237.141.127:8002",
      "tpuVote": "91.237.141.127:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "91.237.141.127:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.237.141.127:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.61:8031",
      "gossip": "64.130.32.61:8030",
      "pubkey": "5G3vdYxvUdxe7FzAenFUnLB2QRm3zCt3FZ5FAn2nCTpc",
      "pubsub": null,
      "tpuQuic": "64.130.32.61:8032",
      "tpuVote": "64.130.32.61:8034",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.61:8039",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.61:8033"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "37.61.211.33:8001",
      "gossip": "37.61.211.33:8000",
      "pubkey": "E9Dq4Nx9rk8qogjiFWJkSRX9z86GTrvoVKHrox9ev4SV",
      "pubsub": null,
      "tpuQuic": "37.61.211.33:8002",
      "tpuVote": "37.61.211.33:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "37.61.211.33:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "37.61.211.33:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.62.107:8002",
      "gossip": "64.130.62.107:8001",
      "pubkey": "ayo9kYFtNPUAXJwCNWf8JyhP2dfToF2vUPebtGpQyka",
      "pubsub": null,
      "tpuQuic": "64.130.62.107:8003",
      "tpuVote": "64.130.62.107:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.62.107:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.62.107:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.108:8002",
      "gossip": "64.130.59.108:8001",
      "pubkey": "HG2ttZASUn4X2AFPEhNZwzAjzq5o417bcFsZXHSStS7A",
      "pubsub": null,
      "tpuQuic": "64.130.59.108:8003",
      "tpuVote": "64.130.59.108:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.108:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.108:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.140.11:8000",
      "gossip": "104.204.140.11:8001",
      "pubkey": "DD16hofBxZriuo93i257SttzsVjb84Mj2uVKwA4URSBc",
      "pubsub": null,
      "tpuQuic": "104.204.140.11:8002",
      "tpuVote": "104.204.140.11:8004",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2478291359,
      "serveRepair": "104.204.140.11:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.140.11:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.13.109:8002",
      "gossip": "64.31.13.109:8001",
      "pubkey": "B2GjGpQB2VnifBubrY5XXyheNnfPGCx24kf5hZQh5DBu",
      "pubsub": null,
      "tpuQuic": "64.31.13.109:8003",
      "tpuVote": "64.31.13.109:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.13.109:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.13.109:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.156:8002",
      "gossip": "64.130.54.156:8001",
      "pubkey": "CQGcxQ7kBqWMY2j92TsDHKUs9b4YosxsyP4onwyoYbGK",
      "pubsub": null,
      "tpuQuic": "64.130.54.156:8003",
      "tpuVote": "64.130.54.156:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.156:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.156:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.121:8002",
      "gossip": "64.130.49.121:8001",
      "pubkey": "3ZJ2PekMsLUKqMSbwEArr8onH4fzaSGgZiBLhkaDPBbR",
      "pubsub": null,
      "tpuQuic": "64.130.49.121:8003",
      "tpuVote": "64.130.49.121:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.49.121:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.121:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.242:8002",
      "gossip": "208.91.110.242:8001",
      "pubkey": "3JzmFiWpahi4MH6M4wQmjupDaRARXVkf6cKoKu79nq1c",
      "pubsub": null,
      "tpuQuic": "208.91.110.242:8003",
      "tpuVote": "208.91.110.242:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.242:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.242:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.111.243:8002",
      "gossip": "208.91.111.243:8001",
      "pubkey": "CUgRVA2Fqr1GwPX7qqsZXVawmhdfe3xNZ5s38edWp2df",
      "pubsub": null,
      "tpuQuic": "208.91.111.243:8003",
      "tpuVote": "208.91.111.243:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.111.243:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.111.243:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "148.113.199.182:8000",
      "gossip": "148.113.199.182:8001",
      "pubkey": "YgoAmGTXkJyscUymuM34nku8c5FC6CtJ4svpaiEVEu9",
      "pubsub": null,
      "tpuQuic": "148.113.199.182:8002",
      "tpuVote": "148.113.199.182:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "148.113.199.182:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "148.113.199.182:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.78:8001",
      "gossip": "64.130.44.78:8000",
      "pubkey": "5zcvCFmVERiSTm8vQvCZYGVSD2khsSZFNntbwYSTn3t9",
      "pubsub": null,
      "tpuQuic": "64.130.44.78:8002",
      "tpuVote": "64.130.44.78:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.44.78:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.78:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.34.150:8000",
      "gossip": "64.130.34.150:8001",
      "pubkey": "9yHBdX91XnDCtXZvX6qfjomzyvgMJW2tsDgHh2MmqfPv",
      "pubsub": null,
      "tpuQuic": "64.130.34.150:8002",
      "tpuVote": "64.130.34.150:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.34.150:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.34.150:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.96.125:8001",
      "gossip": "109.94.96.125:8000",
      "pubkey": "3Cx444vaEdFRr3TytZnfPgi7s7xvWVV9gTLQNAYbAmPZ",
      "pubsub": null,
      "tpuQuic": "109.94.96.125:8002",
      "tpuVote": "109.94.96.125:8004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "109.94.96.125:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.96.125:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.133:8002",
      "gossip": "51.81.25.227:8001",
      "pubkey": "CJgH3S3UJGKoT43eva51uH2cCqLAtJCrQA2CfMeaYYjX",
      "pubsub": null,
      "tpuQuic": "51.81.25.227:8003",
      "tpuVote": "51.81.25.227:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.25.227:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.25.227:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.8.115:8001",
      "gossip": "202.8.8.115:8000",
      "pubkey": "CScVCD36Bq8Vp7W48Lf4dDSJDr47BKo9J7z2kxCnPWfp",
      "pubsub": null,
      "tpuQuic": "202.8.8.115:8002",
      "tpuVote": "202.8.8.115:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.8.115:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.8.115:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "3.68.13.36:8001",
      "gossip": "3.68.13.36:8000",
      "pubkey": "3VohuVWGdxt66zuNRXH3LQ3ncxJH4JL3Jwuu4mqG4tWL",
      "pubsub": null,
      "tpuQuic": "3.68.13.36:8002",
      "tpuVote": "3.68.13.36:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "3.68.13.36:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "3.68.13.36:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.157:8001",
      "gossip": "198.13.134.157:8000",
      "pubkey": "5gwNU5DAuzauxLRsv7FTtvb2xRsZMtEVbzcejxTmvuF7",
      "pubsub": null,
      "tpuQuic": "198.13.134.157:8002",
      "tpuVote": "198.13.134.157:8004",
      "version": "4.0.0-beta.6",
      "clientId": "Agave",
      "featureSet": 2475355604,
      "serveRepair": "198.13.134.157:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.157:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.205.106:8002",
      "gossip": "208.115.205.106:8001",
      "pubkey": "BBNg9PeZqrzbp3esau4Zj5N4WxHBzcFsTikhf1cg16y8",
      "pubsub": null,
      "tpuQuic": "208.115.205.106:8003",
      "tpuVote": "208.115.205.106:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.205.106:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.205.106:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.8.148:8002",
      "gossip": "202.8.8.148:8001",
      "pubkey": "Ag2kibrwrJTxrfFBdijziUkL2LdNKasTzqBEGxYbd8H",
      "pubsub": null,
      "tpuQuic": "202.8.8.148:8003",
      "tpuVote": "202.8.8.148:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.8.148:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.8.148:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.149:8002",
      "gossip": "67.213.121.149:8001",
      "pubkey": "5dg1MinVSJQC8DMWtkAyr5A43HK3MEG11CVNVPnVmrSE",
      "pubsub": null,
      "tpuQuic": "67.213.121.149:8003",
      "tpuVote": "67.213.121.149:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.213.121.149:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.149:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.39.66:8002",
      "gossip": "64.31.39.66:8001",
      "pubkey": "88V8UTjsiFYUp7b5VpnsvZhMFCibXj51qfeY9bba6BWF",
      "pubsub": null,
      "tpuQuic": "64.31.39.66:8003",
      "tpuVote": "64.31.39.66:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.39.66:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.39.66:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.122.17:8002",
      "gossip": "67.213.122.17:8001",
      "pubkey": "65XC6m4amoxnH6ChydmQhTBNqVow9SU4eS4bvAgDAhmP",
      "pubsub": null,
      "tpuQuic": "67.213.122.17:8003",
      "tpuVote": "67.213.122.17:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "67.213.122.17:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.122.17:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.219.171.221:8000",
      "gossip": "103.219.171.221:8001",
      "pubkey": "EjEYpHtRtP2pLDhPwTDeFAenPo2m5ixNEQrX9R2eH74K",
      "pubsub": null,
      "tpuQuic": "103.219.171.221:8002",
      "tpuVote": "103.219.171.221:8004",
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 398636002,
      "serveRepair": "103.219.171.221:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.219.171.221:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.58.59.30:8001",
      "gossip": "2.58.59.30:8000",
      "pubkey": "G5dzYQwBpMB91irx8h4k2A4vDTpXZdaRPp88DAmBXqi",
      "pubsub": null,
      "tpuQuic": "2.58.59.30:8002",
      "tpuVote": "2.58.59.30:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "2.58.59.30:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "2.58.59.30:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.42:8002",
      "gossip": "64.130.42.42:8001",
      "pubkey": "CaANvQAJAPpna6n8ZzXu8R2zmuvhTCFWBNWGGbN8C31d",
      "pubsub": null,
      "tpuQuic": "64.130.42.42:8003",
      "tpuVote": "64.130.42.42:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.42:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.42:8004"
    },
    {
      "rpc": "23.92.177.76:21611",
      "tpu": null,
      "tvu": "23.92.177.76:11601",
      "gossip": "23.92.177.76:21610",
      "pubkey": "9AxeEYQdFtwGvbMk2vZJiueQzZVwjbESpZefJSnqwGbo",
      "pubsub": "23.92.177.76:21612",
      "tpuQuic": "23.92.177.76:11602",
      "tpuVote": "23.92.177.76:11604",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "23.92.177.76:11609",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.92.177.76:11603"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "43.207.169.120:38001",
      "gossip": "43.207.169.120:38000",
      "pubkey": "HxtMmdbieSLrLmp5CJRRJ3hPXfoonikVsJWJAsUbs8EX",
      "pubsub": null,
      "tpuQuic": "43.207.169.120:38002",
      "tpuVote": "43.207.169.120:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "43.207.169.120:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "43.207.169.120:38003"
    },
    {
      "rpc": "195.12.227.235:8899",
      "tpu": null,
      "tvu": "195.12.227.235:8003",
      "gossip": "195.12.227.235:8001",
      "pubkey": "nv7mbL2USH5chnZTzccF9EvEoCjuMu28fgvgfbkCAWB",
      "pubsub": "195.12.227.235:8900",
      "tpuQuic": "195.12.227.235:9007",
      "tpuVote": "195.12.227.235:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "195.12.227.235:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "195.12.227.235:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.116:8001",
      "gossip": "64.130.44.116:8000",
      "pubkey": "4FHcHPduWoUnMRNSB1ybawrKfC5aUnvTaz5PY8iMpS6e",
      "pubsub": null,
      "tpuQuic": "64.130.44.116:8002",
      "tpuVote": "64.130.44.116:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.44.116:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.116:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.56.23:8002",
      "gossip": "64.130.56.23:8001",
      "pubkey": "6GNCioEtnVZq3LiU46XMQEBSyfGUkoWEhH8ymjvaJaJV",
      "pubsub": null,
      "tpuQuic": "64.130.56.23:8003",
      "tpuVote": "64.130.56.23:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.56.23:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.56.23:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.134.66.3:8001",
      "gossip": "185.134.66.3:8000",
      "pubkey": "NdM2UmeyT3ZznnPsYsc2B4K3cmoc5FiuhJ6CVBNjuhE",
      "pubsub": null,
      "tpuQuic": "185.134.66.3:8002",
      "tpuVote": "185.134.66.3:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.134.66.3:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.134.66.3:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.80:8003",
      "gossip": "45.154.33.80:8001",
      "pubkey": "8Udw6U5GBPdizxGQ11KTFLFvc3NXE4oDCaYvb9E6DNof",
      "pubsub": null,
      "tpuQuic": "45.154.33.80:8026",
      "tpuVote": "45.154.33.80:8020",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 915572817,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.80:8026"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "151.241.225.13:8003",
      "gossip": "151.241.225.13:8001",
      "pubkey": "Dom8JFtfhCFs3eR8218jTgKDUyQcnpJrLTBUxwpg5cmh",
      "pubsub": null,
      "tpuQuic": "151.241.225.13:8026",
      "tpuVote": "151.241.225.13:8020",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 915572817,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "151.241.225.13:8026"
    },
    {
      "rpc": "91.199.149.203:8899",
      "tpu": null,
      "tvu": "91.199.149.203:8001",
      "gossip": "91.199.149.203:8000",
      "pubkey": "sWyfZaozxeyvPkS6HK6xrDFmBFUwRmmjVtPPffawZWR",
      "pubsub": "91.199.149.203:8900",
      "tpuQuic": "91.199.149.203:8002",
      "tpuVote": "91.199.149.203:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "91.199.149.203:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.199.149.203:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.176.110:8901",
      "gossip": "84.32.176.110:8900",
      "pubkey": "N2jWLFbdiPtbgegxCjDwbdSPVRT4VyfCJsVDPJrfSLV",
      "pubsub": null,
      "tpuQuic": "84.32.176.110:8902",
      "tpuVote": "84.32.176.110:8904",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "84.32.176.110:8909",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.176.110:8903"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.52.178:8002",
      "gossip": "64.31.52.178:8001",
      "pubkey": "Bq2Xw8gHtdAGkamuXbhvyJN72WDjCX4njbaY8eHN2hqC",
      "pubsub": null,
      "tpuQuic": "64.31.52.178:8003",
      "tpuVote": "64.31.52.178:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.52.178:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.52.178:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.137.183:8001",
      "gossip": "198.13.137.183:8000",
      "pubkey": "8sChneJLbzZYDdPAXwjQFTQqN7RL6zCV9kqUku6Dai9B",
      "pubsub": null,
      "tpuQuic": "198.13.137.183:8002",
      "tpuVote": "198.13.137.183:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.137.183:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.137.183:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.32.162.87:11001",
      "gossip": "185.32.162.87:11000",
      "pubkey": "9mtfELWEagdmH5Po2xdXuXbJPWYsFqzjFgsAHQGrZzeG",
      "pubsub": null,
      "tpuQuic": "185.32.162.87:11002",
      "tpuVote": "185.32.162.87:11004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.32.162.87:11009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.32.162.87:11003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.97:8001",
      "gossip": "64.130.43.97:8000",
      "pubkey": "BhYR5B5QcE2gnQKfbUaUE9i8Q3xPAoUyBrpWy7pydX17",
      "pubsub": null,
      "tpuQuic": "64.130.43.97:8002",
      "tpuVote": "64.130.43.97:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.97:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.97:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.80.129:8002",
      "gossip": "64.34.80.129:8001",
      "pubkey": "4SyLDBSrd4rZjsqZc7zjVN8ZfmjBY6YUnmyxKqYxGYRh",
      "pubsub": null,
      "tpuQuic": "64.34.80.129:8003",
      "tpuVote": "64.34.80.129:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.34.80.129:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.80.129:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.77:8000",
      "gossip": "185.191.117.77:8001",
      "pubkey": "GvjDM9PXrVJXpN1tGLRFMHb1RzxRJRdZYVDH2x9mY4jC",
      "pubsub": null,
      "tpuQuic": "185.191.117.77:8002",
      "tpuVote": "185.191.117.77:8004",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2700650398,
      "serveRepair": "185.191.117.77:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.77:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "43.167.176.81:8000",
      "gossip": "43.167.176.81:9000",
      "pubkey": "4h3NQUd4FrUBN7nDnzZJzVLyH9LFy3kw3t3csVg5Bjn2",
      "pubsub": null,
      "tpuQuic": "43.167.176.81:8001",
      "tpuVote": "43.167.176.81:8003",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "43.167.176.81:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "43.167.176.81:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.217.152:8002",
      "gossip": "141.98.217.152:8001",
      "pubkey": "EkQ81RaE6pH55BeZqedBGH43V4wT2aD9u5Bj4S39Kzfx",
      "pubsub": null,
      "tpuQuic": "141.98.217.152:8003",
      "tpuVote": "141.98.217.152:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.217.152:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.217.152:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.158:8002",
      "gossip": "64.130.49.158:8001",
      "pubkey": "67XQwRvbEfje3yR4DaRW6Tf96WQdzT1QocGBnYRbW2kx",
      "pubsub": null,
      "tpuQuic": "64.130.49.158:8010",
      "tpuVote": "64.130.49.158:8006",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "64.130.49.158:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.158:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.42.231.19:8001",
      "gossip": "89.42.231.19:8000",
      "pubkey": "HXEzYVLDMAPEMoYL5HjFSDzYoCjerQivyodNecsNBMPt",
      "pubsub": null,
      "tpuQuic": "89.42.231.19:8002",
      "tpuVote": "89.42.231.19:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "89.42.231.19:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.42.231.19:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.56.125:8003",
      "gossip": "64.130.56.125:9723",
      "pubkey": "9Prduv2nQ3YcSJH7Rg6V8NxhNeNBctBVJcdSKon9FTb2",
      "pubsub": null,
      "tpuQuic": "64.130.56.125:9007",
      "tpuVote": "64.130.56.125:9001",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 1668064299,
      "serveRepair": "64.130.56.125:8702",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.56.125:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "62.197.45.101:8001",
      "gossip": "62.197.45.101:8000",
      "pubkey": "Er27jUHSSiCrhtiW3FLQ3eHpQpMAmwgDYPHAibuwNpWZ",
      "pubsub": null,
      "tpuQuic": "62.197.45.101:8002",
      "tpuVote": "62.197.45.101:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "62.197.45.101:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "62.197.45.101:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.36:8002",
      "gossip": "64.130.44.36:8001",
      "pubkey": "AcEgeTs9TBuPgUqL2c2CqrrGsxRRpt6BXGgimcrteKwv",
      "pubsub": null,
      "tpuQuic": "64.130.44.36:8003",
      "tpuVote": "64.130.44.36:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.36:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.36:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "208.91.110.146:7002",
      "pubkey": "8vKWGQueq4cR5HFuca6DQUMAo5GQamrbfaY2hn6HUVtR",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.53.70:8001",
      "gossip": "64.130.53.70:8000",
      "pubkey": "E8JKg2AjxzY1saZ4Dyx9MDp5hXw2wXpvZrmWBcfQoSV",
      "pubsub": null,
      "tpuQuic": "64.130.53.70:8002",
      "tpuVote": "64.130.53.70:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "64.130.53.70:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.70:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "212.102.34.34:8001",
      "gossip": "212.102.34.34:8000",
      "pubkey": "EGMQbtxDV7fTv8YJbFNfqQMXuw38CCki3926UVyXbUUQ",
      "pubsub": null,
      "tpuQuic": "212.102.34.34:8002",
      "tpuVote": "212.102.34.34:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "212.102.34.34:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "212.102.34.34:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.198:8002",
      "gossip": "64.130.40.198:8001",
      "pubkey": "EAXqkECbQc3mYt12MkEKY4XrpxUGjGALasskLD1Z4HEF",
      "pubsub": null,
      "tpuQuic": "64.130.40.198:8003",
      "tpuVote": "64.130.40.198:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.198:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.198:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.223.214:8002",
      "gossip": "208.115.223.214:8001",
      "pubkey": "CLtiQMabGeyEDisCNxJdqWwctMW6Kx5qx4EXQVTLtM76",
      "pubsub": null,
      "tpuQuic": "208.115.223.214:8003",
      "tpuVote": "208.115.223.214:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.223.214:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.223.214:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.203:8002",
      "gossip": "64.130.42.203:8001",
      "pubkey": "2J5yVxRncLiRoi9CUzBdGzWbyNuQ5Ejj1YwuLpSTaaFa",
      "pubsub": null,
      "tpuQuic": "64.130.42.203:8003",
      "tpuVote": "64.130.42.203:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.203:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.203:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.163:8002",
      "gossip": "64.130.37.163:8001",
      "pubkey": "9gogBxEfFxvwqQ3xt1sSKDoEQXB7cPvr1AVnwkn5ejx",
      "pubsub": null,
      "tpuQuic": "64.130.37.163:8003",
      "tpuVote": "64.130.37.163:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.163:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.163:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.62.204:8002",
      "gossip": "64.130.62.204:8001",
      "pubkey": "5UEvemjpoTAzYHm8nErj4RNP5NvwtZs6sB5Gx7MjjibE",
      "pubsub": null,
      "tpuQuic": "64.130.62.204:8003",
      "tpuVote": "64.130.62.204:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.62.204:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.62.204:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "160.202.128.133:8002",
      "gossip": "160.202.128.133:8001",
      "pubkey": "EkAhk1dWiCMK6JVNAHS49X24Mk7R44BXt8PBDjHx7NcZ",
      "pubsub": null,
      "tpuQuic": "160.202.128.133:8003",
      "tpuVote": "160.202.128.133:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "160.202.128.133:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "160.202.128.133:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.91:8002",
      "gossip": "51.89.25.43:8001",
      "pubkey": "BcELRtM8EpjU7sQTDci9sb9kxhpdoeTfYLnmh54Tam4z",
      "pubsub": null,
      "tpuQuic": "51.89.25.43:8003",
      "tpuVote": "51.89.25.43:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.43:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.43:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.225.147:8002",
      "gossip": "74.63.225.147:8001",
      "pubkey": "J4wYZyBjVFkcg1P1Pgmo6VS2eGQajeQebdcuqmeftPhr",
      "pubsub": null,
      "tpuQuic": "74.63.225.147:8003",
      "tpuVote": "74.63.225.147:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.225.147:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.225.147:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.209.178.57:8001",
      "gossip": "185.209.178.57:8000",
      "pubkey": "CfW6K7fHuZfSomCJf6mJfAupyn5m9uPQAxy5RAz5XQaP",
      "pubsub": null,
      "tpuQuic": "185.209.178.57:8002",
      "tpuVote": "185.209.178.57:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.209.178.57:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.209.178.57:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.111.175:8002",
      "gossip": "208.91.111.175:8001",
      "pubkey": "8wyPpqCD4x39ndSYJ6qAPyW1HzfB1L7t7a9sLuqVdCyA",
      "pubsub": null,
      "tpuQuic": "208.91.111.175:8003",
      "tpuVote": "208.91.111.175:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.111.175:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.111.175:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.245:8001",
      "gossip": "64.130.47.245:8000",
      "pubkey": "3GS3NPG1CFauHkQaAktSWT5Jfs796MQMmCGKoRwEKR4b",
      "pubsub": null,
      "tpuQuic": "64.130.47.245:8002",
      "tpuVote": "64.130.47.245:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.47.245:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.245:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.77:8000",
      "gossip": "64.130.57.77:8001",
      "pubkey": "DZDvqmNy2bUZTDf26HwyTgcovxgvhFdL9DRhLLSkic17",
      "pubsub": null,
      "tpuQuic": "64.130.57.77:8002",
      "tpuVote": "64.130.57.77:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.57.77:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.77:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "43.167.199.129:8000",
      "gossip": "43.167.199.129:9000",
      "pubkey": "97baPRWnBKKLe22A2Fsbcxs7VQ7W4hj5t6WWPF8HhXL6",
      "pubsub": null,
      "tpuQuic": "43.167.199.129:8001",
      "tpuVote": "43.167.199.129:8003",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "43.167.199.129:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "43.167.199.129:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.127.97:8021",
      "gossip": "67.213.127.97:8001",
      "pubkey": "BpdmpWst6JpgRqUfUdr2P2eiJDCxmRXpTwMqq7St8vFH",
      "pubsub": null,
      "tpuQuic": "67.213.127.97:8022",
      "tpuVote": "67.213.127.97:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "67.213.127.97:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.127.97:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.36.78:18001",
      "gossip": "88.216.36.78:18000",
      "pubkey": "6Q8iJZx5BorNMKesFYchtbARvrqUzQnuDpWTG8yQNbmS",
      "pubsub": null,
      "tpuQuic": "88.216.36.78:18002",
      "tpuVote": "88.216.36.78:18004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "88.216.36.78:18009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.36.78:18003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.118:8002",
      "gossip": "54.37.90.198:8001",
      "pubkey": "BCULgTQa39QT5hS5LX9s6QPLqubHHE9SaGXPfjkdRYPk",
      "pubsub": null,
      "tpuQuic": "54.37.90.198:8003",
      "tpuVote": "54.37.90.198:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.37.90.198:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.37.90.198:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.16.38.217:8001",
      "gossip": "185.16.38.217:8000",
      "pubkey": "DvmModZnDRtNfoBoReCUJMdz8ZhG4XZuUAZEBHDrLRKk",
      "pubsub": null,
      "tpuQuic": "185.16.38.217:8002",
      "tpuVote": "185.16.38.217:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.16.38.217:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.16.38.217:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.58.165:8002",
      "gossip": "64.31.58.165:8001",
      "pubkey": "DjVALf6mBWVEFK5dN4ETCUCoRXF1Xgay3Z15zHcx3Bk",
      "pubsub": null,
      "tpuQuic": "64.31.58.165:8003",
      "tpuVote": "64.31.58.165:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.58.165:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.58.165:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.39.218.153:8001",
      "gossip": "5.39.218.153:8000",
      "pubkey": "Cmd5Ddx81HY66Ggfa659EJfa4o7zycFqdjmHieESkWu1",
      "pubsub": null,
      "tpuQuic": "5.39.218.153:8002",
      "tpuVote": "5.39.218.153:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "5.39.218.153:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.39.218.153:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.136.212.154:8000",
      "gossip": "45.136.212.154:8001",
      "pubkey": "Qm7hR85EcuRjQS8mJkaT6AyJWUHAujSrcPj1CorXAKm",
      "pubsub": null,
      "tpuQuic": "45.136.212.154:8002",
      "tpuVote": "45.136.212.154:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "45.136.212.154:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.136.212.154:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.144:8003",
      "gossip": "64.130.33.144:8001",
      "pubkey": "GedMsLdi24rhZZeag6tCRGLRUWhjsLSj9F1WugVXZY49",
      "pubsub": null,
      "tpuQuic": "64.130.33.144:9007",
      "tpuVote": "64.130.33.144:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "64.130.33.144:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.144:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.116.240:8002",
      "gossip": "185.191.116.240:8001",
      "pubkey": "8DaCnTAUFQbnA91mgH6jBifMsACNtuB7Rbjacxdxmw5F",
      "pubsub": null,
      "tpuQuic": "185.191.116.240:8003",
      "tpuVote": "185.191.116.240:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "185.191.116.240:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.116.240:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "155.138.129.241:8900",
      "gossip": "155.138.129.241:8001",
      "pubkey": "HN6SxPDThBUJU89PD881xNtXDt6RYQMYVY3dWiTW2oxK",
      "pubsub": null,
      "tpuQuic": "155.138.129.241:8901",
      "tpuVote": "155.138.129.241:8903",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "155.138.129.241:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "155.138.129.241:8902"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.111.240:8001",
      "gossip": "208.91.111.240:8000",
      "pubkey": "3RSaANtr31SPKQHcJaFecpQdoPrmXXGJ5zK4UxC1TVRc",
      "pubsub": null,
      "tpuQuic": "208.91.111.240:8002",
      "tpuVote": "208.91.111.240:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.111.240:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.111.240:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.61.209.71:8001",
      "gossip": "5.61.209.71:8000",
      "pubkey": "BsgjPN79A5bz1sXFu8MSzPKTjLEj8WgJLAaduNZhC28u",
      "pubsub": null,
      "tpuQuic": "5.61.209.71:8002",
      "tpuVote": "5.61.209.71:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "5.61.209.71:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.61.209.71:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.234.13.13:8000",
      "gossip": "185.234.13.13:8001",
      "pubkey": "4jwSSfx3fTsoBEEKuKvrkvLWH9dYTq5k4cqJr37FZG3n",
      "pubsub": null,
      "tpuQuic": "185.234.13.13:8002",
      "tpuVote": "185.234.13.13:8004",
      "version": "4.0.0-beta.7",
      "clientId": "JitoLabs",
      "featureSet": 1253319928,
      "serveRepair": "185.234.13.13:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.234.13.13:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.202:8002",
      "gossip": "64.130.57.202:8001",
      "pubkey": "H4GK6cjmvCq47E74joAPQ9QX6m2NCSYLeC4nCxC7y3Mk",
      "pubsub": null,
      "tpuQuic": "64.130.57.202:8003",
      "tpuVote": "64.130.57.202:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.57.202:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.202:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.128.210.101:8001",
      "gossip": "57.128.210.101:8000",
      "pubkey": "junksD2shAPaHDfxWp4E9bHEjbu5k35fuH1r5kqxs9i",
      "pubsub": null,
      "tpuQuic": "57.128.210.101:8002",
      "tpuVote": "57.128.210.101:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "57.128.210.101:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.128.210.101:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "173.231.41.66:8003",
      "gossip": "173.231.41.66:8001",
      "pubkey": "6gTSiTGzobPnyGAASsGaAZdjvVriYB9iUe2JhFpC3C4R",
      "pubsub": null,
      "tpuQuic": "173.231.41.66:9007",
      "tpuVote": "173.231.41.66:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "173.231.41.66:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "173.231.41.66:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "136.243.75.190:8000",
      "gossip": "136.243.75.190:8001",
      "pubkey": "8gePA3eAzqZDqUFfZbfX2cMuSc2C5C338cc1gEUoqF1n",
      "pubsub": null,
      "tpuQuic": "136.243.75.190:8002",
      "tpuVote": "136.243.75.190:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "136.243.75.190:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "136.243.75.190:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.199:8001",
      "gossip": "64.130.47.199:8000",
      "pubkey": "3xHAdNpce5ja4jt5Ppp5MnPyTyo8ScfLrHyzvD2go59j",
      "pubsub": null,
      "tpuQuic": "64.130.47.199:8002",
      "tpuVote": "64.130.47.199:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.47.199:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.199:8003"
    },
    {
      "rpc": "84.32.97.2:8899",
      "tpu": null,
      "tvu": "84.32.97.2:8003",
      "gossip": "84.32.97.2:8001",
      "pubkey": "5iNKw7QX3drWG7myUiJuuspLF99Gtj5W8dAsKhHPB341",
      "pubsub": "84.32.97.2:8900",
      "tpuQuic": "84.32.97.2:9007",
      "tpuVote": "84.32.97.2:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "84.32.97.2:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.97.2:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.22:8001",
      "gossip": "198.13.134.22:8000",
      "pubkey": "8xjszcz9K448gvC4rBKrdFcVVfL57Ld4MpzSkESaLcUM",
      "pubsub": null,
      "tpuQuic": "198.13.134.22:8002",
      "tpuVote": "198.13.134.22:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.134.22:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.22:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.38:8002",
      "gossip": "64.130.44.38:8001",
      "pubkey": "sshJfmnoyPGZ1NQjofy24si9pA3PPYfEE2gwLPv2Yju",
      "pubsub": null,
      "tpuQuic": "64.130.44.38:8003",
      "tpuVote": "64.130.44.38:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.38:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.38:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.80.111:8002",
      "gossip": "64.34.80.111:8001",
      "pubkey": "2fAALowdEKxuEe62VwAGHNEb8QWYxgHDQdhX2KjjJe3X",
      "pubsub": null,
      "tpuQuic": "64.34.80.111:8003",
      "tpuVote": "64.34.80.111:8005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.34.80.111:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.80.111:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "154.30.2.50:8001",
      "gossip": "154.30.2.50:8000",
      "pubkey": "Eg6TntRa6ECCYUvhAtKWXeELLCkZVxTwKBEgD3VGjpxM",
      "pubsub": null,
      "tpuQuic": "154.30.2.50:8002",
      "tpuVote": "154.30.2.50:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "154.30.2.50:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "154.30.2.50:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.8.149:8002",
      "gossip": "202.8.8.149:8001",
      "pubkey": "2KGfM6xW5FTKDGiH91ct9yBSocFwd2YNDsEShQQRUvNV",
      "pubsub": null,
      "tpuQuic": "202.8.8.149:8003",
      "tpuVote": "202.8.8.149:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "202.8.8.149:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.8.149:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.51.5:8002",
      "gossip": "64.31.51.5:8001",
      "pubkey": "BDrpuoFF3YgJHBUQbgNAyD4yuouooohjbHKG6uuYy5KZ",
      "pubsub": null,
      "tpuQuic": "64.31.51.5:8003",
      "tpuVote": "64.31.51.5:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.51.5:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.51.5:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.96.123:8001",
      "gossip": "109.94.96.123:8000",
      "pubkey": "EixLEhCtGXU6zbv7NuHbdti7AUp6ApU5tiiDv32wsZDc",
      "pubsub": null,
      "tpuQuic": "109.94.96.123:8002",
      "tpuVote": "109.94.96.123:8004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "109.94.96.123:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.96.123:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "146.235.225.226:8002",
      "gossip": "146.235.225.226:8001",
      "pubkey": "8cAGCgzxQxJcC9HuHm2vCXBvgr9UVKZbecqR6YEdoD2v",
      "pubsub": null,
      "tpuQuic": "146.235.225.226:8010",
      "tpuVote": "146.235.225.226:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "146.235.225.226:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.235.225.226:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.109:8001",
      "gossip": "64.130.44.109:8000",
      "pubkey": "8RHx7GSbumiQDr4E6au1pj4SDewt6RyvgWfk3ZQsUmXD",
      "pubsub": null,
      "tpuQuic": "64.130.44.109:8002",
      "tpuVote": "64.130.44.109:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.44.109:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.109:8003"
    },
    {
      "rpc": "89.42.231.14:8899",
      "tpu": null,
      "tvu": "89.42.231.14:8001",
      "gossip": "89.42.231.14:8000",
      "pubkey": "HP2dg31GUYCq9JssKbUpeLKmzrxut3Dr3ajLYmaM5qjG",
      "pubsub": "89.42.231.14:8900",
      "tpuQuic": "89.42.231.14:8002",
      "tpuVote": "89.42.231.14:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "89.42.231.14:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.42.231.14:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.242:8000",
      "gossip": "64.130.58.242:8001",
      "pubkey": "EVBPNHVLRPisb4Xx2NZSxEQ5w3BHCgaN7QtGXE8c8YSV",
      "pubsub": null,
      "tpuQuic": "64.130.58.242:8002",
      "tpuVote": "64.130.58.242:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.58.242:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.242:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "61.111.3.82:8001",
      "gossip": "61.111.3.82:8000",
      "pubkey": "J9WFni7ZMDceER2Cxq33ALWJr8U4Xm1n2Up7JTvQ6rW6",
      "pubsub": null,
      "tpuQuic": "61.111.3.82:8002",
      "tpuVote": "61.111.3.82:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "61.111.3.82:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "61.111.3.82:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.141.77:8001",
      "gossip": "104.204.141.77:8000",
      "pubkey": "8mar3qQyaL9HNbbZMMPQnj3KBreUf6oE5vtup1arcKCt",
      "pubsub": null,
      "tpuQuic": "104.204.141.77:8002",
      "tpuVote": "104.204.141.77:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "104.204.141.77:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.141.77:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.36.39:8001",
      "gossip": "88.216.36.39:8000",
      "pubkey": "6MSmMxrmk8dWo47Mh4BysEuoUiREjnm64KbShBGmiqmW",
      "pubsub": null,
      "tpuQuic": "88.216.36.39:8002",
      "tpuVote": "88.216.36.39:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "88.216.36.39:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.36.39:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.189.80:8016",
      "gossip": "84.32.189.80:8015",
      "pubkey": "Fj4ZH4SWKi51zUdj477XwCgLWzb3rgkrwF7BjiZgPn8g",
      "pubsub": null,
      "tpuQuic": "84.32.189.80:8017",
      "tpuVote": "84.32.189.80:8019",
      "version": "4.0.0-rc.0",
      "clientId": "JitoLabs",
      "featureSet": 767961353,
      "serveRepair": "84.32.189.80:8024",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.189.80:8018"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.31:8001",
      "gossip": "64.130.43.31:8000",
      "pubkey": "8DBNeuHDTJqfgFk25V6qMgTUSwmQZZWSwzjGEkYouNAq",
      "pubsub": null,
      "tpuQuic": "64.130.43.31:8002",
      "tpuVote": "64.130.43.31:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.31:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.31:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.39.111:8002",
      "gossip": "64.31.39.111:8001",
      "pubkey": "EncbjXgCNE6iojewB6MvpxFGNx7E1TWNsm92minSmN4t",
      "pubsub": null,
      "tpuQuic": "64.31.39.111:8003",
      "tpuVote": "64.31.39.111:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.39.111:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.39.111:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.244.113.247:8001",
      "gossip": "103.244.113.247:8000",
      "pubkey": "78UryrQKhNm1JUdNYKfpCpRi1hV9yW8d1m5dVg6DoPx3",
      "pubsub": null,
      "tpuQuic": "103.244.113.247:8002",
      "tpuVote": "103.244.113.247:8004",
      "version": "4.0.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "103.244.113.247:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.244.113.247:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.36.148:8002",
      "gossip": "57.129.36.148:8001",
      "pubkey": "CbiFM3hzkcFQVKQdXgfVwqcMDCL2ceSvf64TAUeWQngB",
      "pubsub": null,
      "tpuQuic": "57.129.36.148:8003",
      "tpuVote": "57.129.36.148:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "57.129.36.148:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.36.148:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.202:8002",
      "gossip": "198.13.138.183:9003",
      "pubkey": "8bePXGpTvCkrs3PXwyLHRhgHHepgJPecNFMKd7bbrrnU",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 1718981463,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.32.13:8002",
      "gossip": "64.31.32.13:8001",
      "pubkey": "8gAyRY1MXTBy6D7Af7JxDmwJTYBEAFpkqhVZhdwxbTnv",
      "pubsub": null,
      "tpuQuic": "64.31.32.13:8003",
      "tpuVote": "64.31.32.13:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.32.13:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.32.13:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.155:8002",
      "gossip": "64.130.54.155:8001",
      "pubkey": "5mtpv14VPRRFHfZadL6nNFPbGjBXvtpHqSyMFmYhsVQw",
      "pubsub": null,
      "tpuQuic": "64.130.54.155:8003",
      "tpuVote": "64.130.54.155:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.155:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.155:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "35.210.245.136:8001",
      "gossip": "35.210.245.136:8000",
      "pubkey": "HGtV6fQxPGB8oktA8mWZjsAR7TRbwvsmhx5b9gM9KwyN",
      "pubsub": null,
      "tpuQuic": "35.210.245.136:8002",
      "tpuVote": "35.210.245.136:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "35.210.245.136:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "35.210.245.136:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.48:8001",
      "gossip": "198.13.130.48:8000",
      "pubkey": "4efzfg2bTrH42tmPAWqYSqdhTRdhsoYxojfXjP2egBgn",
      "pubsub": null,
      "tpuQuic": "198.13.130.48:8002",
      "tpuVote": "198.13.130.48:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.130.48:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.48:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.164.125:8001",
      "gossip": "5.199.164.125:8000",
      "pubkey": "BNdc3V2Z4gWhmMkyqVfkCR4Evy84TSi8omVkwKRShhZq",
      "pubsub": null,
      "tpuQuic": "5.199.164.125:8002",
      "tpuVote": "5.199.164.125:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "5.199.164.125:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.164.125:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.109.26:8002",
      "gossip": "208.91.109.26:8001",
      "pubkey": "GYojh9a9e2kG7m9RfQmuvQmLjKLiLnsF1wwSeMDe1gyY",
      "pubsub": null,
      "tpuQuic": "208.91.109.26:8010",
      "tpuVote": "208.91.109.26:8006",
      "version": "3.0.14",
      "clientId": "AgaveBam",
      "featureSet": 3604001754,
      "serveRepair": "208.91.109.26:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.26:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.232:8002",
      "gossip": "64.130.58.232:8001",
      "pubkey": "4j6gcHZh1ae9k9Zc2mMLni9qWce4sTEHmNCYz1k3iDYD",
      "pubsub": null,
      "tpuQuic": "64.130.58.232:8003",
      "tpuVote": "64.130.58.232:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.58.232:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.232:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.136.217:8002",
      "gossip": "74.118.136.217:8001",
      "pubkey": "EQLBBPrkGabQkZdWJnx2fC6N2sjvwzmwCiccTWzSFxsu",
      "pubsub": null,
      "tpuQuic": "74.118.136.217:8003",
      "tpuVote": "74.118.136.217:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.136.217:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.136.217:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.112:8001",
      "gossip": "198.13.130.112:8000",
      "pubkey": "5Mdah8Ck9zjzRrS15xAgCQYnCibMrXvnXWf8G2dx1pVN",
      "pubsub": null,
      "tpuQuic": "198.13.130.112:8002",
      "tpuVote": "198.13.130.112:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.130.112:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.112:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.104.214:8002",
      "gossip": "208.91.104.214:8001",
      "pubkey": "52LBSEqq8NioJyuLDfzz36zpFBnQuAQbL8rACTtwdaRd",
      "pubsub": null,
      "tpuQuic": "208.91.104.214:8003",
      "tpuVote": "208.91.104.214:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.104.214:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.104.214:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "34.245.177.8:38001",
      "gossip": "34.245.177.8:38000",
      "pubkey": "6jYLHYUnAeXUfuRaRdn1m2biy4JcdrMD6VxqVA7GpGDp",
      "pubsub": null,
      "tpuQuic": "34.245.177.8:38002",
      "tpuVote": "34.245.177.8:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "34.245.177.8:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "34.245.177.8:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.144.245.55:8002",
      "gossip": "216.144.245.55:8001",
      "pubkey": "62sHCNsfQRzkjJzmCN3hnPgLrHZqmpFY1w33iCdZcyoT",
      "pubsub": null,
      "tpuQuic": "216.144.245.55:8003",
      "tpuVote": "216.144.245.55:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.144.245.55:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.144.245.55:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.15:8003",
      "gossip": "64.130.63.15:8001",
      "pubkey": "Bzgt3xoqWdzjNfc1AZyxGpisgZPERmGqygTXHNKsN2tY",
      "pubsub": null,
      "tpuQuic": "64.130.63.15:9007",
      "tpuVote": "64.130.63.15:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "64.130.63.15:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.15:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.235.117.196:8021",
      "gossip": "15.235.117.196:8001",
      "pubkey": "47QZ3AeWnYRSBsAdk4khwAtDvALYUnEJ3Kor1iRxfnix",
      "pubsub": null,
      "tpuQuic": "15.235.117.196:8022",
      "tpuVote": "15.235.117.196:8024",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "15.235.117.196:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.235.117.196:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.70:8001",
      "gossip": "84.32.103.70:8000",
      "pubkey": "EKRgLwAtHK98pjNKDBueCtY5o3WnCnkwJqU4s9aHYYSV",
      "pubsub": null,
      "tpuQuic": "84.32.103.70:8002",
      "tpuVote": "84.32.103.70:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "84.32.103.70:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.70:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.238:8002",
      "gossip": "64.130.52.238:8001",
      "pubkey": "A4zpvJHzU6YKnjuNz7QadUsgPS9CWGcDUmiUNB83Fcfm",
      "pubsub": null,
      "tpuQuic": "64.130.52.238:8003",
      "tpuVote": "64.130.52.238:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.238:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.238:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.97:8002",
      "gossip": "208.115.227.97:8001",
      "pubkey": "8YSKzSaPkDGBohjTVSXEXHebXYdLjQz1jPHGAqVwCuF6",
      "pubsub": null,
      "tpuQuic": "208.115.227.97:8003",
      "tpuVote": "208.115.227.97:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.97:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.97:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "108.171.215.138:8001",
      "gossip": "108.171.215.138:8000",
      "pubkey": "FCy9vsaeakUVzNMn2intyWEQkruer15dQvotpGmRm895",
      "pubsub": null,
      "tpuQuic": "108.171.215.138:8002",
      "tpuVote": "108.171.215.138:8004",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 1670369118,
      "serveRepair": "108.171.215.138:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "108.171.215.138:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.60:8002",
      "gossip": "45.154.33.60:8001",
      "pubkey": "F6nLN2tC7P1JUh4Xges55woD1Ya59vFhXRXD2q27M2WD",
      "pubsub": null,
      "tpuQuic": "45.154.33.60:8003",
      "tpuVote": "45.154.33.60:8005",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "45.154.33.60:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.60:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.144:8002",
      "gossip": "64.130.52.144:8001",
      "pubkey": "6x9j981Xb6M8MiecnZHFaaaGcWSgY22n4zhLvVJnpP11",
      "pubsub": null,
      "tpuQuic": "64.130.52.144:8003",
      "tpuVote": "64.130.52.144:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.144:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.144:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.143:8001",
      "gossip": "185.191.117.143:8000",
      "pubkey": "CbvjseFvBqvBFz3Xe75iuA9vhkkFrjmnYSPx5AEcojwp",
      "pubsub": null,
      "tpuQuic": "185.191.117.143:8002",
      "tpuVote": "185.191.117.143:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "185.191.117.143:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.143:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.54.91:8000",
      "gossip": "57.129.54.91:8001",
      "pubkey": "WTLNpX9pSTUKH4SyoFhKQq3havuiWk7fA5pgoGkesvP",
      "pubsub": null,
      "tpuQuic": "57.129.54.91:8002",
      "tpuVote": "57.129.54.91:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "57.129.54.91:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.54.91:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.46.86.163:8001",
      "gossip": "72.46.86.163:8000",
      "pubkey": "2cjRRMmNvEkk7uxsU7yWvmWBNq4tVdL1jCzJR9a7tZxP",
      "pubsub": null,
      "tpuQuic": "72.46.86.163:8002",
      "tpuVote": "72.46.86.163:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "72.46.86.163:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.46.86.163:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.176:8002",
      "gossip": "185.191.117.176:8001",
      "pubkey": "CpveeMc7y8UwnyS7LzG8ZUF5QS6fGJzmrZboFJxCwy6Q",
      "pubsub": null,
      "tpuQuic": "185.191.117.176:8003",
      "tpuVote": "185.191.117.176:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "185.191.117.176:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.176:8004"
    },
    {
      "rpc": "146.19.127.33:8899",
      "tpu": null,
      "tvu": "146.19.127.33:8001",
      "gossip": "146.19.127.33:8000",
      "pubkey": "FLeFUyKZktREQf5AEm96u2PuYxfR4w3WmjRcGTEAkaRr",
      "pubsub": "146.19.127.33:8899",
      "tpuQuic": "146.19.127.33:8002",
      "tpuVote": "146.19.127.33:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "146.19.127.33:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.19.127.33:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.53.236:8002",
      "gossip": "64.130.53.236:8001",
      "pubkey": "GHtXNmDRrA82uhk1RD3WLAnxCWvq42AEbBKEzYwnjQ8E",
      "pubsub": null,
      "tpuQuic": "64.130.53.236:8003",
      "tpuVote": "64.130.53.236:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.53.236:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.236:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.112.209:8001",
      "gossip": "67.213.112.209:8000",
      "pubkey": "DHY3n2SpaXU2CUo9F2Y3NFK3rAFXhWgAzJxzYkbiPq7L",
      "pubsub": null,
      "tpuQuic": "67.213.112.209:8002",
      "tpuVote": "67.213.112.209:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.112.209:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.112.209:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.71.224:11000",
      "gossip": "84.32.71.224:8001",
      "pubkey": "6fqctssBK23BvcBcJbLmdsJUBxAfbH2VsaGzULWQvu22",
      "pubsub": null,
      "tpuQuic": "84.32.71.224:11001",
      "tpuVote": "84.32.71.224:11003",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "84.32.71.224:11008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.71.224:11002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "95.214.54.41:8900",
      "gossip": "95.214.54.41:8001",
      "pubkey": "G6x4WaZVxgCPhiuALgXcqNqjEZHiCjmZAtrM8yTHvyZt",
      "pubsub": null,
      "tpuQuic": "95.214.54.41:8901",
      "tpuVote": "95.214.54.41:8903",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "95.214.54.41:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "95.214.54.41:8902"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.28:8002",
      "gossip": "84.32.103.28:8001",
      "pubkey": "Fa24w6qLJhEh74KZ2d55shrZD1yLgqSGV26LbLmDwDSA",
      "pubsub": null,
      "tpuQuic": "84.32.103.28:8003",
      "tpuVote": "84.32.103.28:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "84.32.103.28:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.28:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.68:8001",
      "gossip": "45.154.33.68:8000",
      "pubkey": "ovQb2T8pUgdrH8yb7u1RANudKzbwC3X1x8q3Y3GN3kt",
      "pubsub": null,
      "tpuQuic": "45.154.33.68:8002",
      "tpuVote": "45.154.33.68:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "45.154.33.68:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.68:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "192.69.194.66:8001",
      "gossip": "192.69.194.66:8000",
      "pubkey": "Bckspb162gtKdeGJa4hxohBsrCaY6Xaf5Uc5WPETcKzC",
      "pubsub": null,
      "tpuQuic": "192.69.194.66:8002",
      "tpuVote": "192.69.194.66:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "192.69.194.66:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "192.69.194.66:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.42:8002",
      "gossip": "64.130.54.42:8001",
      "pubkey": "GK88xCTwnoYvBaUCEDq53Wg4sqPSYyaTQuiNWdbLFeuj",
      "pubsub": null,
      "tpuQuic": "64.130.54.42:8003",
      "tpuVote": "64.130.54.42:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.42:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.42:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.186.78:8001",
      "gossip": "70.40.186.78:8000",
      "pubkey": "91Cn6ib8zrvD9NmDg6e5eAWscaJCAcVXtzLRi6ZJXg78",
      "pubsub": null,
      "tpuQuic": "70.40.186.78:8002",
      "tpuVote": "70.40.186.78:8004",
      "version": "4.0.3",
      "clientId": "Raiku",
      "featureSet": 1878484565,
      "serveRepair": "70.40.186.78:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.186.78:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.96.33:8001",
      "gossip": "109.94.96.33:8000",
      "pubkey": "BVXMcfX5AuJM23Ln5cZhiqqcA6dNQVnPGbp1GWRicnAb",
      "pubsub": null,
      "tpuQuic": "109.94.96.33:8002",
      "tpuVote": "109.94.96.33:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "109.94.96.33:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.96.33:8003"
    },
    {
      "rpc": "5.199.170.78:8899",
      "tpu": null,
      "tvu": "5.199.170.78:8001",
      "gossip": "5.199.170.78:8000",
      "pubkey": "5TJTRB8sLMpXQz931nWZRN9tMLPUQ9dzj8dTCCrCnHNB",
      "pubsub": "5.199.170.78:8900",
      "tpuQuic": "5.199.170.78:8002",
      "tpuVote": "5.199.170.78:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "5.199.170.78:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.170.78:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.60:8002",
      "gossip": "145.239.18.168:8001",
      "pubkey": "HkEHCRTwiBnY5cFDjacypuDf2eddH4gW5PRQNV3EVdu",
      "pubsub": null,
      "tpuQuic": "145.239.18.168:8003",
      "tpuVote": "145.239.18.168:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "145.239.18.168:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "145.239.18.168:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "155.107.7.11:8001",
      "gossip": "155.107.7.11:8000",
      "pubkey": "C9NUvDhL3MAy5YptmvSs8zsxgKX2W7kWEKw8iJyHdGCa",
      "pubsub": null,
      "tpuQuic": "155.107.7.11:8002",
      "tpuVote": "155.107.7.11:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "155.107.7.11:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "155.107.7.11:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.29:8000",
      "gossip": "64.130.43.29:8001",
      "pubkey": "FHivuy1Ts5iW91T9LyPaQyouiWN1PbxptzitJsnvfvNd",
      "pubsub": null,
      "tpuQuic": "64.130.43.29:8002",
      "tpuVote": "64.130.43.29:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.43.29:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.29:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.132.59:8002",
      "gossip": "198.13.132.59:8001",
      "pubkey": "DcbywySPY9s56BziXRkBHATsUiaDfBaLmxkCB7h4aBKD",
      "pubsub": null,
      "tpuQuic": "198.13.132.59:8003",
      "tpuVote": "198.13.132.59:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.132.59:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.132.59:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.108:8000",
      "gossip": "64.130.33.108:8001",
      "pubkey": "GP2EFfT5L1dDrp9Z8hbLeQp8MPUyLWikReEmXZ9dTQ4z",
      "pubsub": null,
      "tpuQuic": "64.130.33.108:8002",
      "tpuVote": "64.130.33.108:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.33.108:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.108:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.74:8002",
      "gossip": "141.98.219.74:8001",
      "pubkey": "B5gQ485pLBuXvWB1xsZ3jdT1f78mKob8EmvSr3yGawja",
      "pubsub": null,
      "tpuQuic": "141.98.219.74:8003",
      "tpuVote": "141.98.219.74:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.219.74:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.74:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.110:8002",
      "gossip": "64.130.59.110:8001",
      "pubkey": "E2h1s8ikd2xvNDKZVdxVhjxSto6iek69Ukvpern9CvH9",
      "pubsub": null,
      "tpuQuic": "64.130.59.110:8003",
      "tpuVote": "64.130.59.110:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.110:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.110:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "43.134.33.57:8001",
      "gossip": "43.134.33.57:8000",
      "pubkey": "5S1QGEPJg5kD33NesG8AggSVxicvWca3e98r1SXXZcmA",
      "pubsub": null,
      "tpuQuic": "43.134.33.57:8002",
      "tpuVote": "43.134.33.57:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "43.134.33.57:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "43.134.33.57:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.43:8001",
      "gossip": "208.91.110.43:8000",
      "pubkey": "7xLCvfcdrEQh67WxYQQfHQaPcD5TUFqSZw9n1CbCuxT5",
      "pubsub": null,
      "tpuQuic": "208.91.110.43:8002",
      "tpuVote": "208.91.110.43:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "208.91.110.43:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.43:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.250.255.170:8001",
      "gossip": "45.250.255.170:8000",
      "pubkey": "31KqY3W62eQrdmzu5ixEBeL6N6kFmiaGrVxNdx9VVdDu",
      "pubsub": null,
      "tpuQuic": "45.250.255.170:8002",
      "tpuVote": "45.250.255.170:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "45.250.255.170:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.250.255.170:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.43:8002",
      "gossip": "64.130.50.43:8001",
      "pubkey": "J4yQL1dsebzD22WdKaQAw5DXQVri7DtQPZmbAShbzQm1",
      "pubsub": null,
      "tpuQuic": "64.130.50.43:8003",
      "tpuVote": "64.130.50.43:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.43:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.43:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.133:8002",
      "gossip": "64.130.47.133:8001",
      "pubkey": "mce53LMPwQi1GjTvZ8rJPC7pkyUU4oSm2PrnTsVYaZ8",
      "pubsub": null,
      "tpuQuic": "64.130.47.133:8003",
      "tpuVote": "64.130.47.133:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "64.130.47.133:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.133:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.218.181:8001",
      "gossip": "141.98.218.181:8000",
      "pubkey": "9r7EvsRfTJwZceo3YacxPBqQdhi6ukon8aie7JAKhE9B",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "23.92.177.77:21611",
      "tpu": null,
      "tvu": "23.92.177.77:11601",
      "gossip": "23.92.177.77:21610",
      "pubkey": "71mvw97XTB9e1MMBznJ6pE2mm1FXyCR8JpLEWzASW96k",
      "pubsub": "23.92.177.77:21612",
      "tpuQuic": "23.92.177.77:11602",
      "tpuVote": "23.92.177.77:11604",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "23.92.177.77:11609",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.92.177.77:11603"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.109:8001",
      "gossip": "70.40.185.109:8000",
      "pubkey": "3Q2e8PZHhRxxy9ZvUYxKJQqPHd1EVt6VY1jsVbaedkFo",
      "pubsub": null,
      "tpuQuic": "70.40.185.109:8002",
      "tpuVote": "70.40.185.109:8004",
      "version": "4.0.3",
      "clientId": "Raiku",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.109:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.109:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.116.133:8002",
      "gossip": "185.191.116.133:8001",
      "pubkey": "6c2McyNUPmpyta15zcRzNGdotV2iA4CsWwkYbzCcMHTd",
      "pubsub": null,
      "tpuQuic": "185.191.116.133:8003",
      "tpuVote": "185.191.116.133:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.191.116.133:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.116.133:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "189.1.164.31:8002",
      "gossip": "189.1.164.31:8001",
      "pubkey": "94rvXTFf7ZtKihLXrwp8e5mQmKVWLFG6aKqKzR3pYqF1",
      "pubsub": null,
      "tpuQuic": "189.1.164.31:8003",
      "tpuVote": "189.1.164.31:8005",
      "version": "4.0.0-beta.7",
      "clientId": "Agave",
      "featureSet": 1253319928,
      "serveRepair": "189.1.164.31:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "189.1.164.31:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "189.1.164.87:8001",
      "gossip": "189.1.164.87:8000",
      "pubkey": "8cXYpP1qC9RkRgDRiSLJBkhv2mZgPqXt8RuRpBsvjR2N",
      "pubsub": null,
      "tpuQuic": "189.1.164.87:8002",
      "tpuVote": "189.1.164.87:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "189.1.164.87:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "189.1.164.87:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.35.233:8001",
      "gossip": "64.130.35.233:8000",
      "pubkey": "FtbUrnXFQ54Kz91AiWjTAb25pX3K6g8VFAGEhwgcskwE",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.141:8002",
      "gossip": "64.130.50.141:8001",
      "pubkey": "128xxQBiGRh8m9cgYbH3yzhSZNTVXViaxtTjHCJiA2qE",
      "pubsub": null,
      "tpuQuic": "64.130.50.141:8003",
      "tpuVote": "64.130.50.141:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.141:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.141:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.85:8000",
      "gossip": "64.130.41.85:8001",
      "pubkey": "2TwNUPMu4qvcyoEWezCW5C8kAid7njuh7uhgJYk1R5Nx",
      "pubsub": null,
      "tpuQuic": "64.130.41.85:8002",
      "tpuVote": "64.130.41.85:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.41.85:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.85:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.116.233:8001",
      "gossip": "185.191.116.233:8000",
      "pubkey": "GJqLdDA5zLeYMzcvAXzvuGByVUAroaXUCUmnDuX47jMo",
      "pubsub": null,
      "tpuQuic": "185.191.116.233:8002",
      "tpuVote": "185.191.116.233:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.191.116.233:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.116.233:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.162.208:8003",
      "gossip": "63.254.162.208:8001",
      "pubkey": "ARhwM3wJiRTxdf1VoA7ys5jgH3sLgZC5PeT8SrxACpYA",
      "pubsub": null,
      "tpuQuic": "63.254.162.208:9007",
      "tpuVote": "63.254.162.208:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "63.254.162.208:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.162.208:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.43:8001",
      "gossip": "64.130.57.43:8000",
      "pubkey": "7YDLabTgyqb2gqrDYy1zuzBDFA6FEyjp8xJpjaTpVYqY",
      "pubsub": null,
      "tpuQuic": "64.130.57.43:8002",
      "tpuVote": "64.130.57.43:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.57.43:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.43:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.147:8002",
      "gossip": "64.130.59.147:8001",
      "pubkey": "EW2xCz2zBfPQZKfRp1FcoeBFeRh3aTXVwRnuhC9wwu4Y",
      "pubsub": null,
      "tpuQuic": "64.130.59.147:8003",
      "tpuVote": "64.130.59.147:8005",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.59.147:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.147:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.235:5556",
      "gossip": "45.152.160.235:5555",
      "pubkey": "EFW9a7PwdWmR66rYEusZ32hGz7d46rjxJmkbcHC2R5QV",
      "pubsub": null,
      "tpuQuic": "45.152.160.235:5559",
      "tpuVote": "45.152.160.235:5562",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 1718981463,
      "serveRepair": "45.152.160.235:5567",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.235:5560"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "148.113.224.185:8021",
      "gossip": "148.113.224.185:8001",
      "pubkey": "bkDSUSWGg3zpVmwEWnwfXRZyAKazdfK8L4jGEjBzzmc",
      "pubsub": null,
      "tpuQuic": "148.113.224.185:8022",
      "tpuVote": "148.113.224.185:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "148.113.224.185:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "148.113.224.185:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.134:8001",
      "gossip": "64.130.63.134:8000",
      "pubkey": "YzMTvJsWr7kknmjdJLPKAovkb5ydHuurN7Y5jwNJ3up",
      "pubsub": null,
      "tpuQuic": "64.130.63.134:8002",
      "tpuVote": "64.130.63.134:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.63.134:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.134:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.158:8002",
      "gossip": "64.130.54.158:8001",
      "pubkey": "4RprkB9gPH6fr2shsWAxggvyAGss9BVwAibCWeZucexV",
      "pubsub": null,
      "tpuQuic": "64.130.54.158:8003",
      "tpuVote": "64.130.54.158:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.158:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.158:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.240:8001",
      "gossip": "64.130.32.240:8000",
      "pubkey": "GKjdsaxJ1AupGhkbrVLuakf6TqbSpJkaxZu8LGmJM2Ft",
      "pubsub": null,
      "tpuQuic": "64.130.32.240:8002",
      "tpuVote": "64.130.32.240:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.240:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.240:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.42.231.167:8001",
      "gossip": "89.42.231.167:8000",
      "pubkey": "HEnfJmMurye1NVoGgkGspeaxKqdV5Pnmz4QM6MN41Yem",
      "pubsub": null,
      "tpuQuic": "89.42.231.167:8002",
      "tpuVote": "89.42.231.167:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "89.42.231.167:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.42.231.167:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "146.0.230.70:8001",
      "gossip": "146.0.230.70:8000",
      "pubkey": "GpfN2Mq8MQ6xXVg5GnNy5ZbodF1zK1fkW98j1K6oUotQ",
      "pubsub": null,
      "tpuQuic": "146.0.230.70:8002",
      "tpuVote": "146.0.230.70:8004",
      "version": "4.0.0-beta.6",
      "clientId": "Agave",
      "featureSet": 2475355604,
      "serveRepair": "146.0.230.70:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.0.230.70:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.199.38.132:8902",
      "gossip": "185.199.38.132:8901",
      "pubkey": "G4JtA3X7d8iw34gvczai8QhZ4M4ebSgyTuK7abgZw8EB",
      "pubsub": null,
      "tpuQuic": "185.199.38.132:8903",
      "tpuVote": "185.199.38.132:8905",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.199.38.132:8910",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.199.38.132:8904"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.88.27:8001",
      "gossip": "57.129.88.27:8000",
      "pubkey": "7CEQ6ZCVDc5jVGEpFbevUWUydpNLFw3MT189ovao39GG",
      "pubsub": null,
      "tpuQuic": "57.129.88.27:8002",
      "tpuVote": "57.129.88.27:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "57.129.88.27:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.88.27:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.184.46:8001",
      "gossip": "70.40.184.46:8000",
      "pubkey": "JD5pkqmz3xKyxM1T2Jqzb5TymQGjNjdDe3hDXQRk66kk",
      "pubsub": null,
      "tpuQuic": "70.40.184.46:8009",
      "tpuVote": "70.40.184.46:8005",
      "version": "3.1.11",
      "clientId": "Agave",
      "featureSet": 4140108451,
      "serveRepair": "70.40.184.46:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.184.46:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.55.250:8002",
      "gossip": "64.130.55.250:8001",
      "pubkey": "rZPm3Q3vAWSiu6tS13XvSbw5E7aMEWpSW9mAKW3csnR",
      "pubsub": null,
      "tpuQuic": "64.130.55.250:8003",
      "tpuVote": "64.130.55.250:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.55.250:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.55.250:8004"
    },
    {
      "rpc": "82.23.177.112:8899",
      "tpu": null,
      "tvu": "82.23.177.112:8002",
      "gossip": "82.23.177.112:8001",
      "pubkey": "HyfbXhzXP5ciYzLzfHCZ9pJeUMRStifrJ96fxt47Z8Wy",
      "pubsub": "82.23.177.112:8900",
      "tpuQuic": "82.23.177.112:8003",
      "tpuVote": "82.23.177.112:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "82.23.177.112:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "82.23.177.112:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "31.57.32.13:8000",
      "gossip": "31.57.32.13:8001",
      "pubkey": "GGw6rfqti8nQgna6GRykGSUUKgf2kPwEk3x9sVx8mkN6",
      "pubsub": null,
      "tpuQuic": "31.57.32.13:8002",
      "tpuVote": "31.57.32.13:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "31.57.32.13:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "31.57.32.13:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.1:8002",
      "gossip": "208.115.227.1:8001",
      "pubkey": "CkmTfdbDEthD9rmP5F4XAztttJix5K8cgPza2K3XSFyD",
      "pubsub": null,
      "tpuQuic": "208.115.227.1:8003",
      "tpuVote": "208.115.227.1:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.1:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.1:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.142.126:8001",
      "gossip": "104.204.142.126:8000",
      "pubkey": "7ZaTREGh3HXmxDUxXJAmowMF2472kCBkUdGCm9F3Fr71",
      "pubsub": null,
      "tpuQuic": "104.204.142.126:8009",
      "tpuVote": "104.204.142.126:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.204.142.126:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.142.126:8010"
    },
    {
      "rpc": "63.254.162.75:8899",
      "tpu": null,
      "tvu": "63.254.162.75:8000",
      "gossip": "63.254.162.75:8901",
      "pubkey": "7GhemDc5N6dKcD2o8FDk9DRy46pJy5UsnZ1EbtY75eJg",
      "pubsub": "63.254.162.75:8900",
      "tpuQuic": "63.254.162.75:8001",
      "tpuVote": "63.254.162.75:8003",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "63.254.162.75:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.162.75:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.106.238.169:8001",
      "gossip": "23.106.238.169:8000",
      "pubkey": "5PuQqqRSFC4ydiB3GKVMZxvDwQFa38cEX8MusX73dsMn",
      "pubsub": null,
      "tpuQuic": "23.106.238.169:8002",
      "tpuVote": "23.106.238.169:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "23.106.238.169:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.106.238.169:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "44.246.128.129:37001",
      "gossip": "44.246.128.129:37000",
      "pubkey": "74ANCKr8gPqJXpQJPoicmWxr942itPSCfLNqU4vP2Urs",
      "pubsub": null,
      "tpuQuic": "44.246.128.129:37002",
      "tpuVote": "44.246.128.129:37004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "44.246.128.129:37009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "44.246.128.129:37003"
    },
    {
      "rpc": "206.223.231.169:21611",
      "tpu": null,
      "tvu": "206.223.231.169:11601",
      "gossip": "206.223.231.169:21610",
      "pubkey": "DC7vmgrCkm2Fr694s43dv6x4qSXaq9KERK4DQvbp1LRy",
      "pubsub": "206.223.231.169:21612",
      "tpuQuic": "206.223.231.169:11602",
      "tpuVote": "206.223.231.169:11604",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "206.223.231.169:11609",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "206.223.231.169:11603"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.114:8002",
      "gossip": "198.13.130.114:8001",
      "pubkey": "D5doL1XjJxhzdaNgPShyp8o2mq6tf9mgXrjRAgG4Ukrv",
      "pubsub": null,
      "tpuQuic": "198.13.130.114:8003",
      "tpuVote": "198.13.130.114:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.114:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.114:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "138.226.230.194:8001",
      "gossip": "138.226.230.194:8000",
      "pubkey": "nv8mL3hUEkb6pRX3Q648LSmxhq76Dnz1ydbBHuTVahW",
      "pubsub": null,
      "tpuQuic": "138.226.230.194:8002",
      "tpuVote": "138.226.230.194:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "138.226.230.194:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "138.226.230.194:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.143.156:8002",
      "gossip": "74.118.143.156:8001",
      "pubkey": "FXejRLB3QzxKMBLK5saF8Ujzho1DxuPwXaW69RdSr9zT",
      "pubsub": null,
      "tpuQuic": "74.118.143.156:8003",
      "tpuVote": "74.118.143.156:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.118.143.156:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.143.156:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "207.188.6.121:8001",
      "gossip": "207.188.6.121:8000",
      "pubkey": "HLb4Sq3eawzuqGNgwkHdTGrXtZeDePHSjS5vWFjWVHFb",
      "pubsub": null,
      "tpuQuic": "207.188.6.121:8002",
      "tpuVote": "207.188.6.121:8004",
      "version": "4.1.0-beta.1",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "207.188.6.121:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "207.188.6.121:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.29:8000",
      "gossip": "45.154.33.29:8001",
      "pubkey": "BaPqtDabTCPVfZnGsQDk3qMC6bSgwWCeoGLqFqWkscxx",
      "pubsub": null,
      "tpuQuic": "45.154.33.29:8002",
      "tpuVote": "45.154.33.29:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "45.154.33.29:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.29:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.83:8996",
      "gossip": "64.130.44.83:8995",
      "pubkey": "HXVPiWoXiFfoxTHg1gssbq85K2YrAV53cxo4LebQDbRN",
      "pubsub": null,
      "tpuQuic": "64.130.44.83:8997",
      "tpuVote": "64.130.44.83:8999",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.44.83:9004",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.83:8998"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.243.82:8002",
      "gossip": "204.16.243.82:8001",
      "pubkey": "52c7oaAMYciwK8GMHcwhsqHcXdpX64WgKeNwsFzDc6g4",
      "pubsub": null,
      "tpuQuic": "204.16.243.82:8003",
      "tpuVote": "204.16.243.82:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.243.82:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.243.82:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.184:8001",
      "gossip": "64.130.44.184:8000",
      "pubkey": "G67JuFozTn8yWqnVPAHPWGyuFuWLinVKRPbkzhCYLP1s",
      "pubsub": null,
      "tpuQuic": "64.130.44.184:8002",
      "tpuVote": "64.130.44.184:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.184:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.184:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.13:8001",
      "gossip": "45.154.33.13:8000",
      "pubkey": "G6MVtXZjf6uyWFqsJ2ERThpKoKvYcqdEQ22D2VHCSoP4",
      "pubsub": null,
      "tpuQuic": "45.154.33.13:8009",
      "tpuVote": "45.154.33.13:8005",
      "version": "3.1.11",
      "clientId": "Agave",
      "featureSet": 4140108451,
      "serveRepair": "45.154.33.13:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.13:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.111.181:8002",
      "gossip": "208.91.111.181:8001",
      "pubkey": "Fg98K1nLcPmikYnVRUjxFbs36Sesfnvrwpv7FXZHKUCp",
      "pubsub": null,
      "tpuQuic": "208.91.111.181:8003",
      "tpuVote": "208.91.111.181:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.111.181:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.111.181:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.155:8002",
      "gossip": "64.130.51.155:8001",
      "pubkey": "Gc2FfWsfMvbsZCwR5Hpdpdx2z2AvmKpaXU4JWRCWH9LR",
      "pubsub": null,
      "tpuQuic": "64.130.51.155:8003",
      "tpuVote": "64.130.51.155:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.155:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.155:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "91.148.229.76:16001",
      "gossip": "91.148.229.76:16000",
      "pubkey": "7US63RHmhjPkFrGT1ZN2XnRrH2WwwosY3XC2F2Qx76E1",
      "pubsub": null,
      "tpuQuic": "91.148.229.76:16002",
      "tpuVote": "91.148.229.76:16004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "91.148.229.76:16009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.148.229.76:16003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "148.113.187.4:8021",
      "gossip": "148.113.187.4:8020",
      "pubkey": "28ZiBCavWyNtXPjtp2vuoBisGG4aPyxmWoBBhE2NQ1gx",
      "pubsub": null,
      "tpuQuic": "148.113.187.4:8022",
      "tpuVote": "148.113.187.4:8024",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "148.113.187.4:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "148.113.187.4:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.162.93.177:8002",
      "gossip": "69.162.93.177:8001",
      "pubkey": "8Kqn6UpZNUCkLcCjvnG2VQDtX9PwGHRedoq2etUrVBJr",
      "pubsub": null,
      "tpuQuic": "69.162.93.177:8003",
      "tpuVote": "69.162.93.177:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "69.162.93.177:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.162.93.177:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "8.217.254.93:8000",
      "gossip": "8.217.254.93:8001",
      "pubkey": "FPoyvhGUs9RGAF79oaQEZbD8eSD6vmfATET7LaZqS1dJ",
      "pubsub": null,
      "tpuQuic": "8.217.254.93:8002",
      "tpuVote": "8.217.254.93:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "8.217.254.93:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "8.217.254.93:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.247.235:8002",
      "gossip": "204.16.247.235:8001",
      "pubkey": "Ey5wLhvK4bTJrvnzTuqCc17VJUzN12is3CVCenmbnQuR",
      "pubsub": null,
      "tpuQuic": "204.16.247.235:8003",
      "tpuVote": "204.16.247.235:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.247.235:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.247.235:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "108.171.203.186:8001",
      "gossip": "108.171.203.186:8000",
      "pubkey": "junkNc68Q5jH6tJz8ZHmNoSDLRrJBX7F2PQsMwy6TLP",
      "pubsub": null,
      "tpuQuic": "108.171.203.186:8002",
      "tpuVote": "108.171.203.186:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "108.171.203.186:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "108.171.203.186:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.8.23:8000",
      "gossip": "202.8.8.23:8001",
      "pubkey": "tPTMVvqGgzecHLQKHUhoXR8UFuZrFzz9UKK4ywVdLaZ",
      "pubsub": null,
      "tpuQuic": "202.8.8.23:8002",
      "tpuVote": "202.8.8.23:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "202.8.8.23:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.8.23:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.174:8002",
      "gossip": "64.130.40.174:8001",
      "pubkey": "FwbbBeDwMey3os82VpyeiWyzKXbkcoWrmv9XQpaj1ptT",
      "pubsub": null,
      "tpuQuic": "64.130.40.174:8003",
      "tpuVote": "64.130.40.174:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.174:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.174:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "79.137.101.98:8001",
      "gossip": "79.137.101.98:8000",
      "pubkey": "A6q8636gVPZFHDj4kDUQVWArbQxwoymUkyrxAfV5nM3Z",
      "pubsub": null,
      "tpuQuic": "79.137.101.98:8002",
      "tpuVote": "79.137.101.98:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "79.137.101.98:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "79.137.101.98:8003"
    },
    {
      "rpc": "57.129.59.250:8899",
      "tpu": null,
      "tvu": "57.129.59.250:8003",
      "gossip": "57.129.59.250:8001",
      "pubkey": "2cJVuXwTPvktuRDdsLv5oiDdT76PwkBvtu58p6cqUbBU",
      "pubsub": "57.129.59.250:8900",
      "tpuQuic": "57.129.59.250:9007",
      "tpuVote": "57.129.59.250:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "57.129.59.250:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.59.250:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.240:8000",
      "gossip": "198.13.134.240:8001",
      "pubkey": "8tvJBGKVkWfvP4Rp4DkGcJU8D3farHRJkHAP8g4pcYzH",
      "pubsub": null,
      "tpuQuic": "198.13.134.240:8002",
      "tpuVote": "198.13.134.240:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.134.240:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.240:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.94.221:8001",
      "gossip": "64.34.94.221:8000",
      "pubkey": "EABG8UVxfq3u58CZwDvjVyRVvToF6E8aHVZfxVAuBZwR",
      "pubsub": null,
      "tpuQuic": "64.34.94.221:8002",
      "tpuVote": "64.34.94.221:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.34.94.221:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.94.221:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.155.79.3:8002",
      "gossip": "38.155.79.3:8001",
      "pubkey": "3z2DMCQTtX9wiG7LWfV6GHc4dTu66dC53MsSryYzY23L",
      "pubsub": null,
      "tpuQuic": "38.155.79.3:8003",
      "tpuVote": "38.155.79.3:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "38.155.79.3:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.155.79.3:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.44.207.196:8001",
      "gossip": "185.44.207.196:8000",
      "pubkey": "7i4xnHYH8Fu8Xd3WuV4P8VKuCbagWogXGwxjZyGvb1sJ",
      "pubsub": null,
      "tpuQuic": "185.44.207.196:8002",
      "tpuVote": "185.44.207.196:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.44.207.196:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.44.207.196:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.159:8001",
      "gossip": "185.191.117.159:8000",
      "pubkey": "3mCdvFRBUaN6HmShhB16KAvSRoFabkPDPqzY88zu3byj",
      "pubsub": null,
      "tpuQuic": "185.191.117.159:8003",
      "tpuVote": "185.191.117.159:8005",
      "version": "4.0.0",
      "clientId": "Rakurai",
      "featureSet": 3718597879,
      "serveRepair": "185.191.117.159:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.159:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.240:8001",
      "gossip": "64.130.58.240:8000",
      "pubkey": "8UctfED1wjauFgYPcH5pHp2Rr2WunrEvatDUy8ymz3pP",
      "pubsub": null,
      "tpuQuic": "64.130.58.240:8002",
      "tpuVote": "64.130.58.240:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.58.240:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.240:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "173.231.44.186:8000",
      "gossip": "173.231.44.186:8026",
      "pubkey": "GL2mdYoX1tHs2KpHcd555CHNCFuioFnFSp9kR6MQSEc8",
      "pubsub": null,
      "tpuQuic": "173.231.44.186:8001",
      "tpuVote": "173.231.44.186:8003",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "173.231.44.186:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "173.231.44.186:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.135:8002",
      "gossip": "162.19.167.139:8001",
      "pubkey": "6CmNMpH8ttttSazuYhmo7Qon3hU5vGbUhu1zJKERjxvh",
      "pubsub": null,
      "tpuQuic": "162.19.167.139:8003",
      "tpuVote": "162.19.167.139:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "162.19.167.139:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.167.139:8004"
    },
    {
      "rpc": "70.40.185.140:8899",
      "tpu": null,
      "tvu": "70.40.185.140:8001",
      "gossip": "70.40.185.140:8000",
      "pubkey": "Gf4hsWyfmD4Zd4PJiuCjnzm286Wt4UxnKReoFjbsucwt",
      "pubsub": "70.40.185.140:8900",
      "tpuQuic": "70.40.185.140:8002",
      "tpuVote": "70.40.185.140:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "70.40.185.140:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.140:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.204.101.120:8801",
      "gossip": "15.204.101.120:8800",
      "pubkey": "3Kd2hfLBG7aBgxjK1bGTMWhxGU6zaXuP2bCwaxcY3AeR",
      "pubsub": null,
      "tpuQuic": "15.204.101.120:8809",
      "tpuVote": "15.204.101.120:8805",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "15.204.101.120:8812",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.101.120:8810"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "44.198.116.244:8001",
      "gossip": "44.198.116.244:8000",
      "pubkey": "FiSAUi355dtMPxAqTS7zLgJ16CTEfPEHWoz5xfa1789m",
      "pubsub": null,
      "tpuQuic": "44.198.116.244:8002",
      "tpuVote": "44.198.116.244:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "44.198.116.244:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "44.198.116.244:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.40:8002",
      "gossip": "64.130.54.40:8001",
      "pubkey": "B82ZJmE1g7uT5d9Skbkjn9vcwFJMCX5gjc56K4Nqa6Tb",
      "pubsub": null,
      "tpuQuic": "64.130.54.40:8003",
      "tpuVote": "64.130.54.40:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.40:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.40:8004"
    },
    {
      "rpc": "185.191.117.72:8899",
      "tpu": null,
      "tvu": "185.191.117.72:8003",
      "gossip": "185.191.117.72:8001",
      "pubkey": "F5ru99vDLwkyZBzWKKhwQ9QskipgrM7Gn9QfUdr9CaC9",
      "pubsub": "185.191.117.72:8900",
      "tpuQuic": "185.191.117.72:9007",
      "tpuVote": "185.191.117.72:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.72:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.72:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.10.14:8001",
      "gossip": "202.8.10.14:8000",
      "pubkey": "CsVXg7Lr3F17t7h8nKoBC3DDazUmX7jgdNYuxcrXd2ZP",
      "pubsub": null,
      "tpuQuic": "202.8.10.14:8002",
      "tpuVote": "202.8.10.14:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "202.8.10.14:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.10.14:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.139:8002",
      "gossip": "64.130.33.139:8001",
      "pubkey": "mcs2Q8D8LmH7C3MqUzrzTxV7TSLBdWQ5Be4D68CtfSX",
      "pubsub": null,
      "tpuQuic": "64.130.33.139:8003",
      "tpuVote": "64.130.33.139:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.33.139:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.139:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.202.157:8002",
      "gossip": "208.115.202.157:8001",
      "pubkey": "8muk6un6zWnHynQAsDiPiW6ahaypwC1V2Cv8y67e7iCi",
      "pubsub": null,
      "tpuQuic": "208.115.202.157:8003",
      "tpuVote": "208.115.202.157:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.202.157:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.202.157:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.72:8002",
      "gossip": "64.130.54.72:8001",
      "pubkey": "DzjA862f1JHBLtuzz18VuYfEcn1NsAfoHZJoPBetFeGo",
      "pubsub": null,
      "tpuQuic": "64.130.54.72:8003",
      "tpuVote": "64.130.54.72:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.72:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.72:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.123.5:8003",
      "gossip": "67.213.123.5:8001",
      "pubkey": "EyygpGvq8qozzQkyK3MG7bREB5sjURQNxeawvvjnK4T2",
      "pubsub": null,
      "tpuQuic": "67.213.123.5:9007",
      "tpuVote": "67.213.123.5:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "67.213.123.5:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.123.5:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.248.151:8002",
      "gossip": "208.115.248.151:8001",
      "pubkey": "BSVQduvAr2coeFGDNvGbkedoKWQb55vrSHxKUvtqBkkX",
      "pubsub": null,
      "tpuQuic": "208.115.248.151:8003",
      "tpuVote": "208.115.248.151:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.248.151:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.248.151:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.109.158.228:8001",
      "gossip": "23.109.158.228:8000",
      "pubkey": "BXNvuEEWh2rnGn38avnMBKMqES7NLt5KRQM7PPHa8qM7",
      "pubsub": null,
      "tpuQuic": "23.109.158.228:8002",
      "tpuVote": "23.109.158.228:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "23.109.158.228:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.109.158.228:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.49:8000",
      "gossip": "64.130.41.49:8001",
      "pubkey": "3d8XzwUacYPgJL48tYcuVixPDAss9GSJDHZ7hNVLx8sM",
      "pubsub": null,
      "tpuQuic": "64.130.41.49:8002",
      "tpuVote": "64.130.41.49:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.49:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.49:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.215:8002",
      "gossip": "64.130.49.215:8001",
      "pubkey": "99EgN341RYT48eFXyAStj6gfrZobLv2cpizJjAfZxUqa",
      "pubsub": null,
      "tpuQuic": "64.130.49.215:8003",
      "tpuVote": "64.130.49.215:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.49.215:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.215:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.245.178:8002",
      "gossip": "204.16.245.178:8001",
      "pubkey": "5QyArdEMku24pjd14LVfNq9oTsPLZPC1AzNrgZDyiJ73",
      "pubsub": null,
      "tpuQuic": "204.16.245.178:8003",
      "tpuVote": "204.16.245.178:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.245.178:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.245.178:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.106:8001",
      "gossip": "64.130.63.106:8000",
      "pubkey": "Hh1BghNNQ7iqzgGoaHEdfLoMafoMr6HmvdYtHzWThatZ",
      "pubsub": null,
      "tpuQuic": "64.130.63.106:8002",
      "tpuVote": "64.130.63.106:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.63.106:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.106:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.144.245.106:8002",
      "gossip": "216.144.245.106:8001",
      "pubkey": "HW9r2qLnS2LvT3aRG6GvErsgx6EoexaSNP3m2qPuden3",
      "pubsub": null,
      "tpuQuic": "216.144.245.106:8003",
      "tpuVote": "216.144.245.106:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "216.144.245.106:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.144.245.106:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.110:8001",
      "gossip": "64.130.44.110:8000",
      "pubkey": "3PMEhiQgAfar9cVButQpiXZdHU53GwS56TNwr9mjVvoq",
      "pubsub": null,
      "tpuQuic": "64.130.44.110:8002",
      "tpuVote": "64.130.44.110:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.44.110:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.110:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.244.189.146:8001",
      "gossip": "38.244.189.146:8000",
      "pubkey": "938SXXTPSEXDvaYTcbnNP3A4Utj9roSM7JgSA6jm5qVp",
      "pubsub": null,
      "tpuQuic": "38.244.189.146:8002",
      "tpuVote": "38.244.189.146:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "38.244.189.146:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.244.189.146:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.83:8001",
      "gossip": "64.130.42.83:8000",
      "pubkey": "FwmCMWsXZuCm7nYF2KJdGFSE8G5bQkSvsJR4qnzRw5SG",
      "pubsub": null,
      "tpuQuic": "64.130.42.83:8002",
      "tpuVote": "64.130.42.83:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.83:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.83:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.118.99:8001",
      "gossip": "185.191.118.99:8000",
      "pubkey": "6VcUZfmZBroQGrJHC4xAYRr6mMvpxPiYM2grGPKti1Dq",
      "pubsub": null,
      "tpuQuic": "185.191.118.99:8002",
      "tpuVote": "185.191.118.99:8004",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2543003515,
      "serveRepair": "185.191.118.99:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.118.99:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.87.155:8001",
      "gossip": "64.34.87.155:8000",
      "pubkey": "6YSDmkfqoJGcj5TfG3K3qDomP3GpZkcsEvQ1EXAoz4Mk",
      "pubsub": null,
      "tpuQuic": "64.34.87.155:8002",
      "tpuVote": "64.34.87.155:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.34.87.155:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.87.155:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.52.88:8002",
      "gossip": "67.209.52.88:8001",
      "pubkey": "5vTE1KCTdcbaratqEhcDQ7Qy5naC3zjQidqQbyE6UY1K",
      "pubsub": null,
      "tpuQuic": "67.209.52.88:8003",
      "tpuVote": "67.209.52.88:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.209.52.88:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.52.88:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.183:8002",
      "gossip": "208.91.110.183:8001",
      "pubkey": "6gzcudgsZ4zNt9AYZxxhUzYDEymxnnb2T5JWfDCn7aV4",
      "pubsub": null,
      "tpuQuic": "208.91.110.183:8003",
      "tpuVote": "208.91.110.183:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.183:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.183:8004"
    },
    {
      "rpc": "64.130.43.209:8899",
      "tpu": null,
      "tvu": "64.130.43.209:8001",
      "gossip": "64.130.43.209:8000",
      "pubkey": "6LAKfa4pQL4vEtuRc3kSPq9gpKvToBJfzaZk36D4Uu4H",
      "pubsub": "64.130.43.209:8900",
      "tpuQuic": "64.130.43.209:8002",
      "tpuVote": "64.130.43.209:8004",
      "version": "4.0.0-rc.0",
      "clientId": "JitoLabs",
      "featureSet": 767961353,
      "serveRepair": "64.130.43.209:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.209:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.104.212:8002",
      "gossip": "208.91.104.212:8001",
      "pubkey": "EGqMN5747PkRY6Mk2dNtSczw6AEvW3Y64ZzA2eHzfPkm",
      "pubsub": null,
      "tpuQuic": "208.91.104.212:8003",
      "tpuVote": "208.91.104.212:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.104.212:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.104.212:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.77:8002",
      "gossip": "64.130.61.77:8001",
      "pubkey": "BmMzKMQGHJkbYhnd4unYXy9qGGXQDvZX7AroAaVHS2sL",
      "pubsub": null,
      "tpuQuic": "64.130.61.77:8003",
      "tpuVote": "64.130.61.77:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.61.77:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.77:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.140.8.11:8001",
      "gossip": "23.140.8.11:8000",
      "pubkey": "E9kcWR7tf8UuoEKv5bhkHZmnW8nsA6AHXq7xHECkTQSV",
      "pubsub": null,
      "tpuQuic": "23.140.8.11:8002",
      "tpuVote": "23.140.8.11:8004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "23.140.8.11:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.140.8.11:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "52.76.223.124:8001",
      "gossip": "52.76.223.124:8000",
      "pubkey": "2XYSnniw8DDEWFwRpUJPoxNHT9VsdUR91mP3eMxsZBf1",
      "pubsub": null,
      "tpuQuic": "52.76.223.124:8002",
      "tpuVote": "52.76.223.124:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "52.76.223.124:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "52.76.223.124:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.145:8002",
      "gossip": "64.130.50.145:8001",
      "pubkey": "HdVoepw3C4zhPXZn36NSfJqd4snjBayvG6kYdqGrjaDL",
      "pubsub": null,
      "tpuQuic": "64.130.50.145:8003",
      "tpuVote": "64.130.50.145:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.50.145:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.145:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.42.231.125:8001",
      "gossip": "89.42.231.125:8000",
      "pubkey": "AL9SuUeJT9azUSj3REGfV4rJZrymDcNtSnsQVACp6MCy",
      "pubsub": null,
      "tpuQuic": "89.42.231.125:8002",
      "tpuVote": "89.42.231.125:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "89.42.231.125:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.42.231.125:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.163:8031",
      "gossip": "64.130.49.163:8030",
      "pubkey": "6GP2vPvknvcizduhuAm8yHdmS57mzpfD6xuBfWLcN1nv",
      "pubsub": null,
      "tpuQuic": "64.130.49.163:8032",
      "tpuVote": "64.130.49.163:8034",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.49.163:8039",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.163:8033"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.75:8001",
      "gossip": "64.130.57.75:8000",
      "pubkey": "5i7tXcUP99nsNLCc3esqmEr9txHtRN8PDhPrfQz18MeT",
      "pubsub": null,
      "tpuQuic": "64.130.57.75:8002",
      "tpuVote": "64.130.57.75:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.57.75:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.75:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.202:8002",
      "gossip": "198.13.138.183:9001",
      "pubkey": "3bAzMAhqgZkwEvZJo1CUcDaX3gn17KP4x7LU6cEtjHUP",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 1718981463,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.67:8002",
      "gossip": "51.89.15.51:8001",
      "pubkey": "GHTyzaJo5AG4gNnGSLCBrLYG6AgRqKHXL3QCz81b3Wrs",
      "pubsub": null,
      "tpuQuic": "51.89.15.51:8003",
      "tpuVote": "51.89.15.51:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.15.51:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.15.51:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.204:8001",
      "gossip": "208.91.110.204:8000",
      "pubkey": "EeVsbjp92ModZJ7KUtNYXrVcfNGEJuFtGQ4G7kqD2neJ",
      "pubsub": null,
      "tpuQuic": "208.91.110.204:8002",
      "tpuVote": "208.91.110.204:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "208.91.110.204:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.204:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.101:8001",
      "gossip": "70.40.185.101:8000",
      "pubkey": "BHSMS3BhF29xouUpWC6R43vkRZcvB8fypS4GhvcWcr1L",
      "pubsub": null,
      "tpuQuic": "70.40.185.101:8002",
      "tpuVote": "70.40.185.101:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.101:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.101:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.80.77:8001",
      "gossip": "64.34.80.77:8000",
      "pubkey": "8qmBaNTt7ieRkLhdgKRDsamE9fTZktiF14yDdz2KVDFQ",
      "pubsub": null,
      "tpuQuic": "64.34.80.77:8002",
      "tpuVote": "64.34.80.77:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "64.34.80.77:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.80.77:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.112.221:8001",
      "gossip": "67.213.112.221:8000",
      "pubkey": "C29HVWgXvzEqyiB4gBx5QUrRx4hJaqxXz7LhN7bK733N",
      "pubsub": null,
      "tpuQuic": "67.213.112.221:8002",
      "tpuVote": "67.213.112.221:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.213.112.221:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.112.221:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.215.163:9712",
      "gossip": "2.57.215.163:9711",
      "pubkey": "9C55JWc5g1Ym9kPbDwL3ncQ4Y9115aJLXhYnC8xuHcTE",
      "pubsub": null,
      "tpuQuic": "2.57.215.163:9713",
      "tpuVote": "2.57.215.163:9715",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "2.57.215.163:9720",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "2.57.215.163:9714"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.247.85:8002",
      "gossip": "204.16.247.85:8001",
      "pubkey": "2MLqAeRTcUhFRu5LqH4ruf9rfQk81ZosPHDZaQ9Lmh86",
      "pubsub": null,
      "tpuQuic": "204.16.247.85:8003",
      "tpuVote": "204.16.247.85:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.247.85:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.247.85:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.46.84.115:8001",
      "gossip": "72.46.84.115:8000",
      "pubkey": "EPi5WHL5FB9ZJDdU4eUifUjax5aiBqwUS1tsowbEjtZY",
      "pubsub": null,
      "tpuQuic": "72.46.84.115:8002",
      "tpuVote": "72.46.84.115:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "72.46.84.115:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.46.84.115:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.88:8002",
      "gossip": "51.89.25.40:8001",
      "pubkey": "XEXBTo4Z58X7LcCTGGBsZ9eQVtPoAByR2iSfsB4jy32",
      "pubsub": null,
      "tpuQuic": "51.89.25.40:8003",
      "tpuVote": "51.89.25.40:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.40:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.40:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "82.113.38.50:8001",
      "gossip": "82.113.38.50:8000",
      "pubkey": "RBRgLQ3VveBHpub6JZWJx46k684wP2yusqQ6eaRDAWH",
      "pubsub": null,
      "tpuQuic": "82.113.38.50:8002",
      "tpuVote": "82.113.38.50:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "82.113.38.50:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "82.113.38.50:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.39.34:8002",
      "gossip": "64.31.39.34:8001",
      "pubkey": "ALwrFp2VyhAgz1LYada5cLjQ2mbi1w63CBsjHxdA2QC4",
      "pubsub": null,
      "tpuQuic": "64.31.39.34:8003",
      "tpuVote": "64.31.39.34:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.39.34:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.39.34:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.37:8001",
      "gossip": "45.152.160.37:8000",
      "pubkey": "9vwoDJuYVKsy28zepGnncnufDdp1WcauVzNFpeLoyLNV",
      "pubsub": null,
      "tpuQuic": "45.152.160.37:8002",
      "tpuVote": "45.152.160.37:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.152.160.37:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.37:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "66.165.233.130:8001",
      "gossip": "66.165.233.130:8000",
      "pubkey": "HT4unawj1W1i8WVTi4xtY2zwkTYd9N9djcAVBffqipKj",
      "pubsub": null,
      "tpuQuic": "66.165.233.130:8009",
      "tpuVote": "66.165.233.130:8005",
      "version": "3.1.7",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "66.165.233.130:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "66.165.233.130:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.41:8002",
      "gossip": "64.130.54.41:8001",
      "pubkey": "5gBsaKoU2AD2E19SQ6HhzpyNhHZUxRadX1BLEnFXY22c",
      "pubsub": null,
      "tpuQuic": "64.130.54.41:8003",
      "tpuVote": "64.130.54.41:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.41:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.41:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.93:8002",
      "gossip": "208.115.227.93:8001",
      "pubkey": "AfzL2VkXXY6C2uZTeTocuKgUaEjLop1ZgrRR4LbPyupw",
      "pubsub": null,
      "tpuQuic": "208.115.227.93:8003",
      "tpuVote": "208.115.227.93:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.93:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.93:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.190.136.23:8001",
      "gossip": "38.190.136.23:8000",
      "pubkey": "5WRrusahHwZyX5wKPW7wmquVhwJseAPLoLKbSUFvjbVe",
      "pubsub": null,
      "tpuQuic": "38.190.136.23:8002",
      "tpuVote": "38.190.136.23:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "38.190.136.23:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.190.136.23:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.99.111:8001",
      "gossip": "57.129.99.111:8000",
      "pubkey": "HqL8Z39vZkVbNxqkXHW9cPbRkZUGTnGKYKY3YjSkZcRX",
      "pubsub": null,
      "tpuQuic": "57.129.99.111:8002",
      "tpuVote": "57.129.99.111:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "57.129.99.111:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.99.111:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "189.1.164.43:8002",
      "gossip": "189.1.164.43:8001",
      "pubkey": "GsE7SkDUf6QRsygk49MoZnGJtG7utJoDvUN7t1TQnjGJ",
      "pubsub": null,
      "tpuQuic": "189.1.164.43:8003",
      "tpuVote": "189.1.164.43:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "189.1.164.43:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "189.1.164.43:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.118.107:8002",
      "gossip": "185.191.118.107:8001",
      "pubkey": "9GHZL6hrBHMzbQYKoeN9WHqfJWrUmyNfrm97WfLxe8sP",
      "pubsub": null,
      "tpuQuic": "185.191.118.107:8003",
      "tpuVote": "185.191.118.107:8005",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "185.191.118.107:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.118.107:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.43:8002",
      "gossip": "64.31.54.43:8001",
      "pubkey": "6TEe2TB5ZQUgRHGNYeXdBxVns57Yiebg4XpETEh4q1wy",
      "pubsub": null,
      "tpuQuic": "64.31.54.43:8003",
      "tpuVote": "64.31.54.43:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.43:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.43:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "160.202.128.109:8001",
      "gossip": "160.202.128.109:8000",
      "pubkey": "6AAqWN39ttXQjhWdRrHwGjMKuZWupxxuFpzCXnD2zCgh",
      "pubsub": null,
      "tpuQuic": "160.202.128.109:8002",
      "tpuVote": "160.202.128.109:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "160.202.128.109:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "160.202.128.109:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.229:8002",
      "gossip": "198.13.130.229:8001",
      "pubkey": "BEb2BbjdRvCyxLTCGMaNd877X2uxjKn8BeWnxZRPukug",
      "pubsub": null,
      "tpuQuic": "198.13.130.229:8003",
      "tpuVote": "198.13.130.229:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.229:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.229:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.23:8002",
      "gossip": "64.130.37.23:8001",
      "pubkey": "7wBuLbwLKqP9MmE27XTPcyA15He9ia7CS97yKG8R3KF4",
      "pubsub": null,
      "tpuQuic": "64.130.37.23:8003",
      "tpuVote": "64.130.37.23:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.23:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.23:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.220:8002",
      "gossip": "64.130.59.220:8001",
      "pubkey": "5SJQY6bw2Yz9kBuxHKhEdRZyGTCY1Y8NFu9HB6dDiJ6a",
      "pubsub": null,
      "tpuQuic": "64.130.59.220:8003",
      "tpuVote": "64.130.59.220:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.220:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.220:8004"
    },
    {
      "rpc": "185.188.42.43:8899",
      "tpu": null,
      "tvu": "185.188.42.43:9001",
      "gossip": "185.188.42.43:9000",
      "pubkey": "3brYfeX9Jr7cCY76VGo4pcyAxbGj15958G5KZR5RRq9D",
      "pubsub": "185.188.42.43:8900",
      "tpuQuic": "185.188.42.43:9002",
      "tpuVote": "185.188.42.43:9004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.188.42.43:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.188.42.43:9003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.88.64.93:18503",
      "gossip": "38.88.64.93:18502",
      "pubkey": "5vXK9F68ooEF6VXwxhvszdGRYrKEc4gdv5Q9MMbUdZrP",
      "pubsub": null,
      "tpuQuic": "38.88.64.93:18504",
      "tpuVote": "38.88.64.93:18506",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "38.88.64.93:18511",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.88.64.93:18505"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "82.22.51.9:8001",
      "gossip": "145.239.149.108:8000",
      "pubkey": "BRJfxpMBu6kPQgHnHpi4ABN3kKCwAGyxARuAPJqHv3PW",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.8.106.190:8001",
      "gossip": "185.8.106.190:8002",
      "pubkey": "C4iPuWNHHBV8wiwGnrpE79JRmETNeK6SSV8RXoMfTYd5",
      "pubsub": null,
      "tpuQuic": "185.8.106.190:8003",
      "tpuVote": "185.8.106.190:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.8.106.190:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.8.106.190:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.142.184:8002",
      "gossip": "74.118.142.184:8001",
      "pubkey": "BX2LJ5cEbaBpNHJ2Lth4sAcXdBJAKbe1EqQWAS6Gz1Zs",
      "pubsub": null,
      "tpuQuic": "74.118.142.184:8010",
      "tpuVote": "74.118.142.184:8006",
      "version": "3.0.6",
      "clientId": "Agave",
      "featureSet": 3604001754,
      "serveRepair": "74.118.142.184:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.142.184:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.224.158:8000",
      "gossip": "208.115.224.158:8801",
      "pubkey": "4m5nJhE432QYo2AQa8kCsmSZWwJBKmPmm5HYgCibXBtx",
      "pubsub": null,
      "tpuQuic": "208.115.224.158:8001",
      "tpuVote": "208.115.224.158:8003",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "208.115.224.158:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.224.158:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.208.234.133:8003",
      "gossip": "67.208.234.133:8002",
      "pubkey": "3UAEFRkvzCez4s2wdYhD3JKJNkBxxtcPa8fskSiZ4fKa",
      "pubsub": null,
      "tpuQuic": "67.208.234.133:8004",
      "tpuVote": "67.208.234.133:8006",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.208.234.133:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.208.234.133:8005"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.127.13:8001",
      "gossip": "67.213.127.13:8000",
      "pubkey": "4SJ1GmJVg6fbteqf3BM75LmyN4e7VLiteuMXZH9KxngN",
      "pubsub": null,
      "tpuQuic": "67.213.127.13:8002",
      "tpuVote": "67.213.127.13:8004",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2543003515,
      "serveRepair": "67.213.127.13:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.127.13:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.82.113:8001",
      "gossip": "85.195.82.113:8000",
      "pubkey": "EsusXBnYs14XjH1ovMNfuZpZmWJW61UzyHKG2GmiSEh5",
      "pubsub": null,
      "tpuQuic": "85.195.82.113:8002",
      "tpuVote": "85.195.82.113:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "85.195.82.113:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.82.113:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "188.37.122.24:8001",
      "gossip": "188.37.122.24:8000",
      "pubkey": "F3kmdRj3QhEQLuTbAdCY8edx8QdPc1UkYyCYqLafknm1",
      "pubsub": null,
      "tpuQuic": "188.37.122.24:8002",
      "tpuVote": "188.37.122.24:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "188.37.122.24:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "188.37.122.24:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.158.71.10:8000",
      "gossip": "216.158.71.10:8001",
      "pubkey": "3Z19Jy3RLnoYA2MxgqAUAMsD22xKQAixx39MH4eWa963",
      "pubsub": null,
      "tpuQuic": "216.158.71.10:8009",
      "tpuVote": "216.158.71.10:8005",
      "version": "3.1.9",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "216.158.71.10:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.158.71.10:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.154:8002",
      "gossip": "64.130.50.154:8001",
      "pubkey": "9our1o8cnn8PEQb3fXzLqAxeTcsov4qSsRjyBqmjYcWw",
      "pubsub": null,
      "tpuQuic": "64.130.50.154:8003",
      "tpuVote": "64.130.50.154:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.154:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.154:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.122:8001",
      "gossip": "198.13.130.122:8000",
      "pubkey": "49LWk5kJHjAP6CuhAJv4MhbcjaFiWWA4v9E1Bqxob4Pf",
      "pubsub": null,
      "tpuQuic": "198.13.130.122:8002",
      "tpuVote": "198.13.130.122:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.122:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.122:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.105:8002",
      "gossip": "64.130.42.105:8001",
      "pubkey": "7a8KL1yFER6zj7XZzPRvHXymmy4TNaev7wjJq22bBgaS",
      "pubsub": null,
      "tpuQuic": "64.130.42.105:8003",
      "tpuVote": "64.130.42.105:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.105:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.105:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.225.117:8002",
      "gossip": "74.63.225.117:8001",
      "pubkey": "FvXUAPpK7xwkKJMkc3v4hBGcxkQ8VtmCqcgj9GNJmD1z",
      "pubsub": null,
      "tpuQuic": "74.63.225.117:8003",
      "tpuVote": "74.63.225.117:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.225.117:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.225.117:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.151:8002",
      "gossip": "64.130.32.151:8001",
      "pubkey": "9RfEsZaxenTCXbLtoac7139xnDbuaFJwbp1GFKVFGe2J",
      "pubsub": null,
      "tpuQuic": "64.130.32.151:8003",
      "tpuVote": "64.130.32.151:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.151:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.151:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "148.51.214.4:8001",
      "gossip": "148.51.214.4:8000",
      "pubkey": "9Y89ck1ALDvVzfi1GvKJQUcAbdLmstPCGMe8eKyPKDVP",
      "pubsub": null,
      "tpuQuic": "148.51.214.4:8002",
      "tpuVote": "148.51.214.4:8004",
      "version": "4.1.0-beta.2",
      "clientId": "JitoLabs",
      "featureSet": 713536442,
      "serveRepair": "148.51.214.4:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "148.51.214.4:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.32.38:8002",
      "gossip": "64.31.32.38:8001",
      "pubkey": "8HHgMz4fJPtpGcBgtQUuETxKm2sXvfAU27potFdpCPA3",
      "pubsub": null,
      "tpuQuic": "64.31.32.38:8003",
      "tpuVote": "64.31.32.38:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.32.38:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.32.38:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.27:8001",
      "gossip": "45.154.33.27:8000",
      "pubkey": "LNtrnJjxqaDUxAAh6U8jMX8k6Wwmn7sKuAs6ZvZQs2Z",
      "pubsub": null,
      "tpuQuic": "45.154.33.27:8002",
      "tpuVote": "45.154.33.27:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "45.154.33.27:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.27:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.162.101:8003",
      "gossip": "63.254.162.101:8001",
      "pubkey": "8eG5YE5csHtm7mshFwY7KJ3d7VMruPwX6dEtTNHfHwYx",
      "pubsub": null,
      "tpuQuic": "63.254.162.101:9007",
      "tpuVote": "63.254.162.101:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "63.254.162.101:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.162.101:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.185:8001",
      "gossip": "70.40.185.185:8000",
      "pubkey": "ERAWNKAe8WhnK74KZrLmnLb7VjxEVHQg5kE89ttmRkUx",
      "pubsub": null,
      "tpuQuic": "70.40.185.185:8002",
      "tpuVote": "70.40.185.185:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.185:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.185:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.176.189:8003",
      "gossip": "84.32.176.189:8001",
      "pubkey": "EtzbPsqrFLrsNVdoBYU89jxsohAq6hywDJGYzdGK2oSb",
      "pubsub": null,
      "tpuQuic": "84.32.176.189:9007",
      "tpuVote": "84.32.176.189:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "84.32.176.189:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.176.189:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.203.113:8002",
      "gossip": "74.63.203.113:8001",
      "pubkey": "95wxzuaq4KocuThY7D6Eizy5oRdpukPrsnusCxyeaKmo",
      "pubsub": null,
      "tpuQuic": "74.63.203.113:8003",
      "tpuVote": "74.63.203.113:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.203.113:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.203.113:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "141.147.161.154:8001",
      "pubkey": "7WcqfFzXW7MTriLgacrY3dc28qMg4KZgEDMEcZGH1qJe",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.242.111.144:8000",
      "gossip": "47.242.111.144:8001",
      "pubkey": "EFCqF4iMkkdUnKD9cPqjgfF7EtUEzSudEJ3dkMHR5xyP",
      "pubsub": null,
      "tpuQuic": "47.242.111.144:8002",
      "tpuVote": "47.242.111.144:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "47.242.111.144:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "47.242.111.144:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.142:8001",
      "gossip": "64.130.63.142:8000",
      "pubkey": "HUrQKegJYHCdmeBVMs8wSVS1s8x1xXSrxvRHERteKBN5",
      "pubsub": null,
      "tpuQuic": "64.130.63.142:8002",
      "tpuVote": "64.130.63.142:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.63.142:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.142:8003"
    },
    {
      "rpc": "64.130.44.103:8899",
      "tpu": null,
      "tvu": "64.130.44.103:8002",
      "gossip": "64.130.44.103:8001",
      "pubkey": "CakcnaRDHka2gXyfbEd2d3xsvkJkqsLw2akB3zsN1D2S",
      "pubsub": "64.130.44.103:8900",
      "tpuQuic": "64.130.44.103:8003",
      "tpuVote": "64.130.44.103:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.44.103:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.103:8004"
    },
    {
      "rpc": "88.216.36.28:8899",
      "tpu": null,
      "tvu": "88.216.36.28:8000",
      "gossip": "88.216.36.28:8901",
      "pubkey": "HH8fyjqQxxk9zuSVyA6kejBS2TzWB8qEMcjCyeTUY9FQ",
      "pubsub": "88.216.36.28:8900",
      "tpuQuic": "88.216.36.28:8001",
      "tpuVote": "88.216.36.28:8003",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "88.216.36.28:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.36.28:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "35.208.176.117:8000",
      "gossip": "35.208.176.117:8001",
      "pubkey": "6fY8bSPegGX3cxizEthsg9tQKcGeufDfeK1gJyzzEUi8",
      "pubsub": null,
      "tpuQuic": "35.208.176.117:8002",
      "tpuVote": "35.208.176.117:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "35.208.176.117:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "35.208.176.117:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.38.12:8002",
      "gossip": "207.241.184.11:8001",
      "pubkey": "HN1nb1kL56BFyxjGzkcNGc6P8FnpPF1qNztNN2qCRrw1",
      "pubsub": null,
      "tpuQuic": "207.241.184.11:8002",
      "tpuVote": "207.241.184.11:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "207.241.184.11:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "207.241.184.11:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.9.82:8002",
      "gossip": "202.8.9.82:8001",
      "pubkey": "FJiUpxeGkm1nsq5hkKc1DY3FVBUFEndmDtQHF6FK8JoD",
      "pubsub": null,
      "tpuQuic": "202.8.9.82:8003",
      "tpuVote": "202.8.9.82:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.9.82:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.9.82:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.168:8002",
      "gossip": "64.130.42.168:8001",
      "pubkey": "EkCJ7AsuWVeU2aouY4GZgXT8dTkahxqZ5ELXJcMzKma8",
      "pubsub": null,
      "tpuQuic": "64.130.42.168:8003",
      "tpuVote": "64.130.42.168:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.168:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.168:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.178:8002",
      "gossip": "141.98.219.178:8001",
      "pubkey": "7TXdtW9ackrf28RVoNE29n9nbKKjsvLRYR4p511M5rb9",
      "pubsub": null,
      "tpuQuic": "141.98.219.178:8003",
      "tpuVote": "141.98.219.178:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.219.178:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.178:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "183.81.168.177:8000",
      "gossip": "183.81.168.177:8001",
      "pubkey": "ErxAgDL63UtyK2JCXta8fHUhdEqiF9kKa7t8XJnFMPHg",
      "pubsub": null,
      "tpuQuic": "183.81.168.177:8002",
      "tpuVote": "183.81.168.177:8004",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "183.81.168.177:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "183.81.168.177:8003"
    },
    {
      "rpc": "23.227.223.166:8895",
      "tpu": null,
      "tvu": "23.227.223.166:8002",
      "gossip": "23.227.223.166:8001",
      "pubkey": "4cjjKuuscgyurK6qZ5gJs1kexuCPMqej86RXesV7W2B9",
      "pubsub": "23.227.223.166:8895",
      "tpuQuic": "23.227.223.166:8003",
      "tpuVote": "23.227.223.166:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "23.227.223.166:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.227.223.166:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.87.42.199:18000",
      "gossip": "64.87.42.199:8000",
      "pubkey": "D1q6iZsrUjmbzfBxANnmV3FxeLmZKBt5sjciP6MeKB1M",
      "pubsub": null,
      "tpuQuic": "64.87.42.199:18001",
      "tpuVote": "64.87.42.199:18003",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.87.42.199:18008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.87.42.199:18002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.43:8001",
      "gossip": "67.213.121.43:8000",
      "pubkey": "8RopuN8NGa87Hp5WStAA5WHKj6pKQQmFqjfmLj1uSEab",
      "pubsub": null,
      "tpuQuic": "67.213.121.43:8002",
      "tpuVote": "67.213.121.43:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.121.43:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.43:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "177.54.154.63:10001",
      "gossip": "177.54.154.63:10000",
      "pubkey": "6rtMxMZAFvusiKc6vt1fymR4Uh6dsbqDe111cdEaqXjb",
      "pubsub": null,
      "tpuQuic": "177.54.154.63:10002",
      "tpuVote": "177.54.154.63:10004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "177.54.154.63:10009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "177.54.154.63:10003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.34.42:8002",
      "gossip": "64.130.34.42:8001",
      "pubkey": "BDxp5bFbyUc7qY3cZ54Lg7fAQJpUiWvs7kSfWdzmJG6r",
      "pubsub": null,
      "tpuQuic": "64.130.34.42:8003",
      "tpuVote": "64.130.34.42:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.34.42:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.34.42:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.187.35.8:8001",
      "gossip": "5.187.35.8:8000",
      "pubkey": "BQpbzcQCQKq2S9WogmpVVjP2pU7KhXNu3nmbJbTuySwu",
      "pubsub": null,
      "tpuQuic": "5.187.35.8:8002",
      "tpuVote": "5.187.35.8:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "5.187.35.8:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.187.35.8:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.67.151.185:8001",
      "gossip": "69.67.151.185:8000",
      "pubkey": "5tZyorwavr8CFCoVNVvQDu8dTVjZyeXAWryRerxH6e7w",
      "pubsub": null,
      "tpuQuic": "69.67.151.185:8002",
      "tpuVote": "69.67.151.185:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "69.67.151.185:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.67.151.185:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "189.1.164.93:8001",
      "gossip": "189.1.164.93:8000",
      "pubkey": "DSLVs8uTDhVuKYbUCtUj3qRMq2n9R83Q82XJorsVPCWe",
      "pubsub": null,
      "tpuQuic": "189.1.164.93:8002",
      "tpuVote": "189.1.164.93:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "189.1.164.93:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "189.1.164.93:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "168.222.96.17:8003",
      "gossip": "168.222.96.17:8001",
      "pubkey": "49LqgbGgd6AsbGHYCQWDLr11sM8zmfydmWEe2mnhyhJg",
      "pubsub": null,
      "tpuQuic": "168.222.96.17:8026",
      "tpuVote": "168.222.96.17:8020",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 915572817,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "168.222.96.17:8026"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "150.136.148.99:8001",
      "pubkey": "CZG4vj3qiXWb2oWP54JoQyybgb9cU1hXBhZrVUWreLC7",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.165.6:8001",
      "gossip": "5.199.165.6:8002",
      "pubkey": "HgxhLQ7M2H6hFe8rn6VZtpFm8kkDn8THTQpunR6vUpom",
      "pubsub": null,
      "tpuQuic": "5.199.165.6:8003",
      "tpuVote": "5.199.165.6:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "5.199.165.6:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.165.6:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "146.59.118.96:8001",
      "gossip": "146.59.118.96:8000",
      "pubkey": "CQoPai85VvwobDV2a9WhC4WjrXaKRkLAsfGj33MpZEX9",
      "pubsub": null,
      "tpuQuic": "126.0.0.1:41331",
      "tpuVote": "146.59.118.96:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "146.59.118.96:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.59.118.96:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "164.68.106.229:20000",
      "gossip": "164.68.106.229:8000",
      "pubkey": "8ppiE2eVFegtsMYG5KYKzzJuTsBsoiAdfWjMXR3bzfmv",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.53.47:9004",
      "gossip": "64.130.53.47:9001",
      "pubkey": "SALTsHeGko9U8aHpwUYckqepXGU8MHWfM2ip5xnxSf5",
      "pubsub": null,
      "tpuQuic": "64.130.53.47:9008",
      "tpuVote": "64.130.53.47:9002",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "64.130.53.47:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.47:9008"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "74.118.140.195:7002",
      "pubkey": "E37fV1m9FVBs4aoP1Xi41qhKQmzhDyC9fDwDdGq5cdap",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.174:8002",
      "gossip": "64.130.59.174:8001",
      "pubkey": "2f9nAmxDgi5gLBjW9PSXLuB3ge5T5Ycen2CyNyf7xKjP",
      "pubsub": null,
      "tpuQuic": "64.130.59.174:8010",
      "tpuVote": "64.130.59.174:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "64.130.59.174:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.174:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.34.168:8001",
      "gossip": "64.130.34.168:8000",
      "pubkey": "PTky5Jj4t1FNuknPg3FczfiteX93PoHiJnjjq3JDEca",
      "pubsub": null,
      "tpuQuic": "64.130.34.168:8002",
      "tpuVote": "64.130.34.168:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.34.168:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.34.168:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "194.48.217.41:8001",
      "gossip": "194.48.217.41:8000",
      "pubkey": "49J7cxickiKMFbZNAJ6YMjVrWnG4bWKb7RhunLiDZURt",
      "pubsub": null,
      "tpuQuic": "194.48.217.41:8002",
      "tpuVote": "194.48.217.41:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "194.48.217.41:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "194.48.217.41:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.91:8002",
      "gossip": "208.115.227.91:8001",
      "pubkey": "7xFvgkithJR837AxNxwE4Zey498CM11TjSKdg1m68iAz",
      "pubsub": null,
      "tpuQuic": "208.115.227.91:8003",
      "tpuVote": "208.115.227.91:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.91:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.91:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.175:8001",
      "gossip": "64.130.63.175:8000",
      "pubkey": "3E7ZStRgWqzjYdwgyc3XGTMnhApH4TYnh7vURobNAKRZ",
      "pubsub": null,
      "tpuQuic": "64.130.63.175:8002",
      "tpuVote": "64.130.63.175:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.175:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.175:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.214.74:8002",
      "gossip": "2.57.214.74:8001",
      "pubkey": "8e9THf1Bd1nBVSWeGKHh2Mtevm82T8H278BBzJ2oyUJi",
      "pubsub": null,
      "tpuQuic": "2.57.214.74:8003",
      "tpuVote": "2.57.214.74:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "2.57.214.74:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "2.57.214.74:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.8.186:8001",
      "gossip": "202.8.8.186:8000",
      "pubkey": "62yRTVw7oBNaV3JRBJLPrZB99yPUpStM4WvnFuUDWUhP",
      "pubsub": null,
      "tpuQuic": "202.8.8.186:8002",
      "tpuVote": "202.8.8.186:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "202.8.8.186:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.8.186:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.139.179:8002",
      "gossip": "74.118.139.179:8001",
      "pubkey": "Hb9ixFrNnCLEQUgQDVsq73Yh1NhWee9SNCN8uuu1fQPm",
      "pubsub": null,
      "tpuQuic": "74.118.139.179:8003",
      "tpuVote": "74.118.139.179:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.139.179:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.139.179:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "91.237.141.80:8000",
      "gossip": "91.237.141.80:8001",
      "pubkey": "G8PRbhRgmsfVycBjSmzswifnZRd4ZEWBiREQSymbKUY9",
      "pubsub": null,
      "tpuQuic": "91.237.141.80:8002",
      "tpuVote": "91.237.141.80:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "91.237.141.80:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.237.141.80:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.73.202:8001",
      "gossip": "85.195.73.202:8000",
      "pubkey": "8VjUfNQmSLrzcfzxZKrodmcPnpmEqvv98Dz9MDP4RZvs",
      "pubsub": null,
      "tpuQuic": "85.195.73.202:8002",
      "tpuVote": "85.195.73.202:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "85.195.73.202:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.73.202:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.17.53.104:8002",
      "gossip": "84.17.53.104:8001",
      "pubkey": "D7Dq6Jd1YooXEhkrCVkMHrMT13WM7vP32DTQmM9RQEuX",
      "pubsub": null,
      "tpuQuic": "84.17.53.104:8003",
      "tpuVote": "84.17.53.104:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "84.17.53.104:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.17.53.104:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.186.205:8000",
      "gossip": "84.32.186.205:8001",
      "pubkey": "4zwYxb5mqancATNfrSQNG3XgHBXP34rBFoJ4iCDwXcc",
      "pubsub": null,
      "tpuQuic": "84.32.186.205:8002",
      "tpuVote": "84.32.186.205:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "84.32.186.205:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.186.205:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.72:8002",
      "gossip": "64.130.63.72:8001",
      "pubkey": "mce2QVkKHe1dyuNdRSXUreZkpQVnFxcPBdM9Ya5Hns9",
      "pubsub": null,
      "tpuQuic": "64.130.63.72:8003",
      "tpuVote": "64.130.63.72:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "64.130.63.72:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.72:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.87.98:14001",
      "gossip": "57.129.87.98:14000",
      "pubkey": "G62NpjP327xXqVZxR3VUufb381dAMgtci7M6qqDmUaMs",
      "pubsub": null,
      "tpuQuic": "57.129.87.98:14002",
      "tpuVote": "57.129.87.98:14004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "57.129.87.98:14009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.87.98:14003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "8.217.254.152:8000",
      "gossip": "8.217.254.152:8001",
      "pubkey": "CFqKVzDKYtjU2aupUSfkf3QmNb4Y2zxBEV1ianQVP8Rb",
      "pubsub": null,
      "tpuQuic": "8.217.254.152:8002",
      "tpuVote": "8.217.254.152:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "8.217.254.152:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "8.217.254.152:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.86:8001",
      "gossip": "64.130.43.86:8000",
      "pubkey": "DTEsf4WhVe7kmuXePXT5HazD2yU6n6YZBgSHmXy14ycc",
      "pubsub": null,
      "tpuQuic": "64.130.43.86:8002",
      "tpuVote": "64.130.43.86:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.86:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.86:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.46.86.227:8000",
      "gossip": "72.46.86.227:8001",
      "pubkey": "HtPaebkcs3s3Rgi6Rq9j7kt685N9RgXeTrpBrK6qnFfS",
      "pubsub": null,
      "tpuQuic": "72.46.86.227:8002",
      "tpuVote": "72.46.86.227:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "72.46.86.227:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.46.86.227:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.215.68:8001",
      "gossip": "2.57.215.68:8000",
      "pubkey": "8vfFYgV4hCVJ2XxsFUKh1ePbaQW7MHcJqwxkTfVyyEfx",
      "pubsub": null,
      "tpuQuic": "2.57.215.68:8002",
      "tpuVote": "2.57.215.68:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "2.57.215.68:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "2.57.215.68:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.109.165.22:8001",
      "gossip": "109.109.165.22:8000",
      "pubkey": "39rFhA4yKh4GFTctEi6oALYiH8iyPTpip5GX3LbDycZQ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.76:8002",
      "gossip": "64.130.32.76:8001",
      "pubkey": "Cz4xM93Lm7rmxHiBZ5kekJu6AJuPVhZNFnJi2mKENYmC",
      "pubsub": null,
      "tpuQuic": "64.130.32.76:8003",
      "tpuVote": "64.130.32.76:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.76:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.76:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.54.100:8002",
      "gossip": "67.209.54.100:8001",
      "pubkey": "CtqDF71rD5xS1dbZo4jCbfWkZq5x8fSLCPe2pkqX3Goe",
      "pubsub": null,
      "tpuQuic": "67.209.54.100:8003",
      "tpuVote": "67.209.54.100:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.209.54.100:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.54.100:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.53.40:8002",
      "gossip": "64.130.53.40:8001",
      "pubkey": "53eAJLYRsnU6ENVuwDxC7ggj6Jtj8HXJxAZgBqoXGdP5",
      "pubsub": null,
      "tpuQuic": "64.130.53.40:8003",
      "tpuVote": "64.130.53.40:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.53.40:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.40:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.95.45.87:8001",
      "gossip": "141.95.45.87:8000",
      "pubkey": "5JM7qHfXMNjwYu9ugvVRmqrYo753KsQy1uwY84pxo4MF",
      "pubsub": null,
      "tpuQuic": "141.95.45.87:8002",
      "tpuVote": "141.95.45.87:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "141.95.45.87:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.95.45.87:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.211:8002",
      "gossip": "64.130.49.211:8001",
      "pubkey": "CJeXaRSHXDDTxnHj3a9Zj3tJRQBWQbMC2KeA28Vau8aj",
      "pubsub": null,
      "tpuQuic": "64.130.49.211:8003",
      "tpuVote": "64.130.49.211:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.49.211:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.211:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.38.133.18:40401",
      "gossip": "64.38.133.18:40400",
      "pubkey": "K3dKiBGW1oKUsHRbPRdt4hZoRdA3Ecg56d7iUunBPMd",
      "pubsub": null,
      "tpuQuic": "64.38.133.18:40402",
      "tpuVote": "64.38.133.18:40404",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.38.133.18:40409",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.38.133.18:40403"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.242.207:8002",
      "gossip": "204.16.242.207:8001",
      "pubkey": "Fn6JYw2GqjNUHnwfsvdByjnoTe5fUcatEWGSryUmHxyo",
      "pubsub": null,
      "tpuQuic": "204.16.242.207:8003",
      "tpuVote": "204.16.242.207:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.242.207:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.242.207:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.35:8002",
      "gossip": "64.130.42.35:8001",
      "pubkey": "9bqg6NHwCK95LrhoVswJAbUpStox1b4fr5oemBLnLQkC",
      "pubsub": null,
      "tpuQuic": "64.130.42.35:8003",
      "tpuVote": "64.130.42.35:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.35:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.35:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.219.170.115:8002",
      "gossip": "103.219.170.115:8001",
      "pubkey": "BM3HeTqJyYnZ8cnTFFFZUe79FzixzUL4hZNCdcQYg2it",
      "pubsub": null,
      "tpuQuic": "103.219.170.115:8003",
      "tpuVote": "103.219.170.115:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "103.219.170.115:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.219.170.115:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.170:8001",
      "gossip": "64.130.63.170:8000",
      "pubkey": "23fQQKP7G77jPwQXBUAFAcqLSKeees99H4VHtUbeaDCi",
      "pubsub": null,
      "tpuQuic": "64.130.63.170:8002",
      "tpuVote": "64.130.63.170:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.170:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.170:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.130.53.73:7001",
      "pubkey": "5mY1KXzGR6gxyc5dPSqn3knVZ6HkLKHDszv19XSZbDrf",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.111:8002",
      "gossip": "64.130.50.111:8001",
      "pubkey": "2TvZfT5t9T2Zp2mkL9ngwNNB3FfTtKSWntHvNbYGPACp",
      "pubsub": null,
      "tpuQuic": "64.130.50.111:8003",
      "tpuVote": "64.130.50.111:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.111:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.111:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.32.15:8002",
      "gossip": "64.31.32.15:8001",
      "pubkey": "2ai1RDoJ1c1kjjDKKMT4Uv4BKqycUfYyDpLYc2tSaNMv",
      "pubsub": null,
      "tpuQuic": "64.31.32.15:8003",
      "tpuVote": "64.31.32.15:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.32.15:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.32.15:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.197:8001",
      "gossip": "64.130.32.197:8000",
      "pubkey": "HbF5hwGb3AhdLLgzD3ynmfWmoT9LS9Ykh4k7TE4s76qw",
      "pubsub": null,
      "tpuQuic": "64.130.32.197:8002",
      "tpuVote": "64.130.32.197:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.197:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.197:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.224.218:8002",
      "gossip": "208.115.224.218:8001",
      "pubkey": "vLDeXwrjqHCWvRBqgAE586xEFDgfGQFFwebLtpAZVTw",
      "pubsub": null,
      "tpuQuic": "208.115.224.218:8003",
      "tpuVote": "208.115.224.218:8005",
      "version": "4.1.0-beta.3",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "208.115.224.218:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.224.218:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.109.164.195:8001",
      "gossip": "109.109.164.195:8000",
      "pubkey": "8uJaYKT66iFG5GLEANNiTmQ2tNPJeaCbUUDJCWhRbn3C",
      "pubsub": null,
      "tpuQuic": "109.109.164.195:8002",
      "tpuVote": "109.109.164.195:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.109.164.195:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.109.164.195:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.154:8001",
      "gossip": "202.8.11.154:8000",
      "pubkey": "59D6Hjk1pv3ojdnHrzVNLTbhsBZNQTcuJvPtfKbaVk6B",
      "pubsub": null,
      "tpuQuic": "202.8.11.154:8002",
      "tpuVote": "202.8.11.154:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.154:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.154:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "54.145.28.86:8001",
      "gossip": "54.145.28.86:8000",
      "pubkey": "7oFdJhFdrYWZjUpFd6MHXTZkXEsW74MXYu6WRZmdK2FF",
      "pubsub": null,
      "tpuQuic": "54.145.28.86:8009",
      "tpuVote": "54.145.28.86:8005",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "54.145.28.86:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.145.28.86:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "192.155.103.141:8001",
      "gossip": "192.155.103.141:8000",
      "pubkey": "6RvdTfisNNcYzng6kgNUQgQAzVMCFqKGSiW1LJMzR2nn",
      "pubsub": null,
      "tpuQuic": "192.155.103.141:8002",
      "tpuVote": "192.155.103.141:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "192.155.103.141:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "192.155.103.141:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.125:8001",
      "gossip": "45.152.160.125:8002",
      "pubkey": "Bs5kEVkF8RDjVgWvLvSLMn8XvXys6T1a3xqAKt7348M",
      "pubsub": null,
      "tpuQuic": "45.152.160.125:8003",
      "tpuVote": "45.152.160.125:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.152.160.125:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.125:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.158.38.22:8900",
      "gossip": "45.158.38.22:8001",
      "pubkey": "BX6y32Td86fghy7viaXm34fwVWMgKvnDez3kguwLYRe2",
      "pubsub": null,
      "tpuQuic": "45.158.38.22:8901",
      "tpuVote": "45.158.38.22:8903",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.158.38.22:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.158.38.22:8902"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.101:8002",
      "gossip": "141.98.219.101:8001",
      "pubkey": "pkQApkQY9ssaeP8AodprT2zZ9undM93KrEr7oXKewpG",
      "pubsub": null,
      "tpuQuic": "141.98.219.101:8003",
      "tpuVote": "141.98.219.101:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.219.101:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.101:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.79:8001",
      "gossip": "64.130.37.79:8000",
      "pubkey": "ArwXPrajKhaoRLQumEswuUwwsF3sbj9gLVTdFFAWj46u",
      "pubsub": null,
      "tpuQuic": "64.130.37.79:8002",
      "tpuVote": "64.130.37.79:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.37.79:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.79:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "177.54.159.45:8002",
      "gossip": "177.54.159.45:8001",
      "pubkey": "8cGaH74r3ADQxusA1ZkYaHp8R846XuAR4h17CXAjyCDc",
      "pubsub": null,
      "tpuQuic": "177.54.159.45:8003",
      "tpuVote": "177.54.159.45:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "177.54.159.45:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "177.54.159.45:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.97.21:8001",
      "gossip": "84.32.97.21:8000",
      "pubkey": "FdasAu5xrWnrNk8aA3fMyjavchP1yP3pQs28YAGhzCa5",
      "pubsub": null,
      "tpuQuic": "84.32.97.21:8002",
      "tpuVote": "84.32.97.21:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "84.32.97.21:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.97.21:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "94.31.53.9:8031",
      "gossip": "94.31.53.9:8030",
      "pubkey": "BuH1zaHCo3Qvn4PyPJzGTtYmeomxehNDh66wfkiZc499",
      "pubsub": null,
      "tpuQuic": "94.31.53.9:8032",
      "tpuVote": "94.31.53.9:8034",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "94.31.53.9:8039",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "94.31.53.9:8033"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.97.3:8021",
      "gossip": "84.32.97.3:8001",
      "pubkey": "7kGcaEiRa4oDJDtvVXL9FQuzZgDyes83pyzqC7YvW6Pt",
      "pubsub": null,
      "tpuQuic": "84.32.97.3:8022",
      "tpuVote": "84.32.97.3:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "84.32.97.3:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.97.3:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.235.43.89:8001",
      "gossip": "15.235.43.89:8000",
      "pubkey": "J6uzYgxuyyuURXSHrB5ax7w2ppyrqom3qo6o8UFyeGFF",
      "pubsub": null,
      "tpuQuic": "15.235.43.89:8002",
      "tpuVote": "15.235.43.89:8004",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "15.235.43.89:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.235.43.89:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.167:8002",
      "gossip": "64.130.42.167:8001",
      "pubkey": "12T8Qk49kQRxbpmvnYTc1DSeQSw9A5LxPPLF1on7pmdr",
      "pubsub": null,
      "tpuQuic": "64.130.42.167:8003",
      "tpuVote": "64.130.42.167:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.167:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.167:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.81:8002",
      "gossip": "51.222.146.247:8001",
      "pubkey": "85pDpQmmhbW9pxtCjvowPieXeEWzViAWbmj51td7nU7j",
      "pubsub": null,
      "tpuQuic": "51.222.146.247:8003",
      "tpuVote": "51.222.146.247:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.146.247:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.146.247:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.152:8001",
      "gossip": "198.13.130.152:8000",
      "pubkey": "E64aouHKxvZefBbJ6szSczwfmrRozvMaJUNo71BoG9SV",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-beta.1",
      "clientId": "JitoLabs",
      "featureSet": 713536442,
      "serveRepair": "198.13.130.152:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.55.158:8002",
      "gossip": "64.130.55.158:8001",
      "pubkey": "C9TGq3QYuE3tCSvSW2JxFjhZumjhhRutRfF1HUT8xBCq",
      "pubsub": null,
      "tpuQuic": "64.130.55.158:8003",
      "tpuVote": "64.130.55.158:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.55.158:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.55.158:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "93.123.46.171:8001",
      "gossip": "93.123.46.171:8002",
      "pubkey": "AtrQdby3BE8uBJCv87P6E96TUtSTdStqj4mdp5SqGTGz",
      "pubsub": null,
      "tpuQuic": "93.123.46.171:8003",
      "tpuVote": "93.123.46.171:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "93.123.46.171:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "93.123.46.171:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.105.55:8001",
      "gossip": "208.91.105.55:8000",
      "pubkey": "FMDkYpi5JZoXxCPo7isK5U3be2XEXLobeBE9x1FxuN5c",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "64.130.50.158:8899",
      "tpu": null,
      "tvu": "64.130.50.158:8000",
      "gossip": "64.130.50.158:8001",
      "pubkey": "EfbZrWLC5AG1oBXwm28GofYg5s2JnwEiuomF3MwHqn5E",
      "pubsub": "64.130.50.158:8900",
      "tpuQuic": "64.130.50.158:8002",
      "tpuVote": "64.130.50.158:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.50.158:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.158:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.17:8002",
      "gossip": "64.130.32.17:8001",
      "pubkey": "BEabMcnHzQ2VpMzEusRF4oVPG2ZCtModKDVPxGvqoYtA",
      "pubsub": null,
      "tpuQuic": "64.130.32.17:8003",
      "tpuVote": "64.130.32.17:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.17:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.17:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.203.191:8002",
      "gossip": "208.115.203.191:8001",
      "pubkey": "DK9NbNkLa5jFe3F83aYhRiVZ8oFKa3ycdjgYkkpPBRCw",
      "pubsub": null,
      "tpuQuic": "208.115.203.191:8003",
      "tpuVote": "208.115.203.191:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.203.191:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.203.191:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "172.93.109.136:8000",
      "gossip": "172.93.109.136:8021",
      "pubkey": "62cCknMX3Pi3rUTiTt5JtmeYxRWQLuE9M6fyrwTeUYoE",
      "pubsub": null,
      "tpuQuic": "172.93.109.136:8001",
      "tpuVote": "172.93.109.136:8003",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "172.93.109.136:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "172.93.109.136:8002"
    },
    {
      "rpc": "185.133.42.6:8899",
      "tpu": null,
      "tvu": "185.133.42.6:8001",
      "gossip": "185.133.42.6:8000",
      "pubkey": "E9nAJpjn46jT4wYUDPLFWVZeFY2YJEPtXfqwPbAYj7d6",
      "pubsub": "185.133.42.6:8900",
      "tpuQuic": "185.133.42.6:8002",
      "tpuVote": "185.133.42.6:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.133.42.6:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.133.42.6:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.36.102:8001",
      "gossip": "88.216.36.102:8000",
      "pubkey": "8r2s1FviZhMwfdYTZVsswUZrCk9Bfi6iTHjC1knwEEuE",
      "pubsub": null,
      "tpuQuic": "88.216.36.102:8002",
      "tpuVote": "88.216.36.102:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "88.216.36.102:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.36.102:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.120:5556",
      "gossip": "45.152.160.120:5555",
      "pubkey": "AhYT7mPdYPYYjJunkYVunVpULQ6HbEswGDMuzWqmcBSH",
      "pubsub": null,
      "tpuQuic": "45.152.160.120:5557",
      "tpuVote": "45.152.160.120:5559",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.152.160.120:5564",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.120:5558"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "65.108.44.169:8000",
      "gossip": "65.108.44.169:8001",
      "pubkey": "HfMivAUhmxhhz1ASMLU1fWvRkhoGExufR3i9bUqX3T5r",
      "pubsub": null,
      "tpuQuic": "65.108.44.169:8009",
      "tpuVote": "65.108.44.169:8005",
      "version": "3.0.6",
      "clientId": "Agave",
      "featureSet": 3604001754,
      "serveRepair": "65.108.44.169:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "65.108.44.169:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.128.189.203:8001",
      "gossip": "57.128.189.203:8000",
      "pubkey": "222179PQ5LctyefGx25YUHD2LcmAntV8xC9oVSW2t4fD",
      "pubsub": null,
      "tpuQuic": "57.128.189.203:8002",
      "tpuVote": "57.128.189.203:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "57.128.189.203:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.128.189.203:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.153:8002",
      "gossip": "64.130.37.153:8001",
      "pubkey": "HXTjwno8YTUFhQ5zQ3J6sLkfrk4L3JMr84QH7ooyoR7n",
      "pubsub": null,
      "tpuQuic": "64.130.37.153:8003",
      "tpuVote": "64.130.37.153:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.153:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.153:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.104:8002",
      "gossip": "64.130.51.104:8001",
      "pubkey": "55DrjAKsViez4U2MjeM3FnZF6r6b9Y8jCiFsBwyLqAYR",
      "pubsub": null,
      "tpuQuic": "64.130.51.104:8003",
      "tpuVote": "64.130.51.104:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.104:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.104:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.139:8002",
      "gossip": "64.130.32.139:8001",
      "pubkey": "EPuzgpXsPryrU7QGo5EPcUt9VDN6QHSHy7XCwHNbVtcM",
      "pubsub": null,
      "tpuQuic": "64.130.32.139:8003",
      "tpuVote": "64.130.32.139:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.139:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.139:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.15.240.9:18503",
      "gossip": "204.15.240.9:18502",
      "pubkey": "sNKpC9XPhStDhjvKfQoUyo6s4tNcdCzdrwTkc13PGtz",
      "pubsub": null,
      "tpuQuic": "204.15.240.9:18504",
      "tpuVote": "204.15.240.9:18506",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "204.15.240.9:18511",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.15.240.9:18505"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "91.197.185.22:8000",
      "gossip": "91.197.185.22:8001",
      "pubkey": "4cVuy6qmLspqYDZzpJz3JCVPVAzgo9JUhngzKwXqgakb",
      "pubsub": null,
      "tpuQuic": "91.197.185.22:8002",
      "tpuVote": "91.197.185.22:8004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "91.197.185.22:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.197.185.22:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.209.179.229:8001",
      "gossip": "185.209.179.229:8000",
      "pubkey": "J9gs9i8c9XU1WCBZEypsaFYNGZBBLKu2fG7pGA1aEbN8",
      "pubsub": null,
      "tpuQuic": "185.209.179.229:8002",
      "tpuVote": "185.209.179.229:8004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "185.209.179.229:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.209.179.229:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.109.63.148:18000",
      "gossip": "23.109.63.148:8000",
      "pubkey": "DkiMMaWH8FxnNM4DrNbpE3qBtCrtLdeX6unNv5PtJq3X",
      "pubsub": null,
      "tpuQuic": "23.109.63.148:18001",
      "tpuVote": "23.109.63.148:18003",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "23.109.63.148:18008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.109.63.148:18002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "141.98.217.153:8001",
      "pubkey": "61Lyeis64DWjfbo16rD1WeKdiRmW31ZgdSW2XuVc9hRr",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.27:8002",
      "gossip": "64.31.54.27:8001",
      "pubkey": "GP64NKXGkkZNxSLxSSD15G38Hxf1BYFeHynUJJiBRjqg",
      "pubsub": null,
      "tpuQuic": "64.31.54.27:8003",
      "tpuVote": "64.31.54.27:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.27:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.27:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "128.106.101.146:8001",
      "gossip": "128.106.101.146:8000",
      "pubkey": "DeBCbULCu5LYgHTgxSQ43wLQZq9CD51XpfgShrpPo4Kg",
      "pubsub": null,
      "tpuQuic": "128.106.101.146:8002",
      "tpuVote": "128.106.101.146:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "128.106.101.146:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "128.106.101.146:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.14:8002",
      "gossip": "64.130.33.14:8001",
      "pubkey": "82mN1QWr9Nktj9D6woendMc4jb5E8qb1kQoRLxmiW75g",
      "pubsub": null,
      "tpuQuic": "64.130.33.14:8003",
      "tpuVote": "64.130.33.14:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.33.14:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.14:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.2.39.165:8002",
      "gossip": "69.2.39.165:8001",
      "pubkey": "FGkqcegJuXHk78Mp7j3JrpxNX63TfrYeKtwdscpHpCBT",
      "pubsub": null,
      "tpuQuic": "69.2.39.165:8003",
      "tpuVote": "69.2.39.165:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "69.2.39.165:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.2.39.165:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.104:8002",
      "gossip": "64.130.42.104:8001",
      "pubkey": "2RzeupAREP3Jm7zr2KgHr8fYEQphmPyY5V5YCwUoVuaQ",
      "pubsub": null,
      "tpuQuic": "64.130.42.104:8003",
      "tpuVote": "64.130.42.104:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.104:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.104:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.148.231.242:8002",
      "gossip": "141.148.231.242:8001",
      "pubkey": "pidzVGhbT1AWLHZaBNf4RypKmrVEpruVRSYoS1SHGKJ",
      "pubsub": null,
      "tpuQuic": "141.148.231.242:8010",
      "tpuVote": "141.148.231.242:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "141.148.231.242:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.148.231.242:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.87.143:8002",
      "gossip": "64.34.87.143:8001",
      "pubkey": "ASgPDJwaLRqFksuE1ySkLbhsBv9ng47cPUHn63EJWT6k",
      "pubsub": null,
      "tpuQuic": "64.34.87.143:8003",
      "tpuVote": "64.34.87.143:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.34.87.143:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.87.143:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.58:8001",
      "gossip": "64.130.41.58:8000",
      "pubkey": "4fUL8PEKXKLvVDqbCEYQ1hPDQ4R92iygLddjpsYdWYS8",
      "pubsub": null,
      "tpuQuic": "64.130.41.58:8002",
      "tpuVote": "64.130.41.58:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.41.58:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.58:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.109.62.84:8001",
      "gossip": "23.109.62.84:8000",
      "pubkey": "Ao3jriPXCRgZFT1K8HrD6mxP9hFun2RFtpSTZVQadMc5",
      "pubsub": null,
      "tpuQuic": "23.109.62.84:8002",
      "tpuVote": "23.109.62.84:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "23.109.62.84:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.109.62.84:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.125:8002",
      "gossip": "208.115.227.125:8001",
      "pubkey": "A53jHkjver5nfprJEWKm3iKphBBpKiRJR41X5KffK2pt",
      "pubsub": null,
      "tpuQuic": "208.115.227.125:8003",
      "tpuVote": "208.115.227.125:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.125:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.125:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.84.228.253:8001",
      "gossip": "38.84.228.253:8000",
      "pubkey": "AHWnKboDZ4FuTT9WmigJKHjAzwAi7oft9o8KDCwtZTQp",
      "pubsub": null,
      "tpuQuic": "38.84.228.253:8002",
      "tpuVote": "38.84.228.253:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "38.84.228.253:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.84.228.253:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.156:8001",
      "gossip": "64.130.40.156:8000",
      "pubkey": "4kCWDkZ7gfiBDDwbq562Sh6wsJmiJwNigxT1u6v1acoi",
      "pubsub": null,
      "tpuQuic": "64.130.40.156:8002",
      "tpuVote": "64.130.40.156:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.156:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.156:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.242.200:8002",
      "gossip": "204.16.242.200:8001",
      "pubkey": "8e94nS8xQqcoUqb67aLF9vnonELeZSRcep2qU3FQ9nTG",
      "pubsub": null,
      "tpuQuic": "204.16.242.200:8003",
      "tpuVote": "204.16.242.200:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.242.200:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.242.200:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.242.177:8002",
      "gossip": "204.16.242.177:8001",
      "pubkey": "9u5wvVPXeaE9uCUJYTbtEUAmFs5SYhNPey39TPTKWvA9",
      "pubsub": null,
      "tpuQuic": "204.16.242.177:8010",
      "tpuVote": "204.16.242.177:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "204.16.242.177:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.242.177:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.37:8002",
      "gossip": "64.130.40.37:8001",
      "pubkey": "4269xoZ8TVak6iSNbW6t8q2cDeBP9D3TiXRSYrapz1Vs",
      "pubsub": null,
      "tpuQuic": "64.130.40.37:8003",
      "tpuVote": "64.130.40.37:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.40.37:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.37:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.245.220.118:8002",
      "gossip": "216.245.220.118:8001",
      "pubkey": "67MrBoNARM1eaFKYAUds4eSxMBfUGVwNEXjTQFo5g6kZ",
      "pubsub": null,
      "tpuQuic": "216.245.220.118:8003",
      "tpuVote": "216.245.220.118:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "216.245.220.118:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.245.220.118:8004"
    },
    {
      "rpc": "213.239.141.36:8899",
      "tpu": null,
      "tvu": "213.239.141.36:9000",
      "gossip": "213.239.141.36:8001",
      "pubkey": "sfndU5ENDymWRdBksXjZhaRpAMJmBFedjvuei4eNEo7",
      "pubsub": "213.239.141.36:8900",
      "tpuQuic": "213.239.141.36:9001",
      "tpuVote": "213.239.141.36:9003",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "213.239.141.36:9008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "213.239.141.36:9002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.211:8003",
      "gossip": "208.91.110.211:8001",
      "pubkey": "8ys6K2MVDApX53cE1DjSkbbmi12sz1v8e5J7wgiHwjFM",
      "pubsub": null,
      "tpuQuic": "208.91.110.211:9007",
      "tpuVote": "208.91.110.211:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "208.91.110.211:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.211:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.199:8002",
      "gossip": "202.8.11.199:8001",
      "pubkey": "3VTqEraTGdV5RvP4ku8yqivwLCnRZJ3L88iV9w2qcDKD",
      "pubsub": null,
      "tpuQuic": "202.8.11.199:8003",
      "tpuVote": "202.8.11.199:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.199:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.199:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.28.21:8002",
      "gossip": "64.31.28.21:8001",
      "pubkey": "FiegZDBQrgYuEFjGYTk1PYzpFBgdMwEtfHdt76qVkuSC",
      "pubsub": null,
      "tpuQuic": "64.31.28.21:8003",
      "tpuVote": "64.31.28.21:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.31.28.21:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.28.21:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.118.114:8003",
      "gossip": "185.191.118.114:8001",
      "pubkey": "9qiRRDQrmYhZ2reuSMSaBPKTP6rRbaWBaJK9HSSB36Cr",
      "pubsub": null,
      "tpuQuic": "185.191.118.114:9007",
      "tpuVote": "185.191.118.114:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "185.191.118.114:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.118.114:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.236:8002",
      "gossip": "64.130.59.236:8001",
      "pubkey": "5VEY7WCfweP4CJ5EBhkbfrx3iCf76Qiq2pumnrC9FoMt",
      "pubsub": null,
      "tpuQuic": "64.130.59.236:8003",
      "tpuVote": "64.130.59.236:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.236:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.236:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.47.146:8001",
      "gossip": "64.130.47.146:8000",
      "pubkey": "2ExaGtYiYGx1BmnGLvCXxBi1VnKwPYnzoRTfowVHrNag",
      "pubsub": null,
      "tpuQuic": "64.130.47.146:8002",
      "tpuVote": "64.130.47.146:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.47.146:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.47.146:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.247.248:8002",
      "gossip": "204.16.247.248:8001",
      "pubkey": "27vCQnPHp4ZSuuTTo8JDMsaknYxKJE6CnLCoirCFs32z",
      "pubsub": null,
      "tpuQuic": "204.16.247.248:8003",
      "tpuVote": "204.16.247.248:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.247.248:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.247.248:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.85:8001",
      "gossip": "64.130.37.85:8000",
      "pubkey": "BERXxWgsdUzoupniwaMrMwAttgEtGfU9ee6FwWt7XLYx",
      "pubsub": null,
      "tpuQuic": "64.130.37.85:8002",
      "tpuVote": "64.130.37.85:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.37.85:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.85:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.116.181:8000",
      "gossip": "185.191.116.181:8001",
      "pubkey": "DRZJebLAbHPmZ1PgPQ59JxiUMD5P3pX3YtykA74AJa1Q",
      "pubsub": null,
      "tpuQuic": "185.191.116.181:8002",
      "tpuVote": "185.191.116.181:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "185.191.116.181:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.116.181:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.14.178:8002",
      "gossip": "64.31.14.178:8001",
      "pubkey": "9aUPm9MUFNf2YSxMdj6majxybWJ8vsRsVrYphxs65VzH",
      "pubsub": null,
      "tpuQuic": "64.31.14.178:8003",
      "tpuVote": "64.31.14.178:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.14.178:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.14.178:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.78:8002",
      "gossip": "64.130.43.78:8001",
      "pubkey": "6Z4V66ESHx39KuoNhreCJztm7E5jUTmkdWFHbcYwYMLJ",
      "pubsub": null,
      "tpuQuic": "64.130.43.78:8003",
      "tpuVote": "64.130.43.78:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.78:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.78:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.32.162.88:11001",
      "gossip": "185.32.162.88:11000",
      "pubkey": "5xPVZofUn6tax89KdHEUs5sGrcJ1ykUGKdyn5VANRgDT",
      "pubsub": null,
      "tpuQuic": "185.32.162.88:11002",
      "tpuVote": "185.32.162.88:11004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.32.162.88:11009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.32.162.88:11003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.198.203:8001",
      "gossip": "88.216.198.203:8000",
      "pubkey": "exoTZp1DbH9hCytRuY6vwt8jYcyHxutvs7zHdPNU4eU",
      "pubsub": null,
      "tpuQuic": "88.216.198.203:8002",
      "tpuVote": "88.216.198.203:8004",
      "version": "4.0.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "88.216.198.203:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.198.203:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.74:8002",
      "gossip": "64.130.43.74:8001",
      "pubkey": "FDuQpQeUk41mswHsj3MU6QbcugZR1jyM1UUBzvN1XTmn",
      "pubsub": null,
      "tpuQuic": "64.130.43.74:8003",
      "tpuVote": "64.130.43.74:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.74:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.74:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "139.84.238.122:8002",
      "gossip": "139.84.238.122:8001",
      "pubkey": "EmAd62oVhcfaL48UvouQ6Y5j8AVdgLYrJ2RBYX9nmEdf",
      "pubsub": null,
      "tpuQuic": "139.84.238.122:8003",
      "tpuVote": "139.84.238.122:8005",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "139.84.238.122:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "139.84.238.122:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.42:8002",
      "gossip": "64.130.43.42:8001",
      "pubkey": "55GF82C799or3ravBgFywxyPECJxo3y5tcit3MSaccrC",
      "pubsub": null,
      "tpuQuic": "64.130.43.42:8003",
      "tpuVote": "64.130.43.42:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.42:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.42:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.17:8002",
      "gossip": "64.31.54.17:8001",
      "pubkey": "B3xyZjUr5D8vtRK8jzf1kZEu6cqdwye113h2fuzhJEkZ",
      "pubsub": null,
      "tpuQuic": "64.31.54.17:8003",
      "tpuVote": "64.31.54.17:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.17:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.17:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "151.245.214.27:8001",
      "gossip": "151.245.214.27:8000",
      "pubkey": "FqkWmm1DTDuSsVcf8kjLFEynP4UALEj9n24CWKiHe7Jg",
      "pubsub": null,
      "tpuQuic": "151.245.214.27:8002",
      "tpuVote": "151.245.214.27:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "151.245.214.27:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "151.245.214.27:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "194.48.217.39:8001",
      "gossip": "194.48.217.39:8000",
      "pubkey": "65Y3GneA4m55NGyAZHC81YxJpHSc4NMzjep3XuuijcJu",
      "pubsub": null,
      "tpuQuic": "194.48.217.39:8002",
      "tpuVote": "194.48.217.39:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "194.48.217.39:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "194.48.217.39:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.118:9002",
      "gossip": "64.130.44.118:9001",
      "pubkey": "65kUEdm4CvMdnpcqAhowWGw3U52vburD3HXeXfcQ228f",
      "pubsub": null,
      "tpuQuic": "64.130.44.118:9003",
      "tpuVote": "64.130.44.118:9005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.44.118:9010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.118:9004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.17:8002",
      "gossip": "64.130.37.17:8001",
      "pubkey": "DuCafK6YhbuVXvo1cwb79wXg5uh27LDizozNxHYXwzg3",
      "pubsub": null,
      "tpuQuic": "64.130.37.17:8003",
      "tpuVote": "64.130.37.17:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.17:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.17:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.143.4:8002",
      "gossip": "74.118.143.4:8001",
      "pubkey": "4z5mVF7puvrk3uderVJMBBcbhypSKs1tHpuWpWHcKMkK",
      "pubsub": null,
      "tpuQuic": "74.118.143.4:8003",
      "tpuVote": "74.118.143.4:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.143.4:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.143.4:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.78:8002",
      "gossip": "64.130.58.78:8001",
      "pubkey": "EpTG6jD2bDSkgqJvyKBZG3dBRbGmzfaxUqTge4o6RJHC",
      "pubsub": null,
      "tpuQuic": "64.130.58.78:8003",
      "tpuVote": "64.130.58.78:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.58.78:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.78:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.162.77.254:8002",
      "gossip": "69.162.77.254:8001",
      "pubkey": "E2tFrwdzCeundvXAXLCuPAYeMNEn4JBWtKCBbCjAcxof",
      "pubsub": null,
      "tpuQuic": "69.162.77.254:8003",
      "tpuVote": "69.162.77.254:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "69.162.77.254:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.162.77.254:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.128.189.215:8021",
      "gossip": "57.128.189.215:8001",
      "pubkey": "GwGTi1865szuyKtbYvUwkn3eCExVqDe5MtzydrZEfDtm",
      "pubsub": null,
      "tpuQuic": "57.128.189.215:8022",
      "tpuVote": "57.128.189.215:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "57.128.189.215:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.128.189.215:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.143.25:8002",
      "gossip": "74.118.143.25:8001",
      "pubkey": "HaP2yN9zWVHRGx7yW1NVDF1fZmbGmZPNjsREm39PJqrU",
      "pubsub": null,
      "tpuQuic": "74.118.143.25:8003",
      "tpuVote": "74.118.143.25:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.143.25:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.143.25:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.32.10:8002",
      "gossip": "64.31.32.10:8001",
      "pubkey": "86CmnXwQsF73jJ8fd5L2GwJZi2wEpygJGopBfhhKWGEz",
      "pubsub": null,
      "tpuQuic": "64.31.32.10:8003",
      "tpuVote": "64.31.32.10:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.32.10:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.32.10:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.239.116.21:8003",
      "gossip": "64.239.116.21:8001",
      "pubkey": "GSdPUfDzQQT4z2EsewojtYMXvufDVxpMh5A1noDegkbB",
      "pubsub": null,
      "tpuQuic": "64.239.116.21:9007",
      "tpuVote": "64.239.116.21:9001",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 1429815730,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.239.116.21:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.52.194:8002",
      "gossip": "64.31.52.194:8001",
      "pubkey": "Aon3JiN5cHQ4P3qUENUTX4qbmbp7uU6K5xowhRTGsGaB",
      "pubsub": null,
      "tpuQuic": "64.31.52.194:8003",
      "tpuVote": "64.31.52.194:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.52.194:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.52.194:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.20:8002",
      "gossip": "64.130.33.20:8001",
      "pubkey": "3jScpFGNPEXcJRasJhiBMcQgaX3LVyUNvT6XrPnDiKQ1",
      "pubsub": null,
      "tpuQuic": "64.130.33.20:8003",
      "tpuVote": "64.130.33.20:8005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.33.20:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.20:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.132.200:8000",
      "gossip": "45.139.132.200:8001",
      "pubkey": "AXssCqhokDpBezkCAW666nPPYmTGj92J9ECfBpzZHQTe",
      "pubsub": null,
      "tpuQuic": "45.139.132.200:8002",
      "tpuVote": "45.139.132.200:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "45.139.132.200:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.139.132.200:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "217.170.202.70:8001",
      "gossip": "217.170.202.70:8000",
      "pubkey": "H1d3vK8NxcKYa29bwKkmY8EKzwq2S25sobYkuuMnZdy7",
      "pubsub": null,
      "tpuQuic": "217.170.202.70:8002",
      "tpuVote": "217.170.202.70:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "217.170.202.70:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "217.170.202.70:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.46:8001",
      "gossip": "64.130.41.46:8000",
      "pubkey": "6LnYdkv8G7Xgz77CVJxrJLHb2PmaeECRP8HfQQgDJaGZ",
      "pubsub": null,
      "tpuQuic": "64.130.41.46:8002",
      "tpuVote": "64.130.41.46:8004",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.46:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.46:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.44.207.159:8001",
      "gossip": "185.44.207.159:8000",
      "pubkey": "AE6PUyPds1SBAX8by81ZxoM7ZYAkuJbZxvpYf2gALjfS",
      "pubsub": null,
      "tpuQuic": "185.44.207.159:8002",
      "tpuVote": "185.44.207.159:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.44.207.159:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.44.207.159:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.132.166:8001",
      "gossip": "45.139.132.166:8000",
      "pubkey": "CKWWob2cNbdpEEVoNd4wxAz72onLwABMux7i44Em5ZKM",
      "pubsub": null,
      "tpuQuic": "45.139.132.166:8002",
      "tpuVote": "45.139.132.166:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "45.139.132.166:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.139.132.166:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.147:8001",
      "gossip": "64.130.41.147:8000",
      "pubkey": "4fVgHz8wGgjd4wKKJrSXrQF1w2rEKvy2Fvd36PLYsf3e",
      "pubsub": null,
      "tpuQuic": "64.130.41.147:8002",
      "tpuVote": "64.130.41.147:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.41.147:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.147:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.87:8002",
      "gossip": "67.213.121.87:8001",
      "pubkey": "SLA2Arw223xGDr3X6kbLcWDfdbTExii2chP9GF5ru6W",
      "pubsub": null,
      "tpuQuic": "67.213.121.87:8003",
      "tpuVote": "67.213.121.87:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.121.87:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.87:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.251.1:8002",
      "gossip": "208.115.251.1:8001",
      "pubkey": "7SWYestJ47atLfQ9RDcPPuk4wfb8gcGcEcSyR129YPvX",
      "pubsub": null,
      "tpuQuic": "208.115.251.1:8003",
      "tpuVote": "208.115.251.1:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.251.1:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.251.1:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "188.241.53.16:8001",
      "gossip": "45.250.25.158:8000",
      "pubkey": "EqepMXfzPtpewxa779aFjoNmXGzztcdWn3ZTyfaHVymB",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "188.34.138.212:8001",
      "gossip": "188.34.138.212:8000",
      "pubkey": "8dTWHJgtM7Nwm35coyDmAVSUGhNiN4S79cMCBaa6VFar",
      "pubsub": null,
      "tpuQuic": "188.34.138.212:8002",
      "tpuVote": "188.34.138.212:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "188.34.138.212:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "188.34.138.212:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.208.234.135:8001",
      "gossip": "67.208.234.135:8000",
      "pubkey": "DsVoQfrQCxEby4siVMUQzSAG4iCHQiHFf2dokYouFxtw",
      "pubsub": null,
      "tpuQuic": "67.208.234.135:8002",
      "tpuVote": "67.208.234.135:8004",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "67.208.234.135:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.208.234.135:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.96.37:8001",
      "gossip": "109.94.96.37:8000",
      "pubkey": "6m1mPPNCLoPJjNsCvavJxr1y6u5HoEw7uNWjRqmWNwF5",
      "pubsub": null,
      "tpuQuic": "109.94.96.37:8002",
      "tpuVote": "109.94.96.37:8004",
      "version": "4.0.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "109.94.96.37:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.96.37:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.80.123:8002",
      "gossip": "64.34.80.123:8001",
      "pubkey": "bJaiPXEyquUBdLkTZSkegJmy6mFPBFWp1a5fv4396X8",
      "pubsub": null,
      "tpuQuic": "64.34.80.123:8003",
      "tpuVote": "64.34.80.123:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.34.80.123:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.80.123:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.248:38001",
      "gossip": "64.130.40.248:38000",
      "pubkey": "8B4GWaJYm8M2iM3qjBWiZgJhQTcW8d34SFysv8AHvBSy",
      "pubsub": null,
      "tpuQuic": "64.130.40.248:38002",
      "tpuVote": "64.130.40.248:38004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.248:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.248:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.119.179:8001",
      "gossip": "67.213.119.179:8000",
      "pubkey": "Xand2NubRVP7v4TKpeVyYh8ecg576xhfh4WgGWjinju",
      "pubsub": null,
      "tpuQuic": "67.213.119.179:8002",
      "tpuVote": "67.213.119.179:8004",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "67.213.119.179:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.119.179:8003"
    },
    {
      "rpc": "45.250.254.231:8899",
      "tpu": null,
      "tvu": "45.250.254.231:8001",
      "gossip": "45.250.254.231:8000",
      "pubkey": "Spiky3mMSLHGhffuEhYR7ptMNZ8NddddwrTjki4VhWk",
      "pubsub": "45.250.254.231:8900",
      "tpuQuic": "45.250.254.231:8009",
      "tpuVote": "45.250.254.231:8005",
      "version": "3.1.10",
      "clientId": "JitoLabs",
      "featureSet": 1620780344,
      "serveRepair": "45.250.254.231:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.250.254.231:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.54.12:8002",
      "gossip": "67.209.54.12:8001",
      "pubkey": "8x32HzkthGU65G8QAbEDvYcw5TaPoHmTSiFjJm5xP7bP",
      "pubsub": null,
      "tpuQuic": "67.209.54.12:8003",
      "tpuVote": "67.209.54.12:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.209.54.12:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.54.12:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "82.22.51.10:8001",
      "gossip": "145.239.149.108:8000",
      "pubkey": "EHZJXk4iX4C7YBkxrLajcAGGPKQva7myyKspjF47btgW",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.54.11:8002",
      "gossip": "67.209.54.11:8001",
      "pubkey": "HjiL51CeQ1zWiMmNPLPu7VyBYxPUyLfNa4ywjJiRq7qo",
      "pubsub": null,
      "tpuQuic": "67.209.54.11:8003",
      "tpuVote": "67.209.54.11:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.209.54.11:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.54.11:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.172:8002",
      "gossip": "64.130.59.172:8001",
      "pubkey": "2HpcaLEt9MH6GrtiXApHLj8LjEsnTL3VUskdoij8AvHz",
      "pubsub": null,
      "tpuQuic": "64.130.59.172:8003",
      "tpuVote": "64.130.59.172:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.172:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.172:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.185.210.130:8003",
      "gossip": "208.185.210.130:8002",
      "pubkey": "DFHVESVwB7TkDeNYsRUFTMojyyAbh5WwcdvyMok3x7t2",
      "pubsub": null,
      "tpuQuic": "208.185.210.130:8004",
      "tpuVote": "208.185.210.130:8006",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.185.210.130:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.185.210.130:8005"
    },
    {
      "rpc": "94.158.242.124:58000",
      "tpu": null,
      "tvu": "94.158.242.124:50001",
      "gossip": "94.158.242.124:50000",
      "pubkey": "uFZR8DZys8JTr7GKzXbpTNV3AzFzUAWEcruyPu3Yqkx",
      "pubsub": "94.158.242.124:58001",
      "tpuQuic": "94.158.242.124:50002",
      "tpuVote": "94.158.242.124:50004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "94.158.242.124:50009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "94.158.242.124:50003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.140.83:8001",
      "gossip": "198.13.140.83:8000",
      "pubkey": "76QBiDWURGY4zc2zQzMrmUs1sRdFY6XoQ1ejZa8H9rXD",
      "pubsub": null,
      "tpuQuic": "198.13.140.83:8002",
      "tpuVote": "198.13.140.83:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.140.83:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.83:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.32.162.89:11001",
      "gossip": "185.32.162.89:11000",
      "pubkey": "3UfMeKHFaoZzN68TQJZXbLEARLZdhYmFcEvrMhtXTpnz",
      "pubsub": null,
      "tpuQuic": "185.32.162.89:11002",
      "tpuVote": "185.32.162.89:11004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.32.162.89:11009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.32.162.89:11003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.45:8002",
      "gossip": "64.130.42.45:8001",
      "pubkey": "FemYxfqut8n35b2FcSG7nzmNxsATJAPv3ZwWv1KPGFiA",
      "pubsub": null,
      "tpuQuic": "64.130.42.45:8003",
      "tpuVote": "64.130.42.45:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.42.45:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.45:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "157.90.4.116:8000",
      "gossip": "157.90.4.116:8001",
      "pubkey": "236Xs9cuCJMrDvMZp6UdC2Qa3aUy925qAnYCRDL28Pco",
      "pubsub": null,
      "tpuQuic": "157.90.4.116:8009",
      "tpuVote": "157.90.4.116:8005",
      "version": "3.0.13",
      "clientId": "JitoLabs",
      "featureSet": 3604001754,
      "serveRepair": "157.90.4.116:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "157.90.4.116:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.55:8001",
      "gossip": "64.130.33.55:8000",
      "pubkey": "FL4rTQMYA3DeqFNzJWp6jX7CVDaRvwJmLGDfodCpn8Cj",
      "pubsub": null,
      "tpuQuic": "64.130.33.55:8002",
      "tpuVote": "64.130.33.55:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.33.55:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.55:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.234.175:8002",
      "gossip": "208.115.234.175:8001",
      "pubkey": "Hc4E8VSGoYtcU34xuhuNqrJkNM1B4yiKoMHaTG29s59a",
      "pubsub": null,
      "tpuQuic": "208.115.234.175:8003",
      "tpuVote": "208.115.234.175:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.234.175:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.234.175:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.3:8001",
      "gossip": "185.191.117.3:8000",
      "pubkey": "BHkXdxvsQgPckJeEgSwWY5in4A3HL5CeTd56GHUndzB6",
      "pubsub": null,
      "tpuQuic": "185.191.117.3:8002",
      "tpuVote": "185.191.117.3:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.3:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.3:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "23.109.63.103:8000",
      "pubkey": "CPwDxA4EBQZfio3TTFLsk9Q524hFd6hhT3Ahv5k9u88C",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.162.93.127:8002",
      "gossip": "69.162.93.127:8001",
      "pubkey": "881YraTCzcQVyQ2AtuxiCdDPwqxt4nLsoXkNrPUddWCt",
      "pubsub": null,
      "tpuQuic": "69.162.93.127:8003",
      "tpuVote": "69.162.93.127:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "69.162.93.127:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.162.93.127:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.115.45:8000",
      "gossip": "67.213.115.45:8801",
      "pubkey": "4yvCyjbadC5SXj48V1jLuJGsi97r4j736FjB1QocMu2A",
      "pubsub": null,
      "tpuQuic": "67.213.115.45:8001",
      "tpuVote": "67.213.115.45:8003",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.213.115.45:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.115.45:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.87:8002",
      "gossip": "64.31.54.87:8001",
      "pubkey": "4pNsLJM72jeGiuniAGA3GMcSTsydEaocBsReCbPhrEjg",
      "pubsub": null,
      "tpuQuic": "64.31.54.87:8003",
      "tpuVote": "64.31.54.87:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.87:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.87:8004"
    },
    {
      "rpc": "43.167.162.102:8080",
      "tpu": null,
      "tvu": "43.167.162.102:8000",
      "gossip": "43.167.162.102:8020",
      "pubkey": "22SCdoP3CRtKeLiWfCaVJvv2bvuzDZoW7EomWuf2Lpb8",
      "pubsub": "43.167.162.102:8081",
      "tpuQuic": "43.167.162.102:8001",
      "tpuVote": "43.167.162.102:8003",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "43.167.162.102:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "43.167.162.102:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "207.188.6.139:8001",
      "gossip": "207.188.6.139:8000",
      "pubkey": "AzKogMRzdnaQo6NYMNx6uUkgUWdHUZZorxP1HUsJhbBw",
      "pubsub": null,
      "tpuQuic": "207.188.6.139:8002",
      "tpuVote": "207.188.6.139:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "207.188.6.139:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "207.188.6.139:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.133:8002",
      "gossip": "84.32.103.133:8001",
      "pubkey": "F4UxsAC7VmVi8MCH7t9S3oaP3bWnEZRfx1pF3RNHKXFc",
      "pubsub": null,
      "tpuQuic": "84.32.103.133:8003",
      "tpuVote": "84.32.103.133:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "84.32.103.133:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.133:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.68:8002",
      "gossip": "64.130.58.68:8001",
      "pubkey": "GP1odG3okJbrixbB8P2PdTX1o6e64pJcKeF6UR5gibka",
      "pubsub": null,
      "tpuQuic": "64.130.58.68:8003",
      "tpuVote": "64.130.58.68:8005",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.58.68:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.68:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.197.6:8002",
      "gossip": "88.216.197.6:8001",
      "pubkey": "7JBzud3iU59LPGXLMATjU4NgSW2RxfyiNnfamw6XHbC8",
      "pubsub": null,
      "tpuQuic": "88.216.197.6:8003",
      "tpuVote": "88.216.197.6:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "88.216.197.6:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.197.6:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.36.179:8001",
      "gossip": "64.130.36.179:8000",
      "pubkey": "JCpodwSTKGXhRLeEUqTZgR9n4rfKE8USJTejo66jsAZV",
      "pubsub": null,
      "tpuQuic": "64.130.36.179:8002",
      "tpuVote": "64.130.36.179:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.36.179:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.36.179:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.70:10001",
      "gossip": "64.130.51.70:10000",
      "pubkey": "4gAhcCh8hoKLoDZoPThk7dp3ScEqJ8RyhmdC5hePBf14",
      "pubsub": null,
      "tpuQuic": "64.130.51.70:10002",
      "tpuVote": "64.130.51.70:10004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.70:10009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.70:10003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.162.146:8001",
      "gossip": "63.254.162.146:8000",
      "pubkey": "4o4Ua3EXDRHKECVW8mLuVsgzJh9m2S5HejzenjSw8WYK",
      "pubsub": null,
      "tpuQuic": "63.254.162.146:8002",
      "tpuVote": "63.254.162.146:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "63.254.162.146:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.162.146:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.210:8002",
      "gossip": "64.130.49.210:8001",
      "pubkey": "RJCSgfQ2Sbrh1rxQdckHeqZ1T1tjvt5Gv3boFKWKQKm",
      "pubsub": null,
      "tpuQuic": "64.130.49.210:8003",
      "tpuVote": "64.130.49.210:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.49.210:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.210:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.50.164.218:8001",
      "gossip": "38.50.164.218:8000",
      "pubkey": "6dT3E3jLe2UYeGWXaGsV5bEj4FSzXtNEAU44FsKvDShb",
      "pubsub": null,
      "tpuQuic": "38.50.164.218:8002",
      "tpuVote": "38.50.164.218:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "38.50.164.218:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.50.164.218:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.224.222:8002",
      "gossip": "208.115.224.222:8001",
      "pubkey": "CDFUMPzM2vKw8kAVWaK5pmAmkJH77coBajv6PkfTq4uS",
      "pubsub": null,
      "tpuQuic": "208.115.224.222:8003",
      "tpuVote": "208.115.224.222:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.224.222:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.224.222:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.23:8002",
      "gossip": "64.130.50.23:8001",
      "pubkey": "B81PK8q3XE937kXFYiL8PLb3Lo1iYaStUJQiGhBXgm4e",
      "pubsub": null,
      "tpuQuic": "64.130.50.23:8003",
      "tpuVote": "64.130.50.23:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.23:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.23:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.112:8002",
      "gossip": "64.130.59.112:8001",
      "pubkey": "G196e1r4C5pEb4epf5nLjwNEmAcJy3YLDh4fyZtDCmgp",
      "pubsub": null,
      "tpuQuic": "64.130.59.112:8010",
      "tpuVote": "64.130.59.112:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "64.130.59.112:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.112:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.121:8002",
      "gossip": "198.13.130.121:8001",
      "pubkey": "Eh8Bhfkvc9NUjvUr89jvacPjNStymayMkVtVwQTELysU",
      "pubsub": null,
      "tpuQuic": "198.13.130.121:8003",
      "tpuVote": "198.13.130.121:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.121:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.121:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.145:8003",
      "gossip": "64.130.63.145:8001",
      "pubkey": "2EAjsgWtws7qcCryHSYQUrNj4rTt6MLRpjupEi6r47ik",
      "pubsub": null,
      "tpuQuic": "64.130.63.145:8037",
      "tpuVote": "64.130.63.145:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.145:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.145:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.46.155:8001",
      "gossip": "64.130.46.155:8000",
      "pubkey": "Ggewj8tQFPFNHAbBhRVAsTSC4MpmBu2kM3e1iQrYX7tj",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "52.68.167.111:8000",
      "gossip": "52.68.167.111:8001",
      "pubkey": "4vSDpjiinD8n2prEggmUjmeTPjVtDcg4WtzF627eRm2i",
      "pubsub": null,
      "tpuQuic": "52.68.167.111:8002",
      "tpuVote": "52.68.167.111:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "52.68.167.111:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "52.68.167.111:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.9:8002",
      "gossip": "64.130.54.9:8001",
      "pubkey": "AYrDA9NfbEjVYcyGR7BK2TXnxeZPV5pYzknDBzGmyWpq",
      "pubsub": null,
      "tpuQuic": "64.130.54.9:8003",
      "tpuVote": "64.130.54.9:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.9:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.9:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "193.247.77.31:8000",
      "gossip": "193.247.77.31:8001",
      "pubkey": "GUsuawwmQUaHCgJxLs8L79a5KXkeWaZ26rynqDCWiWA2",
      "pubsub": null,
      "tpuQuic": "193.247.77.31:8002",
      "tpuVote": "193.247.77.31:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "193.247.77.31:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "193.247.77.31:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.218.73:8001",
      "gossip": "141.98.218.73:8000",
      "pubkey": "2hbArsbHb1aQzysuBmC9gMoALpFgyCy6QWuT8WX4EYef",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.140.88:8002",
      "gossip": "74.118.140.88:8001",
      "pubkey": "DfCgaZfz1yRCzhgeoHdYxHa9fQBrC2b2KiaZCMcW7fpw",
      "pubsub": null,
      "tpuQuic": "74.118.140.88:8003",
      "tpuVote": "74.118.140.88:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.140.88:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.140.88:8004"
    },
    {
      "rpc": "198.13.130.224:38899",
      "tpu": null,
      "tvu": "198.13.130.224:8001",
      "gossip": "198.13.130.224:8000",
      "pubkey": "GZ6yWR1FV3axdvdYRCbcbXnmZhrBGj729LySx2KvxJuL",
      "pubsub": "198.13.130.224:38900",
      "tpuQuic": "198.13.130.224:8002",
      "tpuVote": "198.13.130.224:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.224:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.224:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "79.127.239.81:8002",
      "gossip": "79.127.239.81:8001",
      "pubkey": "3qyadL3UUgrzev5b7XX3x8HSoeN3faZecYJ8UxnUFRaT",
      "pubsub": null,
      "tpuQuic": "79.127.239.81:8003",
      "tpuVote": "79.127.239.81:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "79.127.239.81:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "79.127.239.81:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.54.10:8001",
      "gossip": "57.129.54.10:8000",
      "pubkey": "FiPM9nA5Rst8g2PqnbDHMDhwFqzRQ8wxGptJD7w1Y52u",
      "pubsub": null,
      "tpuQuic": "57.129.54.10:8002",
      "tpuVote": "57.129.54.10:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "57.129.54.10:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.54.10:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.58:8002",
      "gossip": "185.191.117.58:8001",
      "pubkey": "31Cof4xsA9wJxf71XsuVWRbuYFTvpJRjUHWr8LMJCJiB",
      "pubsub": null,
      "tpuQuic": "185.191.117.58:8003",
      "tpuVote": "185.191.117.58:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "185.191.117.58:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.58:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.234.178:8002",
      "gossip": "208.115.234.178:8001",
      "pubkey": "Br3GrgCSKSLEWrfNwjktMkiFmvgchCFvfGWKbJQ6sqNP",
      "pubsub": null,
      "tpuQuic": "208.115.234.178:8003",
      "tpuVote": "208.115.234.178:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.234.178:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.234.178:8004"
    },
    {
      "rpc": "162.19.112.132:8899",
      "tpu": null,
      "tvu": "162.19.112.132:8001",
      "gossip": "162.19.112.132:8000",
      "pubkey": "6YWjdH5YkXVkkd4HMekcW6Ah4bNNAAdBXmNRNwLeSZKt",
      "pubsub": "162.19.112.132:8900",
      "tpuQuic": "162.19.112.132:8002",
      "tpuVote": "162.19.112.132:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "162.19.112.132:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.112.132:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.204.101.16:8001",
      "gossip": "15.204.101.16:8000",
      "pubkey": "7YTLs7Dydm3JEGh9xfVntQNnhxrZBJbDwD4oBRTGNXgL",
      "pubsub": null,
      "tpuQuic": "15.204.101.16:8002",
      "tpuVote": "15.204.101.16:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "15.204.101.16:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.101.16:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.182:8002",
      "gossip": "141.98.219.182:8001",
      "pubkey": "7UW99ELsLpQxx7KzNzokdKCkBnvrBqJ4sF1TrGNpohGF",
      "pubsub": null,
      "tpuQuic": "141.98.219.182:8003",
      "tpuVote": "141.98.219.182:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.219.182:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.182:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.42:8001",
      "gossip": "185.191.117.42:8000",
      "pubkey": "FqnjdgcJHFhhuF4jwTPNFKwVoFoXniMsvATC2bCCfhEi",
      "pubsub": null,
      "tpuQuic": "185.191.117.42:8002",
      "tpuVote": "185.191.117.42:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.42:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.42:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.13:8002",
      "gossip": "64.130.32.13:8001",
      "pubkey": "3Rzec6DWb9noKHzJGv7igTUvpeg9nF57VQ6xgqZ1pe26",
      "pubsub": null,
      "tpuQuic": "64.130.32.13:8003",
      "tpuVote": "64.130.32.13:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.13:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.13:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.120:8001",
      "gossip": "64.130.40.120:8000",
      "pubkey": "ANXyturiy5XvfBj517XQcH1DwdGYj3tjGqwv6VNzXvWJ",
      "pubsub": null,
      "tpuQuic": "64.130.40.120:8002",
      "tpuVote": "64.130.40.120:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.120:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.120:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.238.76.250:8000",
      "gossip": "47.238.76.250:8001",
      "pubkey": "BRJmXdxv3DdFrFZyAaUTCmaVKik3C7icTjKXfbnzV9dp",
      "pubsub": null,
      "tpuQuic": "47.238.76.250:8002",
      "tpuVote": "47.238.76.250:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "47.238.76.250:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "47.238.76.250:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.243.67:8002",
      "gossip": "204.16.243.67:8001",
      "pubkey": "H4aWz62BPbQWEonn35AdAgdU9a2HCdB6TPZnGQ7QvxRA",
      "pubsub": null,
      "tpuQuic": "204.16.243.67:8003",
      "tpuVote": "204.16.243.67:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.243.67:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.243.67:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.36.175:8002",
      "gossip": "64.130.36.175:8001",
      "pubkey": "mcb4nELJYH52vcefkFLitJvcoZd63Nc3RDvJQmt9jJS",
      "pubsub": null,
      "tpuQuic": "64.130.36.175:8003",
      "tpuVote": "64.130.36.175:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.36.175:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.36.175:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.57:8002",
      "gossip": "141.98.219.57:8001",
      "pubkey": "EAVLKBnEChUUGfQddKUWug5oVzBKnsz58ApgdLtiCEnt",
      "pubsub": null,
      "tpuQuic": "141.98.219.57:8003",
      "tpuVote": "141.98.219.57:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.219.57:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.57:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.146.251.235:8001",
      "gossip": "47.146.251.235:8000",
      "pubkey": "Guj9ptW3zsDQnqWYm4R6HGSsRVXArFooghBuLce72HfN",
      "pubsub": null,
      "tpuQuic": "47.146.251.235:8002",
      "tpuVote": "47.146.251.235:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "47.146.251.235:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "47.146.251.235:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.252.121.134:8000",
      "gossip": "23.252.121.134:8001",
      "pubkey": "6r66cUYGoF3zHkDfByQyumR7XZk9bvmP9dZC2i2KE4ge",
      "pubsub": null,
      "tpuQuic": "23.252.121.134:8009",
      "tpuVote": "23.252.121.134:8005",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "23.252.121.134:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.252.121.134:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.67.151.103:8001",
      "gossip": "69.67.151.103:8000",
      "pubkey": "c2cE3BtwwXNfbHrQbu57pqoqLhjLAxtszNHUn3UvpK4",
      "pubsub": null,
      "tpuQuic": "69.67.151.103:8002",
      "tpuVote": "69.67.151.103:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "69.67.151.103:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.67.151.103:8003"
    },
    {
      "rpc": "70.40.187.21:8899",
      "tpu": null,
      "tvu": "70.40.187.21:8030",
      "gossip": "70.40.187.21:8001",
      "pubkey": "4MhqmBmwWSBhYzwmPrCsymdWsCYr5FbsfcusFTodWqCE",
      "pubsub": "70.40.187.21:8900",
      "tpuQuic": "70.40.187.21:9007",
      "tpuVote": "70.40.187.21:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "70.40.187.21:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.187.21:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.137.177:8001",
      "gossip": "198.13.137.177:8000",
      "pubkey": "U6Yigc574tGvnaFmzjX55W1h4cCjfYSamb41ge59G7Q",
      "pubsub": null,
      "tpuQuic": "198.13.137.177:8002",
      "tpuVote": "198.13.137.177:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "198.13.137.177:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.137.177:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.123:11000",
      "gossip": "67.213.121.123:8001",
      "pubkey": "ENaBsQr4H9ALiJPQScoX8DHhXod6MWwByUS6tDVGR8tV",
      "pubsub": null,
      "tpuQuic": "67.213.121.123:8003",
      "tpuVote": "67.213.121.123:11003",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.213.121.123:11008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.123:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.163:8001",
      "gossip": "64.130.61.163:8000",
      "pubkey": "Hjb78UCnzHMTC63M9bEVKz7v2TtBmW18qepf6K64zf93",
      "pubsub": null,
      "tpuQuic": "64.130.61.163:8002",
      "tpuVote": "64.130.61.163:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.61.163:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.163:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.94.154.193:8802",
      "gossip": "141.94.154.193:8801",
      "pubkey": "4fpUfTQHLnbjLhrAofdTr6SbKzsdP2iBRd6ciQScHiBm",
      "pubsub": null,
      "tpuQuic": "141.94.154.193:8803",
      "tpuVote": "141.94.154.193:8805",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.94.154.193:8810",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.94.154.193:8804"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "129.97.7.70:8001",
      "gossip": "129.97.7.70:8000",
      "pubkey": "CvkcrWVsrnsdVsQMN3zmyCKWo4dnUFcfQiC4d9ajXZgG",
      "pubsub": null,
      "tpuQuic": "129.97.7.70:8002",
      "tpuVote": "129.97.7.70:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "129.97.7.70:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "129.97.7.70:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.202:8002",
      "gossip": "198.13.138.183:9010",
      "pubkey": "4Wp7xZ3tM6GKRwbfg4PDXwsLWYpf8Rjd5pYhtmix8Y5V",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 1718981463,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "94.100.18.202:8001",
      "gossip": "94.100.18.202:8000",
      "pubkey": "G3RKH73BdjqCwUCHFgnQLdwE1z73JfybnmBDjBwcSLV",
      "pubsub": null,
      "tpuQuic": "94.100.18.202:8002",
      "tpuVote": "94.100.18.202:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "94.100.18.202:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "94.100.18.202:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.48.42:8002",
      "gossip": "64.31.48.42:8001",
      "pubkey": "22i5wwuYXEwz9hmUvbcNdc8kBukrJjotna4E4p9Z9KVG",
      "pubsub": null,
      "tpuQuic": "64.31.48.42:8003",
      "tpuVote": "64.31.48.42:8005",
      "version": "4.1.0-beta.3",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.31.48.42:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.48.42:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.46.85.23:8002",
      "gossip": "72.46.85.23:8001",
      "pubkey": "G2RU2DCBEPBb7pjavydtjhrv8T4V2sH8NYtCqUxSJA4",
      "pubsub": null,
      "tpuQuic": "72.46.85.23:8003",
      "tpuVote": "72.46.85.23:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "72.46.85.23:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.46.85.23:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.215:8002",
      "gossip": "64.130.32.215:8001",
      "pubkey": "Bed2fv1SzJUnz8X6H6XCCAwRyLttXuLHpmgoViPdg4hz",
      "pubsub": null,
      "tpuQuic": "64.130.32.215:8003",
      "tpuVote": "64.130.32.215:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.215:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.215:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "144.178.241.17:8001",
      "gossip": "144.178.241.17:8000",
      "pubkey": "29pWJ83s5pNnXCBkwGooh2GEonzmbLbtQHJT7G2JrQSz",
      "pubsub": null,
      "tpuQuic": "144.178.241.17:8002",
      "tpuVote": "144.178.241.17:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "144.178.241.17:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "144.178.241.17:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.219.171.217:8001",
      "gossip": "103.219.171.217:8000",
      "pubkey": "FTx2uJDRt4EFCnNzr1axrEPQRccPLKeUVvtGXMtUhtaF",
      "pubsub": null,
      "tpuQuic": "103.219.171.217:8002",
      "tpuVote": "103.219.171.217:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "103.219.171.217:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.219.171.217:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "152.232.8.234:8001",
      "gossip": "152.232.8.234:8000",
      "pubkey": "9V7NmCJN9VAiLs8ZEQ4kbNqaZiWzGwvSCTCjdyMuZjvF",
      "pubsub": null,
      "tpuQuic": "152.232.8.234:8002",
      "tpuVote": "152.232.8.234:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "152.232.8.234:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "152.232.8.234:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.61:8002",
      "gossip": "64.130.42.61:8001",
      "pubkey": "FZwQnpwWb4DY9MzTUGQVyUDtGiPoYdUsq9jkSKsYGy6x",
      "pubsub": null,
      "tpuQuic": "64.130.42.61:8003",
      "tpuVote": "64.130.42.61:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.61:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.61:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.23.150:8000",
      "gossip": "64.31.23.150:8801",
      "pubkey": "BKSmipS3HukCFk6rLW9FKSY7na6zZbaNAVkkgjyrXZLq",
      "pubsub": null,
      "tpuQuic": "64.31.23.150:8001",
      "tpuVote": "64.31.23.150:8003",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "64.31.23.150:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.23.150:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.9.83:8002",
      "gossip": "202.8.9.83:8001",
      "pubkey": "7suGBdP4y2NinGh1pjj6Nt9QZFrJL1EMJgn1DNLcBPmo",
      "pubsub": null,
      "tpuQuic": "202.8.9.83:8003",
      "tpuVote": "202.8.9.83:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.9.83:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.9.83:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.158:8002",
      "gossip": "208.91.110.158:8001",
      "pubkey": "6QzMaJxCdgeUB5C7wjXemDj48iSSPJPNiPYNnMHN2hcn",
      "pubsub": null,
      "tpuQuic": "208.91.110.158:8003",
      "tpuVote": "208.91.110.158:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.158:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.158:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "158.41.67.131:8001",
      "gossip": "158.41.67.131:8000",
      "pubkey": "7MLcM12ywnhWT5pasrXAW4V6BsDWdZ6iYfGera7hAT8D",
      "pubsub": null,
      "tpuQuic": "158.41.67.131:8002",
      "tpuVote": "158.41.67.131:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "158.41.67.131:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "158.41.67.131:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.145:8003",
      "gossip": "64.130.42.145:8001",
      "pubkey": "DhNicpWrjWjWUbtDPhFy6AgdzFxiAQAo327jHsovjDV4",
      "pubsub": null,
      "tpuQuic": "64.130.42.145:9007",
      "tpuVote": "64.130.42.145:9001",
      "version": "0.913.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.145:8028",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.145:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.2.39.164:8002",
      "gossip": "69.2.39.164:8001",
      "pubkey": "oLAFKB6fkuiXPsd5wFUt3TfoF42iPBzga33Q1NBKWWn",
      "pubsub": null,
      "tpuQuic": "69.2.39.164:8003",
      "tpuVote": "69.2.39.164:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "69.2.39.164:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.2.39.164:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.138.169:8000",
      "gossip": "198.13.138.169:8001",
      "pubkey": "CET8nWFeZU7L9pPGjfUB3gGCk9SA13Jd4TTqDxTFry8C",
      "pubsub": null,
      "tpuQuic": "198.13.138.169:8002",
      "tpuVote": "198.13.138.169:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.138.169:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.138.169:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.171.210.54:8000",
      "gossip": "70.171.210.54:8001",
      "pubkey": "9A4CcdJqvhzs6AvZZ3ZZhGPkKUsnM1qjFo9Agxz17pdW",
      "pubsub": null,
      "tpuQuic": "70.171.210.54:8002",
      "tpuVote": "70.171.210.54:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "70.171.210.54:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.171.210.54:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.188:8002",
      "gossip": "64.130.51.188:8001",
      "pubkey": "Gh62nF8Nk2CWj6XdEWjfBBXAJxthJks3EPCeRgam7Ghz",
      "pubsub": null,
      "tpuQuic": "64.130.51.188:8003",
      "tpuVote": "64.130.51.188:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.51.188:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.188:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.19.94.48:8001",
      "gossip": "162.19.94.48:8000",
      "pubkey": "HAaHMHxY8RHcMi8RJqA7oJyCecnnTjcxNK1fJNtNMPLj",
      "pubsub": null,
      "tpuQuic": "162.19.94.48:8002",
      "tpuVote": "162.19.94.48:8004",
      "version": "4.0.0",
      "clientId": "Rakurai",
      "featureSet": 3718597879,
      "serveRepair": "162.19.94.48:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.94.48:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "157.90.88.85:8001",
      "gossip": "157.90.88.85:8000",
      "pubkey": "7Fp5yKape8CmyrA2K62hUeXG2f7rRKEXJTkDQAML3af9",
      "pubsub": null,
      "tpuQuic": "157.90.88.85:8002",
      "tpuVote": "157.90.88.85:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "157.90.88.85:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "157.90.88.85:8003"
    },
    {
      "rpc": "67.213.123.1:8899",
      "tpu": null,
      "tvu": "67.213.123.1:8001",
      "gossip": "67.213.123.1:8000",
      "pubkey": "2a4uUeEYtRU5YZpkB2Fh6qLL7uJ4S2L4C3VSAydtcAZ7",
      "pubsub": "67.213.123.1:8900",
      "tpuQuic": "67.213.123.1:8002",
      "tpuVote": "67.213.123.1:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.213.123.1:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.123.1:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.118.61:8002",
      "gossip": "67.213.118.61:8001",
      "pubkey": "4UaMLCGDSvPkJvhA9PHCaxadwsNPvxB1s6Kkcuqmcwdd",
      "pubsub": null,
      "tpuQuic": "67.213.118.61:8003",
      "tpuVote": "67.213.118.61:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "67.213.118.61:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.118.61:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "209.195.8.148:8001",
      "gossip": "209.195.8.148:8000",
      "pubkey": "9bupGu2BbLbPCb1ZUAswM3GBVfnKsYWBJjJixD5N5cYm",
      "pubsub": null,
      "tpuQuic": "209.195.8.148:8002",
      "tpuVote": "209.195.8.148:8004",
      "version": "4.0.0-rc.0",
      "clientId": "JitoLabs",
      "featureSet": 767961353,
      "serveRepair": "209.195.8.148:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "209.195.8.148:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.212.245:8002",
      "gossip": "208.115.212.245:8001",
      "pubkey": "DMfujAH4yzmwibQuViGfUzVvF8aSW9aKNLmy6o4C7yyQ",
      "pubsub": null,
      "tpuQuic": "208.115.212.245:8003",
      "tpuVote": "208.115.212.245:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.212.245:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.212.245:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.6:8001",
      "gossip": "64.130.37.6:8000",
      "pubkey": "HbyDcZYjYuJ5vv8WXAtsZpC36ceJbha7XjTaUCGag1dg",
      "pubsub": null,
      "tpuQuic": "64.130.37.6:8002",
      "tpuVote": "64.130.37.6:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.37.6:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.6:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.140.85:8002",
      "gossip": "198.13.140.85:8001",
      "pubkey": "9WBsYiebToEZ3h3RrDsLYoKLWywx54miUusazEApVm3s",
      "pubsub": null,
      "tpuQuic": "198.13.140.85:8003",
      "tpuVote": "198.13.140.85:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.140.85:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.85:8004"
    },
    {
      "rpc": "103.88.234.131:18899",
      "tpu": null,
      "tvu": "103.88.234.131:8001",
      "gossip": "103.88.234.131:8000",
      "pubkey": "A7XuJowcoARLVV8CHJCacJFAHJ6otGr9Cy7RCq2VTf6s",
      "pubsub": "103.88.234.131:18899",
      "tpuQuic": "103.88.234.131:8002",
      "tpuVote": "103.88.234.131:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.88.234.131:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.88.234.131:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "129.80.132.155:8002",
      "gossip": "129.80.132.155:8001",
      "pubkey": "49cAuJSFt43F6fgKc7aSNz6D1g8BWadWL2c6z7fPv9CQ",
      "pubsub": null,
      "tpuQuic": "129.80.132.155:8010",
      "tpuVote": "129.80.132.155:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "129.80.132.155:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "129.80.132.155:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.44.207.193:8001",
      "gossip": "185.44.207.193:8000",
      "pubkey": "3n88k3os7xspALxqCDB5gSYbL9pEmFt43E5z2mnFUY5t",
      "pubsub": null,
      "tpuQuic": "185.44.207.193:8002",
      "tpuVote": "185.44.207.193:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.44.207.193:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.44.207.193:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.64.134:8001",
      "gossip": "84.32.64.134:8000",
      "pubkey": "3cRbbeL1c3FpW8u9gwe3dTS7fcd2m9XPjGxTKtbgEEME",
      "pubsub": null,
      "tpuQuic": "84.32.64.134:8002",
      "tpuVote": "84.32.64.134:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "84.32.64.134:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.64.134:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "54.183.55.239:8000",
      "pubkey": "EMZzYB5WwfckDGqbumiL3o1u5dMxsYp7ZBcqngh8fGLs",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "46.166.162.141:8899",
      "tpu": null,
      "tvu": "46.166.162.141:8003",
      "gossip": "46.166.162.141:8001",
      "pubkey": "9V8Bbz99TZDZg6f9ckWkJPSLZ2C3aiB62bv9ja8VHzuq",
      "pubsub": "46.166.162.141:8900",
      "tpuQuic": "46.166.162.141:9007",
      "tpuVote": "46.166.162.141:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "46.166.162.141:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "46.166.162.141:9007"
    },
    {
      "rpc": "64.130.55.9:8899",
      "tpu": null,
      "tvu": "64.130.55.9:8000",
      "gossip": "64.130.55.9:8001",
      "pubkey": "Cc6t1jWTu8GRGh2nZmJJ1hGn4zqB3HpteiNTiSbtf46a",
      "pubsub": "64.130.55.9:8900",
      "tpuQuic": "64.130.55.9:8002",
      "tpuVote": "64.130.55.9:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.55.9:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.55.9:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "148.51.216.6:8001",
      "gossip": "148.51.216.6:8000",
      "pubkey": "EVx4PyAqUdwFuwaLzHLsMik7CZpHSLg6SREULiEVP7m3",
      "pubsub": null,
      "tpuQuic": "148.51.216.6:8009",
      "tpuVote": "148.51.216.6:8005",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "148.51.216.6:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "148.51.216.6:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.107.252:8000",
      "gossip": "208.91.107.252:8001",
      "pubkey": "6FZB6hdeo1dVs1W34vBP987Tk1oeU6x3JnPXvVEnTTGH",
      "pubsub": null,
      "tpuQuic": "208.91.107.252:8002",
      "tpuVote": "208.91.107.252:8004",
      "version": "4.1.0-rc.0",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "208.91.107.252:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.107.252:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.77.142.108:8001",
      "gossip": "45.77.142.108:8000",
      "pubkey": "ECo8pYx2Dq7XUqM1WU9LBjoG7fZrcwQKg6jq92g8myxd",
      "pubsub": null,
      "tpuQuic": "45.77.142.108:8002",
      "tpuVote": "45.77.142.108:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.77.142.108:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.77.142.108:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.34.184:8001",
      "gossip": "64.130.34.184:8000",
      "pubkey": "ny2gWNNPUJWZWYs2CcPAR7d611Ax6xHirr2XbiCyNT6",
      "pubsub": null,
      "tpuQuic": "64.130.34.184:8002",
      "tpuVote": "64.130.34.184:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.34.184:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.34.184:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.119:8002",
      "gossip": "64.130.42.119:8001",
      "pubkey": "mcb1tJeBqhcN1s1wdtx5Nm5vKsruyYoQQ2tbGJF5SBU",
      "pubsub": null,
      "tpuQuic": "64.130.42.119:8003",
      "tpuVote": "64.130.42.119:8005",
      "version": "4.1.0-rc.0",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.42.119:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.119:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "13.158.68.33:38001",
      "gossip": "13.158.68.33:38000",
      "pubkey": "Fedy7QvSh2zu6df3YPm2gUqK4dQ45iRoF2uSwPT7xxzZ",
      "pubsub": null,
      "tpuQuic": "13.158.68.33:38002",
      "tpuVote": "13.158.68.33:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "13.158.68.33:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "13.158.68.33:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.106.83.206:8001",
      "gossip": "23.106.83.206:8000",
      "pubkey": "8bb3J1DFn6cr1eqo7Txe2J9dg3pa16YRiqSpymKjJJ9d",
      "pubsub": null,
      "tpuQuic": "23.106.83.206:8002",
      "tpuVote": "23.106.83.206:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "23.106.83.206:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.106.83.206:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.194:8002",
      "gossip": "208.91.110.194:8001",
      "pubkey": "4pA1ufFikcieLxVPfMtTstih2s6VkWKVeCadhNLw5duH",
      "pubsub": null,
      "tpuQuic": "208.91.110.194:8003",
      "tpuVote": "208.91.110.194:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.194:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.194:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.208:8002",
      "gossip": "64.130.42.208:8001",
      "pubkey": "v7oY4YYx5pSW3FL1hRyjnRJ9pFaAgeYjqt7V4M1n3vz",
      "pubsub": null,
      "tpuQuic": "64.130.42.208:8003",
      "tpuVote": "64.130.42.208:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.208:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.208:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.197.106:8001",
      "gossip": "88.216.197.106:8000",
      "pubkey": "BcojDhcUAUEm86YbPJVxXVGDrsFePQ4sDtkpKjSDVAs6",
      "pubsub": null,
      "tpuQuic": "88.216.197.106:8009",
      "tpuVote": "88.216.197.106:8005",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 4140108451,
      "serveRepair": "88.216.197.106:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.197.106:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.235.67.254:8021",
      "gossip": "15.235.67.254:8001",
      "pubkey": "ChXT7M2eJMYo2JCMDcJGQquzGMHB4M9D6hU31udtF68N",
      "pubsub": null,
      "tpuQuic": "15.235.67.254:8022",
      "tpuVote": "15.235.67.254:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "15.235.67.254:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.235.67.254:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.62.28:8002",
      "gossip": "64.130.62.28:8001",
      "pubkey": "9eSQYTMWfePcjWbxcTpqkwWcAqfygpzF2mPSPThq157j",
      "pubsub": null,
      "tpuQuic": "64.130.62.28:8003",
      "tpuVote": "64.130.62.28:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.62.28:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.62.28:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.89:8001",
      "gossip": "84.32.103.89:8000",
      "pubkey": "52hMnmsSfa49DrtNd21MFy6GFzZWVFGsA1DSxbTJjF4X",
      "pubsub": null,
      "tpuQuic": "84.32.103.89:8002",
      "tpuVote": "84.32.103.89:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "84.32.103.89:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.89:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.56.42:8002",
      "gossip": "64.130.56.42:8001",
      "pubkey": "32rZTGpqiHM7hzN4swJSjJ19rpaYwrFJxuMbpdbrYF8D",
      "pubsub": null,
      "tpuQuic": "64.130.56.42:8003",
      "tpuVote": "64.130.56.42:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.56.42:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.56.42:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.46:8002",
      "gossip": "64.130.33.46:8001",
      "pubkey": "4Mw2FHavUtWkvzNffvCV2XwKVr3bD6LmB9PgJaqTgA4h",
      "pubsub": null,
      "tpuQuic": "64.130.33.46:8003",
      "tpuVote": "64.130.33.46:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.33.46:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.46:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.179:8001",
      "gossip": "64.130.41.179:8000",
      "pubkey": "3nJHQWpN2igv6GXW5EjrDLse27BUK5fVR5ecptPV9WRn",
      "pubsub": null,
      "tpuQuic": "64.130.41.179:8002",
      "tpuVote": "64.130.41.179:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.41.179:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.179:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "173.231.22.154:8001",
      "gossip": "173.231.22.154:8000",
      "pubkey": "AdEyxaQ2EM8aAPigBLd7n4JRwcVrTqih9Ntft8YRqwwW",
      "pubsub": null,
      "tpuQuic": "173.231.22.154:8002",
      "tpuVote": "173.231.22.154:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "173.231.22.154:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "173.231.22.154:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.172:8001",
      "gossip": "64.130.40.172:8000",
      "pubkey": "6yWW3tW53nz5WcX1a6JvkfUShScNRERPEYzVsPe4YnA4",
      "pubsub": null,
      "tpuQuic": "64.130.40.172:8002",
      "tpuVote": "64.130.40.172:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "64.130.40.172:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.172:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.132.46:8001",
      "gossip": "198.13.132.46:8000",
      "pubkey": "3M3r8Fi4MPys561VpksWfGH5dDVjzrMmbD29J763LoQQ",
      "pubsub": null,
      "tpuQuic": "198.13.132.46:8002",
      "tpuVote": "198.13.132.46:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.132.46:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.132.46:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "193.29.182.23:8001",
      "gossip": "193.29.182.23:8000",
      "pubkey": "HS4GWSHz8pX7oLNpL9GTZxhDsaRfzP85TZfmmeXGYEwh",
      "pubsub": null,
      "tpuQuic": "193.29.182.23:8002",
      "tpuVote": "193.29.182.23:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "193.29.182.23:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "193.29.182.23:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "43.156.93.143:8001",
      "gossip": "43.156.93.143:8000",
      "pubkey": "6kMnofpNWjpKAWkjvop9cC4XymgWWsPQ74geaAnhwUVp",
      "pubsub": null,
      "tpuQuic": "43.156.93.143:8002",
      "tpuVote": "43.156.93.143:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "43.156.93.143:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "43.156.93.143:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.127.89:8000",
      "gossip": "67.213.127.89:8001",
      "pubkey": "EDSDTaMXXFrCa9Dexf12z24VjPvAB1UBf5sHftZ5mWSV",
      "pubsub": null,
      "tpuQuic": "67.213.127.89:8002",
      "tpuVote": "67.213.127.89:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.127.89:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.127.89:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "204.16.241.39:7002",
      "pubkey": "FH21csWARfgE4eSCJvtHSPQmGhKs8hVAxGiy7psSZazR",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.138.98:8002",
      "gossip": "198.13.138.98:8001",
      "pubkey": "4doAn393kqTNct4njemp86BZYvu6sPUWRYxUTawGbpSh",
      "pubsub": null,
      "tpuQuic": "198.13.138.98:8003",
      "tpuVote": "198.13.138.98:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.138.98:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.138.98:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.130.37.154:8001",
      "gossip": "47.130.37.154:8000",
      "pubkey": "EKm7cLFGoSu7MqZXnCqymTLCcfktJfqQBzuT6rXxeLyq",
      "pubsub": null,
      "tpuQuic": "47.130.37.154:8002",
      "tpuVote": "47.130.37.154:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "47.130.37.154:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "47.130.37.154:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.77:8002",
      "gossip": "64.130.58.77:8001",
      "pubkey": "AqGtqFnvS4ss5nbAtBUUk7cSzUEmJaTYQ99iVYtVtvgb",
      "pubsub": null,
      "tpuQuic": "64.130.58.77:8003",
      "tpuVote": "64.130.58.77:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.58.77:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.77:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.139:8002",
      "gossip": "64.130.37.139:8001",
      "pubkey": "CZR3ReSA6wGGt4jK9RUuSHQo13Da8NoYhVXT1TKFK7w4",
      "pubsub": null,
      "tpuQuic": "64.130.37.139:8003",
      "tpuVote": "64.130.37.139:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.139:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.139:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "44.204.243.61:8001",
      "gossip": "44.204.243.61:8000",
      "pubkey": "9jBJ2cQavg5S17W2JFNkTcsPYivgw1bqTCWFcMG4AqwV",
      "pubsub": null,
      "tpuQuic": "44.204.243.61:8002",
      "tpuVote": "44.204.243.61:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "44.204.243.61:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "44.204.243.61:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.216:8002",
      "gossip": "64.130.42.216:8001",
      "pubkey": "9rP4tsBcxDh9kdt7NF3vuLZaBYejqLgAaLRnNPSxixKJ",
      "pubsub": null,
      "tpuQuic": "64.130.42.216:8003",
      "tpuVote": "64.130.42.216:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.216:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.216:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.116.169:8001",
      "gossip": "185.191.116.169:8000",
      "pubkey": "EREmfz8fmBafXAnpP2KyZwg6VMDKJ2qg1RwP3NfNMuSV",
      "pubsub": null,
      "tpuQuic": "185.191.116.169:8002",
      "tpuVote": "185.191.116.169:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "185.191.116.169:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.116.169:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.90:8000",
      "gossip": "45.152.160.90:8001",
      "pubkey": "AQp1ZV97a2faQq5ty7FsPCMLuYuqBD6fEhi3bKdWRDaB",
      "pubsub": null,
      "tpuQuic": "45.152.160.90:8002",
      "tpuVote": "45.152.160.90:8004",
      "version": "4.0.0-beta.7",
      "clientId": "JitoLabs",
      "featureSet": 1253319928,
      "serveRepair": "45.152.160.90:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.90:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.121:8002",
      "gossip": "135.125.166.237:8001",
      "pubkey": "YtibB1XuFG2HBSWut6anzNXkJ8fiHUumMVk17TSbb4R",
      "pubsub": null,
      "tpuQuic": "135.125.166.237:8003",
      "tpuVote": "135.125.166.237:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "135.125.166.237:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "135.125.166.237:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "189.1.164.17:8000",
      "gossip": "189.1.164.17:8001",
      "pubkey": "9FNJGu2zYD98sDwDCLVY1C5RWbbBdXSd2gvD27iigyKA",
      "pubsub": null,
      "tpuQuic": "189.1.164.17:8002",
      "tpuVote": "189.1.164.17:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "189.1.164.17:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "189.1.164.17:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.109.80:8001",
      "gossip": "208.91.109.80:8000",
      "pubkey": "7imxL9SZEQTUSjgqgfYteWw3rZc839h7pHZkwMhedLFm",
      "pubsub": null,
      "tpuQuic": "208.91.109.80:8002",
      "tpuVote": "208.91.109.80:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.109.80:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.80:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.89:9100",
      "gossip": "185.191.117.89:8001",
      "pubkey": "CUvWz5HqH7DvG5SfQxpagCju7UjoUYiioQnADdPNLfQX",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": "185.191.117.89:9103",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "185.191.117.89:9108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "151.247.219.63:8001",
      "gossip": "151.247.219.63:8000",
      "pubkey": "Ec8Jacf1rJs4shK9qFarXE5aLMTuJqBQLUwm4PbLE4qv",
      "pubsub": null,
      "tpuQuic": "151.247.219.63:8009",
      "tpuVote": "151.247.219.63:8005",
      "version": "3.1.10",
      "clientId": "JitoLabs",
      "featureSet": 1620780344,
      "serveRepair": "151.247.219.63:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "151.247.219.63:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.46.69:8001",
      "gossip": "64.130.46.69:8000",
      "pubkey": "EDTwdZ85jbrcPQB11Ntk8XZ8HiLhV33u3kBFDB7KzsSV",
      "pubsub": null,
      "tpuQuic": "64.130.46.69:8003",
      "tpuVote": "64.130.46.69:8005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.46.69:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.69:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.101.32.46:8001",
      "gossip": "185.101.32.46:8000",
      "pubkey": "hkG2JEoe8BfF4HLJeaS5ohd8TgTcqy13AvpPRE49LGE",
      "pubsub": null,
      "tpuQuic": "185.101.32.46:8002",
      "tpuVote": "185.101.32.46:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "185.101.32.46:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.101.32.46:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.152:8001",
      "gossip": "202.8.11.152:8000",
      "pubkey": "J7TUepGq3Eqt4npk2wJgAm4oTwot5HybjtvdeB3jRxJn",
      "pubsub": null,
      "tpuQuic": "202.8.11.152:8002",
      "tpuVote": "202.8.11.152:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.152:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.152:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.244.241:8002",
      "gossip": "204.16.244.241:8001",
      "pubkey": "41nUTb8QSndY1L3yhApMscfe53yr1rGKwkVdGsYMDRa6",
      "pubsub": null,
      "tpuQuic": "204.16.244.241:8003",
      "tpuVote": "204.16.244.241:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.244.241:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.244.241:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.48.86:8002",
      "gossip": "64.31.48.86:8001",
      "pubkey": "8U7ZRpGCiAnYyAvHF8R8qPRqhnTwReigh1BLut81a5Ph",
      "pubsub": null,
      "tpuQuic": "64.31.48.86:8003",
      "tpuVote": "64.31.48.86:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.48.86:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.48.86:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.167.24.58:8001",
      "gossip": "104.167.24.58:8000",
      "pubkey": "qXuGPWiY53cbHvJq4EXoYv7jwc5E9ggVDum7D1b3Whx",
      "pubsub": null,
      "tpuQuic": "104.167.24.58:8002",
      "tpuVote": "104.167.24.58:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "104.167.24.58:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.167.24.58:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.84.231.5:8003",
      "gossip": "38.84.231.5:8001",
      "pubkey": "BUep4ezWCK4jrTZuucVPWy9cyKgpHkoAFb9WahVMHaCW",
      "pubsub": null,
      "tpuQuic": "38.84.231.5:9007",
      "tpuVote": "38.84.231.5:9001",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "38.84.231.5:8910",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.84.231.5:9007"
    },
    {
      "rpc": "204.16.242.229:8899",
      "tpu": null,
      "tvu": "204.16.242.229:8001",
      "gossip": "204.16.242.229:8000",
      "pubkey": "26EpeZE9UuUrsGPwtLwX6jB2orbUB1fcWcmYWMvyaG2R",
      "pubsub": "204.16.242.229:8900",
      "tpuQuic": "204.16.242.229:8002",
      "tpuVote": "204.16.242.229:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "204.16.242.229:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.242.229:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.242.209:8002",
      "gossip": "204.16.242.209:8001",
      "pubkey": "6RvYztmmFS2H8ZP7rijDXg5oETniBhPXfQ3VKsXDKfbo",
      "pubsub": null,
      "tpuQuic": "204.16.242.209:8003",
      "tpuVote": "204.16.242.209:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.242.209:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.242.209:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "136.243.19.218:8001",
      "gossip": "136.243.19.218:8000",
      "pubkey": "8C1UXKX71biincpDpn1aeJknv1ZHQ16kCMH3PdMt43a7",
      "pubsub": null,
      "tpuQuic": "136.243.19.218:8009",
      "tpuVote": "136.243.19.218:8005",
      "version": "3.0.9",
      "clientId": "Agave",
      "featureSet": 3604001754,
      "serveRepair": "136.243.19.218:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "136.243.19.218:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.143.70:8002",
      "gossip": "74.118.143.70:8001",
      "pubkey": "6NP5boGuBAz11yhhRQ95zhwPhqUr33cP1EPgXFbaUfNC",
      "pubsub": null,
      "tpuQuic": "74.118.143.70:8003",
      "tpuVote": "74.118.143.70:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.143.70:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.143.70:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.19.103.100:8001",
      "gossip": "162.19.103.100:8000",
      "pubkey": "5kAoFsqamL7nCRxZ1L5JUQQyfa1wFMn4ykvVdPSXJvX9",
      "pubsub": null,
      "tpuQuic": "162.19.103.100:8002",
      "tpuVote": "162.19.103.100:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "162.19.103.100:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.103.100:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "189.1.164.101:8001",
      "gossip": "189.1.164.101:8000",
      "pubkey": "DiC6yspy3Ave7Gt2mAuZVTTLtpwQS4zEdTWM7GWs12mK",
      "pubsub": null,
      "tpuQuic": "189.1.164.101:8002",
      "tpuVote": "189.1.164.101:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "189.1.164.101:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "189.1.164.101:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.139.99:8001",
      "gossip": "74.118.139.99:8000",
      "pubkey": "BHapp7FvgLLfAR1dodrgWGunVnVhKwsfnNgXP6NVtCbo",
      "pubsub": null,
      "tpuQuic": "74.118.139.99:8002",
      "tpuVote": "74.118.139.99:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.139.99:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.139.99:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "92.205.32.93:8001",
      "gossip": "92.205.32.93:8000",
      "pubkey": "EzbarEhRcUQF88V13KE9nrf2hZMz9K8kSJUNqcjfRduK",
      "pubsub": null,
      "tpuQuic": "92.205.32.93:8002",
      "tpuVote": "92.205.32.93:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "92.205.32.93:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "92.205.32.93:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.9:8001",
      "gossip": "198.13.130.9:8000",
      "pubkey": "8ZMnQM8Bo3S1AhgQJvWewCDsuN6bJzudNMdN4wAxTQLs",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.34.12:8002",
      "gossip": "64.130.34.12:8001",
      "pubkey": "8o5cpm5zSgEPsEWa9AKtYj5UvPNZG8w6pW17XWurqnEY",
      "pubsub": null,
      "tpuQuic": "64.130.34.12:8003",
      "tpuVote": "64.130.34.12:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.34.12:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.34.12:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.78:8001",
      "gossip": "45.154.33.78:8000",
      "pubkey": "GY5wKePHQtSn9VGezsqzwaRShxRroJ4syYCrQcm8SWAi",
      "pubsub": null,
      "tpuQuic": "45.154.33.78:8002",
      "tpuVote": "45.154.33.78:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.154.33.78:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.78:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "65.108.15.133:8001",
      "gossip": "65.108.15.133:8000",
      "pubkey": "B4ADKTrtifPxw8EMDzAsLMRcETFmhjq9612WiQCcj7UN",
      "pubsub": null,
      "tpuQuic": "65.108.15.133:8002",
      "tpuVote": "65.108.15.133:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "65.108.15.133:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "65.108.15.133:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "18.194.159.110:8000",
      "gossip": "18.194.159.110:8001",
      "pubkey": "7P3vmEGtX37HG8h8EAnEngnyH3M77Tcd1MgmdbMCFMFB",
      "pubsub": null,
      "tpuQuic": "18.194.159.110:8002",
      "tpuVote": "18.194.159.110:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "18.194.159.110:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "18.194.159.110:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "78.138.96.203:8001",
      "gossip": "78.138.96.203:8000",
      "pubkey": "GTUiKrTkTQWCGV5d8BUrw8gRLVZxtnmm9KA71jgxGSJA",
      "pubsub": null,
      "tpuQuic": "78.138.96.203:8002",
      "tpuVote": "78.138.96.203:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "78.138.96.203:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "78.138.96.203:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.149:8002",
      "gossip": "202.8.11.149:8001",
      "pubkey": "9nurZxF1EQoZ2bzsunNn57dHDzsJQw2oB1P65emAhFZv",
      "pubsub": null,
      "tpuQuic": "202.8.11.149:8003",
      "tpuVote": "202.8.11.149:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.149:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.149:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "54.208.153.68:8001",
      "gossip": "54.208.153.68:8000",
      "pubkey": "BKq984gPZZiPHAnbnCpRgmjFkPugj8PoH92vM3G4af4V",
      "pubsub": null,
      "tpuQuic": "54.208.153.68:8002",
      "tpuVote": "54.208.153.68:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.208.153.68:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.208.153.68:8003"
    },
    {
      "rpc": "64.34.93.117:8899",
      "tpu": null,
      "tvu": "64.34.93.117:8001",
      "gossip": "64.34.93.117:8000",
      "pubkey": "Bbqp2RkiHfDRZPki9TqFc6bJZn3pUuAAQiCazxhQgUCP",
      "pubsub": "64.34.93.117:8900",
      "tpuQuic": "64.34.93.117:8009",
      "tpuVote": "64.34.93.117:8005",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "64.34.93.117:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.93.117:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.243.90:8002",
      "gossip": "204.16.243.90:8001",
      "pubkey": "7R9THMoK6cNaYJ4LE85UZPQtjcGRiwe9haqFwZ7LVmPN",
      "pubsub": null,
      "tpuQuic": "204.16.243.90:8010",
      "tpuVote": "204.16.243.90:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "204.16.243.90:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.243.90:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.19.222.40:8021",
      "gossip": "162.19.222.40:8001",
      "pubkey": "HSVPDK7zLzyN366LFyEJnFozy2VYVquXDWPWaXgSapri",
      "pubsub": null,
      "tpuQuic": "162.19.222.40:8022",
      "tpuVote": "162.19.222.40:8024",
      "version": "4.0.3",
      "clientId": "Rakurai",
      "featureSet": 1878484565,
      "serveRepair": "162.19.222.40:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.222.40:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "217.79.254.74:8001",
      "gossip": "217.79.254.74:8000",
      "pubkey": "5jdHtGR3QdgbEi84fMdmVN75AC1yFNm6djEkx4uXaGJE",
      "pubsub": null,
      "tpuQuic": "217.79.254.74:8002",
      "tpuVote": "217.79.254.74:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "217.79.254.74:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "217.79.254.74:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.111.240.195:25001",
      "gossip": "23.111.240.195:25000",
      "pubkey": "FFn7sLYCEyCT5Nb1eZXfA66P1o5NQ4HN2wKrZ6AzNq4J",
      "pubsub": null,
      "tpuQuic": "23.111.240.195:25002",
      "tpuVote": "23.111.240.195:25004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "23.111.240.195:25009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.111.240.195:25003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.87:8002",
      "gossip": "208.115.227.87:8001",
      "pubkey": "HiEAHx1RfAkEtdmtAbDWVh3Zq2pJ185i2k7oumdQyFVQ",
      "pubsub": null,
      "tpuQuic": "208.115.227.87:8003",
      "tpuVote": "208.115.227.87:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.87:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.87:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.217:8000",
      "gossip": "64.130.63.217:8001",
      "pubkey": "HdqgynGAY6ykng3yKtmr6ZqvYv2shwmaeNwrD4jeVZko",
      "pubsub": null,
      "tpuQuic": "64.130.63.217:8002",
      "tpuVote": "64.130.63.217:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.217:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.217:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.11:8002",
      "gossip": "198.13.134.11:8001",
      "pubkey": "8FB9fd4AQDmssuSt9muFzohJrdhWopGux1bxsKtkqPJJ",
      "pubsub": null,
      "tpuQuic": "198.13.134.11:8003",
      "tpuVote": "198.13.134.11:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.11:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.11:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "85.195.84.173:8001",
      "gossip": "85.195.84.173:8000",
      "pubkey": "NKdaVra3uLCAtoLV2u46aAhMunqFUXKedNh1y9xr2vN",
      "pubsub": null,
      "tpuQuic": "85.195.84.173:8002",
      "tpuVote": "85.195.84.173:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "85.195.84.173:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "85.195.84.173:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.143.42:8002",
      "gossip": "74.118.143.42:8001",
      "pubkey": "5uoXccopaMEqqQF8zEsrZvi2a2qesqEJUSCAWCipTvXs",
      "pubsub": null,
      "tpuQuic": "74.118.143.42:8010",
      "tpuVote": "74.118.143.42:8006",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "74.118.143.42:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.143.42:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "91.242.214.243:8001",
      "gossip": "91.242.214.243:8000",
      "pubkey": "3QEHBvzkwkvsSyf7hvsD5k31w4kx8zoDcAzzRa8CwF5d",
      "pubsub": null,
      "tpuQuic": "91.242.214.243:8002",
      "tpuVote": "91.242.214.243:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "91.242.214.243:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.242.214.243:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.52:8001",
      "gossip": "198.13.130.52:8000",
      "pubkey": "5j8XBQ5VmkpxEFrpgyeQ9V3iwXdgUnCu3Ato9CcBijiG",
      "pubsub": null,
      "tpuQuic": "198.13.130.52:8002",
      "tpuVote": "198.13.130.52:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.130.52:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.52:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.28.238.185:8000",
      "gossip": "149.28.238.185:8001",
      "pubkey": "EPC4Pw7DFbVMV3dNCXAuaDoxESRKDW2tzs7QEiGBpWSV",
      "pubsub": null,
      "tpuQuic": "149.28.238.185:8002",
      "tpuVote": "149.28.238.185:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "149.28.238.185:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "149.28.238.185:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.194.8.161:8000",
      "gossip": "104.194.8.161:8021",
      "pubkey": "9ugjkWWrwN26PdbYHPjCJFTYSg6xpi6CFrs8sMUoeTUX",
      "pubsub": null,
      "tpuQuic": "104.194.8.161:8001",
      "tpuVote": "104.194.8.161:8003",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.194.8.161:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.194.8.161:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.85:8001",
      "gossip": "64.130.54.85:8000",
      "pubkey": "G6e3v9wg1nred1A4kVQJUaEPMjeKPcPdPvegyhGKHmCQ",
      "pubsub": null,
      "tpuQuic": "64.130.54.85:8002",
      "tpuVote": "64.130.54.85:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.85:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.85:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.132.22:8001",
      "gossip": "198.13.132.22:8000",
      "pubkey": "ERVrnS1VosYfBMDP84rZt6hfDo37QBw37gF4Nam3o8uE",
      "pubsub": null,
      "tpuQuic": "198.13.132.22:8002",
      "tpuVote": "198.13.132.22:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.132.22:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.132.22:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.105.184:8001",
      "gossip": "208.91.105.184:8000",
      "pubkey": "4asjf6WnRcDCH5XJbppvnZEbF1U8rHDd5bV7kb34cx48",
      "pubsub": null,
      "tpuQuic": "208.91.105.184:8002",
      "tpuVote": "208.91.105.184:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "208.91.105.184:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.105.184:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "129.213.21.76:8002",
      "gossip": "129.213.21.76:8001",
      "pubkey": "2wwNqUSD11XMJQmUosTna6Bv18qrucEs5zcUwhaQYjKX",
      "pubsub": null,
      "tpuQuic": "129.213.21.76:8010",
      "tpuVote": "129.213.21.76:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "129.213.21.76:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "129.213.21.76:8011"
    },
    {
      "rpc": "103.219.168.159:21611",
      "tpu": null,
      "tvu": "103.219.168.159:11601",
      "gossip": "103.219.168.159:21610",
      "pubkey": "H3d92iY3rAHzJV1jbMRoaXDLCjJbcLGmLH2J9LTK8ZB5",
      "pubsub": "103.219.168.159:21612",
      "tpuQuic": "103.219.168.159:11602",
      "tpuVote": "103.219.168.159:11604",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "103.219.168.159:11609",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.219.168.159:11603"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "45.137.71.229:8000",
      "pubkey": "DQUaXFe1iLGT7dShaLiKJ85zmVm4ZRsAiZKakdboRLUr",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "3.1.8",
      "clientId": "AgaveBam",
      "featureSet": 1620780344,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.117:8001",
      "gossip": "64.130.37.117:8000",
      "pubkey": "7GgcZpUuGu9JDWs2G5zgk1dWumTzw4agabRm8ftWnug1",
      "pubsub": null,
      "tpuQuic": "64.130.37.117:8002",
      "tpuVote": "64.130.37.117:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.117:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.117:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.119:8002",
      "gossip": "198.13.130.119:8001",
      "pubkey": "J3ar55Ep47EC2AhDu8df4g8LxqdVnK4pAHPmRQfaZfPP",
      "pubsub": null,
      "tpuQuic": "198.13.130.119:8003",
      "tpuVote": "198.13.130.119:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.119:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.119:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.203.13:8002",
      "gossip": "208.115.203.13:8001",
      "pubkey": "27ots15XBsMhqKfPYAk3BT7CBxqbmRiKJLtqP5xk5GS7",
      "pubsub": null,
      "tpuQuic": "208.115.203.13:8003",
      "tpuVote": "208.115.203.13:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.203.13:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.203.13:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.39.30:8002",
      "gossip": "64.31.39.30:8001",
      "pubkey": "4QtaSWvEsP4fqjmSkLGPUNAqF9Qr1XscsDasihqku7Vj",
      "pubsub": null,
      "tpuQuic": "64.31.39.30:8003",
      "tpuVote": "64.31.39.30:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.39.30:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.39.30:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.34.8:8002",
      "gossip": "64.130.34.8:8001",
      "pubkey": "8z9CVzNLk8fg3SpUxHFWAC8uSCwJaCk5WUXQQtFQWE7t",
      "pubsub": null,
      "tpuQuic": "64.130.34.8:8003",
      "tpuVote": "64.130.34.8:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.34.8:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.34.8:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.137.189:8001",
      "gossip": "198.13.137.189:8000",
      "pubkey": "GykusBjjHLuBCAdyfNFNCg1H5QfnU4dKmP4wVajHWqab",
      "pubsub": null,
      "tpuQuic": "198.13.137.189:8002",
      "tpuVote": "198.13.137.189:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.137.189:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.137.189:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.37:8002",
      "gossip": "202.8.11.37:8001",
      "pubkey": "to6wZEGT1zP6sn1nLpvY7EDNQuQ62U9Ho1uk4gDWkJk",
      "pubsub": null,
      "tpuQuic": "202.8.11.37:8003",
      "tpuVote": "202.8.11.37:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.37:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.37:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.184.14:8000",
      "gossip": "70.40.184.14:8001",
      "pubkey": "3qBQJ3jE4bnMqRYMDF8EX3w2chbQnNGcGkFv5LxQWRh6",
      "pubsub": null,
      "tpuQuic": "70.40.184.14:8002",
      "tpuVote": "70.40.184.14:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "70.40.184.14:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.184.14:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.28:8002",
      "gossip": "5.135.126.174:8001",
      "pubkey": "8vLPM7MEy7CgzXKcqKZU8viXB8kfK2UKM4F9tdYdgiDi",
      "pubsub": null,
      "tpuQuic": "5.135.126.174:8003",
      "tpuVote": "5.135.126.174:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.126.174:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.126.174:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "65.21.255.120:8001",
      "pubkey": "2hviMc5BB9Z6Q461vdrBUPouDeGY1KLEyUou49cckbu9",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "3.1.5",
      "clientId": "Agave",
      "featureSet": 2086771155,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.109.165.6:9000",
      "gossip": "109.109.165.6:8001",
      "pubkey": "9CW4dkGiQ1nybHrMquxm9b9eHE2s6ZqZnfuUNmR8d4qR",
      "pubsub": null,
      "tpuQuic": "109.109.165.6:9001",
      "tpuVote": "109.109.165.6:9003",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.109.165.6:9008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.109.165.6:9002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "3.92.213.81:8001",
      "gossip": "3.92.213.81:8000",
      "pubkey": "GsVZKKEiGTkqcGXBtcsNxCLjE6w54r4og5HrepGeCTpj",
      "pubsub": null,
      "tpuQuic": "3.92.213.81:8002",
      "tpuVote": "3.92.213.81:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "3.92.213.81:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "3.92.213.81:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "87.249.128.220:8001",
      "gossip": "87.249.128.220:8000",
      "pubkey": "9n9puYRWR1jNjyrHvwcPSEWxykaVkkdK7rLt4gW6frBT",
      "pubsub": null,
      "tpuQuic": "87.249.128.220:8002",
      "tpuVote": "87.249.128.220:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "87.249.128.220:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "87.249.128.220:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.19.103.252:9700",
      "gossip": "162.19.103.252:8777",
      "pubkey": "ZveLxfKHJTw4Cs8vCfpojVsW3TsPUWZybb73vaFtMxa",
      "pubsub": null,
      "tpuQuic": "162.19.103.252:9701",
      "tpuVote": "162.19.103.252:9703",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "162.19.103.252:9708",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.103.252:9702"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "195.211.43.239:8001",
      "gossip": "195.211.43.239:8000",
      "pubkey": "7ew9aUFDzD75emZU1SspMi6o5YHXWC2Cnx1ZEhnCKFCK",
      "pubsub": null,
      "tpuQuic": "195.211.43.239:8002",
      "tpuVote": "195.211.43.239:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "195.211.43.239:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "195.211.43.239:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.242.0.102:8001",
      "gossip": "216.242.0.102:8000",
      "pubkey": "2EdD6YwZxahCEdRMXjWLVTrkRwz9fhQ1CVbs4NfqEWBK",
      "pubsub": null,
      "tpuQuic": "216.242.0.102:8002",
      "tpuVote": "216.242.0.102:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.242.0.102:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.242.0.102:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.83:8002",
      "gossip": "51.89.24.67:8001",
      "pubkey": "9RBbDjvgoUwvHpWSDWCpwmdP1ACzXBqBorTKvTtGJ5Lm",
      "pubsub": null,
      "tpuQuic": "51.89.24.67:8003",
      "tpuVote": "51.89.24.67:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.24.67:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.24.67:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "151.123.174.205:8000",
      "gossip": "151.123.174.205:8001",
      "pubkey": "5ejjx4cY3sQWKeVrdUCuAsrg3TmFQYoPvjsf97UwfKN7",
      "pubsub": null,
      "tpuQuic": "151.123.174.205:8002",
      "tpuVote": "151.123.174.205:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "151.123.174.205:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "151.123.174.205:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "160.202.131.33:8001",
      "gossip": "160.202.131.33:8000",
      "pubkey": "DRLZv4mewoZ4keqFehJxRTkDrPBs1oWXWEwgXfEf6Wop",
      "pubsub": null,
      "tpuQuic": "160.202.131.33:8002",
      "tpuVote": "160.202.131.33:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "160.202.131.33:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "160.202.131.33:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "178.18.119.170:8001",
      "gossip": "178.18.119.170:8000",
      "pubkey": "G3kVWsw1gTvH1ktGfWM6m7HmEGgCng8FubX81NEkuy6Q",
      "pubsub": null,
      "tpuQuic": "178.18.119.170:8002",
      "tpuVote": "178.18.119.170:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "178.18.119.170:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "178.18.119.170:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.167.235.185:6001",
      "gossip": "103.167.235.185:6000",
      "pubkey": "7UyhWzQ5M1d7ejj3hEnppAP3CiqLGs6UgF2jYAZ2VEXT",
      "pubsub": null,
      "tpuQuic": "103.167.235.185:6002",
      "tpuVote": "103.167.235.185:6004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "103.167.235.185:6009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.167.235.185:6003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.29:8001",
      "gossip": "198.13.134.29:8000",
      "pubkey": "8WQxrksr7Y6VpujvksVjAnN1KgJXFPv9AEmXvN52jpq1",
      "pubsub": null,
      "tpuQuic": "198.13.134.29:8002",
      "tpuVote": "198.13.134.29:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.134.29:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.29:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.50:8002",
      "gossip": "63.254.172.50:8001",
      "pubkey": "9P7eDWUG1dTXuPQMTGdUDA1cowXwutKmn1GCRG2C3SRz",
      "pubsub": null,
      "tpuQuic": "63.254.172.50:8003",
      "tpuVote": "63.254.172.50:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "63.254.172.50:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.172.50:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.218.148:8001",
      "gossip": "141.98.218.148:8000",
      "pubkey": "7xna3tfs2i8NkNWT3XhCwqmq4g5ap6tSgbgui5SE2okZ",
      "pubsub": null,
      "tpuQuic": "141.98.218.148:8002",
      "tpuVote": "141.98.218.148:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "141.98.218.148:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.218.148:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.49:8002",
      "gossip": "64.130.57.49:8001",
      "pubkey": "FQvfMRxSHFbfVU8GQaHTdqkdxB8AXVgVnEfc9qLCFsiS",
      "pubsub": null,
      "tpuQuic": "64.130.57.49:8003",
      "tpuVote": "64.130.57.49:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.57.49:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.49:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.207.214.253:8003",
      "gossip": "84.207.214.253:8001",
      "pubkey": "GetLn5cVnufTmxKWm3FQ21a4YbyFAap75inTxYWKe6oa",
      "pubsub": null,
      "tpuQuic": "84.207.214.253:9007",
      "tpuVote": "84.207.214.253:9001",
      "version": "0.910.40000",
      "clientId": "HarmonicFrankendancer",
      "featureSet": 3718597879,
      "serveRepair": "84.207.214.253:9108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.207.214.253:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.147:8001",
      "gossip": "64.130.50.147:8000",
      "pubkey": "7CxChSRrGMrhY7fsCtVYMDeL2i9Tvg4Nm57R19iBXNWi",
      "pubsub": null,
      "tpuQuic": "64.130.50.147:8002",
      "tpuVote": "64.130.50.147:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.147:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.147:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.228:8002",
      "gossip": "64.130.59.228:8001",
      "pubkey": "nM6BNxFbZSTYChrPz8NiEf8famj8B5dymFMesAe8eyh",
      "pubsub": null,
      "tpuQuic": "64.130.59.228:8003",
      "tpuVote": "64.130.59.228:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.228:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.228:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.238.111.216:8000",
      "gossip": "47.238.111.216:8001",
      "pubkey": "BxZ8Lawb7ehpTc3va9mVYyxWwP4f5mXXNarJMozt9ibG",
      "pubsub": null,
      "tpuQuic": "47.238.111.216:8002",
      "tpuVote": "47.238.111.216:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "47.238.111.216:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "47.238.111.216:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.202:8002",
      "gossip": "198.13.138.183:9012",
      "pubkey": "GiPbQF44HB8we4ytBSTbvTt2fWUv736graedTxrMs2Hg",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 1718981463,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.233:8001",
      "gossip": "64.130.37.233:8000",
      "pubkey": "2UypUukAkhRFJXvpVdEKbAFYyNWh9RSExx4bBdco92MR",
      "pubsub": null,
      "tpuQuic": "64.130.37.233:8002",
      "tpuVote": "64.130.37.233:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.37.233:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.233:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "38.86.91.66:8002",
      "gossip": "38.86.91.66:8001",
      "pubkey": "EUsRBsDpKDZ3DT8Ti3JUCSpdUXBA72vw9ZcDQhvjSCXr",
      "pubsub": null,
      "tpuQuic": "38.86.91.66:8003",
      "tpuVote": "38.86.91.66:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "38.86.91.66:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "38.86.91.66:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.103:18001",
      "gossip": "45.154.33.103:18000",
      "pubkey": "FRNXzuVbjipdZXwxjHVmDWWe3yzpPUF9WRMEdUo7RVQ2",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "46.236.216.13:8001",
      "gossip": "46.236.216.13:8000",
      "pubkey": "8bZbiTtcDxp95rzuBqdUJZDTaoduVX6hXeSDt8tW7rfZ",
      "pubsub": null,
      "tpuQuic": "46.236.216.13:8002",
      "tpuVote": "46.236.216.13:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "46.236.216.13:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "46.236.216.13:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "129.213.91.26:8002",
      "gossip": "129.213.91.26:8001",
      "pubkey": "C4UKyRRqW5LX28qeTdvQ5hGfvXM8kqYyUgrUSzWAxq8V",
      "pubsub": null,
      "tpuQuic": "129.213.91.26:8010",
      "tpuVote": "129.213.91.26:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "129.213.91.26:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "129.213.91.26:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.106:18001",
      "gossip": "45.154.33.106:18000",
      "pubkey": "8dUxu9WGyHPoWNqefftTmz8i6tZvgXCjN7WExSimUHg5",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.107:18001",
      "gossip": "45.154.33.107:18000",
      "pubkey": "Crcg1KfnbMb9edkqDn17obZ7TNMAVzhe3GvPKyRdXcjG",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.105:18001",
      "gossip": "45.154.33.105:18000",
      "pubkey": "3poszxgZ221ZoDb8jAwi3XebsWhuSz5nnfgEAjwQRNWi",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.82:18001",
      "gossip": "45.154.33.82:18000",
      "pubkey": "G2WxASXHzhBUkCRbwmirGQNqBRvVKBynMxzi6wDh7DJq",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.139:8002",
      "gossip": "208.115.227.139:8001",
      "pubkey": "Gi4G14A7BHHcoV2dcFrscTuMY6pGjAFC6hcp7p8uzizT",
      "pubsub": null,
      "tpuQuic": "208.115.227.139:8003",
      "tpuVote": "208.115.227.139:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.139:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.139:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.109:18001",
      "gossip": "45.154.33.109:18000",
      "pubkey": "EUoMDregSUDseuVXt2o9DycwQEyrAYFnX1JLpzotKFsT",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.104:18001",
      "gossip": "45.154.33.104:18000",
      "pubkey": "6sXjPkQE4gih7CjjRdnG74royokV2XWRN1S5eTqdPeuy",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "15.235.231.52:8111",
      "tpu": null,
      "tvu": "15.235.231.52:8003",
      "gossip": "15.235.231.52:8001",
      "pubkey": "DBkx1stmkXF2WQDMwZ6AeeHYfuKd35GpnnULgeQUPJvW",
      "pubsub": "15.235.231.52:8112",
      "tpuQuic": "15.235.231.52:9007",
      "tpuVote": "15.235.231.52:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "15.235.231.52:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.235.231.52:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.111:8002",
      "gossip": "208.115.227.111:8001",
      "pubkey": "8E3QnTkaeoqQbNkK9rxa6G3NUZnsTX65RFZwjCaNfcYH",
      "pubsub": null,
      "tpuQuic": "208.115.227.111:8003",
      "tpuVote": "208.115.227.111:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.111:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.111:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.112:8001",
      "gossip": "202.8.11.112:8000",
      "pubkey": "ExKFUD9wsscXuEnsm1NjzmyStj93VPdsJCWweRmJJYqo",
      "pubsub": null,
      "tpuQuic": "202.8.11.112:8002",
      "tpuVote": "202.8.11.112:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.112:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.112:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.246:8001",
      "gossip": "64.130.40.246:8000",
      "pubkey": "9HyJSkFg3msZggeijEDbqEQbgZT2EB4Mgnynm5GbJ2gV",
      "pubsub": null,
      "tpuQuic": "64.130.40.246:8002",
      "tpuVote": "64.130.40.246:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.40.246:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.246:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "149.28.196.240:8001",
      "gossip": "149.28.196.240:8000",
      "pubkey": "4UznkZ4TdeeJKAWzzGAGhp8g24XyvntYvAy9VZnvZyHo",
      "pubsub": null,
      "tpuQuic": "149.28.196.240:8002",
      "tpuVote": "149.28.196.240:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "149.28.196.240:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "149.28.196.240:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.186.132:8002",
      "gossip": "84.32.186.132:8001",
      "pubkey": "9RJLdqTssUWda5NxkZ1zCU619x7mEWXQ3U5dEZuYcka8",
      "pubsub": null,
      "tpuQuic": "84.32.186.132:8003",
      "tpuVote": "84.32.186.132:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "84.32.186.132:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.186.132:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.121:8001",
      "gossip": "64.130.42.121:8000",
      "pubkey": "HyFFniSGezpQVyrm5SgHyZuLGfYZ69g5ZpMFkZRF1CW4",
      "pubsub": null,
      "tpuQuic": "64.130.42.121:8002",
      "tpuVote": "64.130.42.121:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.121:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.121:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.63:8000",
      "gossip": "45.152.160.63:8001",
      "pubkey": "7b5w2zeFGUzenTAkZeYYuJv3HFUDdeY5iP85QQ84Q6Ec",
      "pubsub": null,
      "tpuQuic": "45.152.160.63:8002",
      "tpuVote": "45.152.160.63:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.152.160.63:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.63:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.45:8002",
      "gossip": "5.135.196.123:8001",
      "pubkey": "JDU88nvHzu9JBvcpwtEEAsUMKK9oSkwTytRa2CAi9icJ",
      "pubsub": null,
      "tpuQuic": "5.135.196.123:8003",
      "tpuVote": "5.135.196.123:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.196.123:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.196.123:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.204.46.164:8001",
      "gossip": "15.204.46.164:8000",
      "pubkey": "G64CYjkriBp1Rrkvp1fH2r6LQh7cePPppK3BGTtRLzCU",
      "pubsub": null,
      "tpuQuic": "15.204.46.164:8002",
      "tpuVote": "15.204.46.164:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "15.204.46.164:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.46.164:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.108:18001",
      "gossip": "45.154.33.108:18000",
      "pubkey": "2WRrKzmTEWp23TDJZg5ADXhisBAeFzynx9o3YiUXvbdy",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.113:8002",
      "gossip": "208.115.227.113:8001",
      "pubkey": "mu48cBYU2ZeijGgBbfjv5UHo7zmcWww3NBYZHXSsfCN",
      "pubsub": null,
      "tpuQuic": "208.115.227.113:8003",
      "tpuVote": "208.115.227.113:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.113:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.113:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.126.3:8001",
      "gossip": "67.213.126.3:8000",
      "pubkey": "78o7SS37VFEbWNRZ3wccXFz3RNUh4P47rzht9Uk9zRjB",
      "pubsub": null,
      "tpuQuic": "67.213.126.3:8002",
      "tpuVote": "67.213.126.3:8004",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 1670369118,
      "serveRepair": "67.213.126.3:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.126.3:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "80.240.28.22:8002",
      "gossip": "80.240.28.22:8001",
      "pubkey": "5mGNtYvEiG6E89y2bJdkK8iuf5jWSqt9NVMjtcUZJWhm",
      "pubsub": null,
      "tpuQuic": "80.240.28.22:8003",
      "tpuVote": "80.240.28.22:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "80.240.28.22:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "80.240.28.22:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.142.6:8001",
      "gossip": "198.13.142.6:8000",
      "pubkey": "EQouA7YSruGgim8diDzFsSzJ2LKeDW1G6cPgLTUaSxSV",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-beta.1",
      "clientId": "JitoLabs",
      "featureSet": 713536442,
      "serveRepair": "198.13.142.6:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.178.224.139:18001",
      "gossip": "198.178.224.139:18000",
      "pubkey": "4K9HvLWcKsiYBJSDo7QBosSzQ32rm1jWvr1dCZHPQ33L",
      "pubsub": null,
      "tpuQuic": "198.178.224.139:18002",
      "tpuVote": "198.178.224.139:18004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "198.178.224.139:18009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.178.224.139:18003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.212.133:8002",
      "gossip": "208.115.212.133:8001",
      "pubkey": "H8MzeFHjFvixDKZDDCF1DAtF6R446679MDxJYu3DzZ2J",
      "pubsub": null,
      "tpuQuic": "208.115.212.133:8003",
      "tpuVote": "208.115.212.133:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.212.133:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.212.133:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.111.165:8002",
      "gossip": "208.91.111.165:8001",
      "pubkey": "HvCWRyu9SoKLs9J1WHfZZmHHqgaFhzXydtKqRUrLuUzs",
      "pubsub": null,
      "tpuQuic": "208.91.111.165:8010",
      "tpuVote": "208.91.111.165:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "208.91.111.165:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.111.165:8011"
    },
    {
      "rpc": "64.130.33.184:8899",
      "tpu": null,
      "tvu": "64.130.33.184:8002",
      "gossip": "64.130.33.184:8001",
      "pubkey": "GdnSyH3YtwcxFvQrVVJMm1JhTS4QVX7MFsX56uJLUfiZ",
      "pubsub": "64.130.33.184:8900",
      "tpuQuic": "64.130.33.184:8003",
      "tpuVote": "64.130.33.184:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.33.184:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.184:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.173:8002",
      "gossip": "64.130.40.173:8001",
      "pubkey": "5CzJYV6AzYDyrxdzyrCMyctVfrAhNCfsFJic3sXus4SH",
      "pubsub": null,
      "tpuQuic": "64.130.40.173:8003",
      "tpuVote": "64.130.40.173:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.40.173:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.173:8004"
    },
    {
      "rpc": "64.130.44.141:8899",
      "tpu": null,
      "tvu": "64.130.44.141:8000",
      "gossip": "64.130.44.141:8901",
      "pubkey": "AuJ9CJ1oAe92zVvB7W1Lpi1UL84iD6Sr4k3y9m34YcaX",
      "pubsub": "64.130.44.141:8900",
      "tpuQuic": "64.130.44.141:8001",
      "tpuVote": "64.130.44.141:8003",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.44.141:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.141:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.138.89:8002",
      "gossip": "198.13.138.89:8001",
      "pubkey": "778ytdQxiNKfKX1GUN8HqjMAyRfcfFucMQEob3izCGR5",
      "pubsub": null,
      "tpuQuic": "198.13.138.89:8003",
      "tpuVote": "198.13.138.89:8005",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "198.13.138.89:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.138.89:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.8.105:8001",
      "gossip": "202.8.8.105:8000",
      "pubkey": "FK4AzutoyU77S8Rn9thqWWBB9CHBYzjCSRy7ousoeGHh",
      "pubsub": null,
      "tpuQuic": "202.8.8.105:8002",
      "tpuVote": "202.8.8.105:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.8.105:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.8.105:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.94.154.210:8001",
      "gossip": "141.94.154.210:8000",
      "pubkey": "GxL2WKXFFMGiTsxEXJTVCRbt4LWzFABSkXkMN6acKTvA",
      "pubsub": null,
      "tpuQuic": "141.94.154.210:8002",
      "tpuVote": "141.94.154.210:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "141.94.154.210:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.94.154.210:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.154:8001",
      "gossip": "198.13.130.154:8000",
      "pubkey": "sgpdgTZZCoDTttUxyggGMGMoEUSBk7s5GVgnGSu3mQ2",
      "pubsub": null,
      "tpuQuic": "198.13.130.154:8002",
      "tpuVote": "198.13.130.154:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.130.154:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.154:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.81.135:8002",
      "gossip": "64.34.81.135:8001",
      "pubkey": "HgDzXDFDfHMV2vNUry2bkscyQGAKRHRpFX1x45rqbcEN",
      "pubsub": null,
      "tpuQuic": "64.34.81.135:8003",
      "tpuVote": "64.34.81.135:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.34.81.135:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.81.135:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.156:8001",
      "gossip": "208.91.110.156:8000",
      "pubkey": "Dbrw3NnKp9acufpvUQQJErPZdcQ7YvzDod4Ha2qTPVvs",
      "pubsub": null,
      "tpuQuic": "208.91.110.156:8002",
      "tpuVote": "208.91.110.156:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "208.91.110.156:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.156:8003"
    },
    {
      "rpc": "169.155.44.224:8895",
      "tpu": null,
      "tvu": "169.155.44.224:8002",
      "gossip": "169.155.44.224:8001",
      "pubkey": "Gv8FPJZaw9Z8XLkjTA1n8bjpcn3SxGoZHvM8U2Mevdns",
      "pubsub": "169.155.44.224:8895",
      "tpuQuic": "169.155.44.224:8003",
      "tpuVote": "169.155.44.224:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "169.155.44.224:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "169.155.44.224:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.137:8001",
      "gossip": "185.191.117.137:8000",
      "pubkey": "TwYiFtutycXK8oamtdLSV15ABgjgNs9Mz2TjczLvZKz",
      "pubsub": null,
      "tpuQuic": "185.191.117.137:8002",
      "tpuVote": "185.191.117.137:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "185.191.117.137:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.137:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "130.162.33.80:8002",
      "gossip": "130.162.33.80:8001",
      "pubkey": "JhvWmQA2sfqjhs76UbwRkDzTtJKYdTNK6RtVP1xcgv9",
      "pubsub": null,
      "tpuQuic": "130.162.33.80:8010",
      "tpuVote": "130.162.33.80:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "130.162.33.80:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "130.162.33.80:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.79:8002",
      "gossip": "64.130.50.79:8001",
      "pubkey": "4QWAJ6vyr9XMrhFxwC7ZX5hxeehK4dSdHpMhQ3b2DJ8r",
      "pubsub": null,
      "tpuQuic": "64.130.50.79:8010",
      "tpuVote": "64.130.50.79:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "64.130.50.79:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.79:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.235.219.119:8001",
      "gossip": "15.235.219.119:8000",
      "pubkey": "7BmLNzm5XgPQXJQWUvNsG58RW5K8vtVX84Q7XS4vUbTH",
      "pubsub": null,
      "tpuQuic": "15.235.219.119:8002",
      "tpuVote": "15.235.219.119:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "15.235.219.119:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.235.219.119:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "212.95.47.153:8001",
      "gossip": "212.95.47.153:8000",
      "pubkey": "DnJNpxA6DiLEav5NavKTyzhNvY3vfjMrpq28ou4VM2qC",
      "pubsub": null,
      "tpuQuic": "212.95.47.153:8002",
      "tpuVote": "212.95.47.153:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "212.95.47.153:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "212.95.47.153:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.129.84.85:8001",
      "gossip": "45.129.84.85:8000",
      "pubkey": "8RFhGnKhHBvdP2svSwTTxfASrQjJEQx2n4J71ArZGgWC",
      "pubsub": null,
      "tpuQuic": "45.129.84.85:8002",
      "tpuVote": "45.129.84.85:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.129.84.85:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.129.84.85:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.112.231:8001",
      "gossip": "67.213.112.231:8000",
      "pubkey": "2nqzrhEdVEsrj1tzMZG7x1iai2xkaNmMDBDKw7YfEwjn",
      "pubsub": null,
      "tpuQuic": "67.213.112.231:8002",
      "tpuVote": "67.213.112.231:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.213.112.231:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.112.231:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "43.207.128.91:38001",
      "gossip": "43.207.128.91:38000",
      "pubkey": "As4TgbU9GNrzQWrv1NGNQyfWgtVR2EJGh3Kn5WDhfdWF",
      "pubsub": null,
      "tpuQuic": "43.207.128.91:38002",
      "tpuVote": "43.207.128.91:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "43.207.128.91:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "43.207.128.91:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "2.57.215.110:10002",
      "gossip": "2.57.215.110:8001",
      "pubkey": "6jkUqnXtHcahTkwwe3fZQw6XxbrYAqBrn97nfjLVPQiD",
      "pubsub": null,
      "tpuQuic": "2.57.215.110:10003",
      "tpuVote": "2.57.215.110:10005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "2.57.215.110:10010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "2.57.215.110:10004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.8:8001",
      "gossip": "64.130.33.8:8000",
      "pubkey": "4HQnj4uAZtfJG7j7LpSipAFhsqe5YpDmHXn3sCnJYTjs",
      "pubsub": null,
      "tpuQuic": "64.130.33.8:8002",
      "tpuVote": "64.130.33.8:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.33.8:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.8:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "92.205.34.57:8001",
      "gossip": "92.205.34.57:8000",
      "pubkey": "Gg87TpSBkcbAz7AQJJnzHdpCKyt3maYb6xQEYJpTqajK",
      "pubsub": null,
      "tpuQuic": "92.205.34.57:8002",
      "tpuVote": "92.205.34.57:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "92.205.34.57:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "92.205.34.57:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.202:8002",
      "gossip": "198.13.138.183:9000",
      "pubkey": "AY2zMkegC8ZWMGrueZjMc1CNR9yG5VCFg9DjfVRadkKB",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 1718981463,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "206.223.236.127:18001",
      "gossip": "206.223.236.127:18000",
      "pubkey": "Z6WfYbBKx2GoCDDHZVR7VToSEsLwLWx88ExfAUgTzmQ",
      "pubsub": null,
      "tpuQuic": "206.223.236.127:18002",
      "tpuVote": "206.223.236.127:18004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "206.223.236.127:18009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "206.223.236.127:18003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "191.44.100.12:8001",
      "gossip": "191.44.100.12:8000",
      "pubkey": "45nV48b7yMY1nozdzX8aBLjsickVWouSvwq4cHVYJ7sE",
      "pubsub": null,
      "tpuQuic": "191.44.100.12:8002",
      "tpuVote": "191.44.100.12:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "191.44.100.12:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "191.44.100.12:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.155:8001",
      "gossip": "202.8.11.155:8000",
      "pubkey": "FFakbeDZfmpamrWCCyuo6PaATTwsH7wjL35SvRPDqiA1",
      "pubsub": null,
      "tpuQuic": "202.8.11.155:8002",
      "tpuVote": "202.8.11.155:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.155:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.155:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.120:8002",
      "gossip": "64.130.57.120:8001",
      "pubkey": "5Cf4rTx5tHJpJei3YZdhwgVDFnAf26Z8BLnesi1ZWZ1Z",
      "pubsub": null,
      "tpuQuic": "64.130.57.120:8003",
      "tpuVote": "64.130.57.120:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.57.120:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.120:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "157.90.133.89:8000",
      "gossip": "157.90.133.89:8001",
      "pubkey": "4DgedZKgedbZVHppZuKF3noZjLKz5a8aUVE3KWosCTha",
      "pubsub": null,
      "tpuQuic": "157.90.133.89:8000",
      "tpuVote": "157.90.133.89:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "157.90.133.89:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "157.90.133.89:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "217.170.201.46:8002",
      "gossip": "217.170.201.46:8001",
      "pubkey": "FAkixgHNMk1pd4ymYQ5GRufQPz1oY4Mj19qFQesKmoDm",
      "pubsub": null,
      "tpuQuic": "217.170.201.46:8003",
      "tpuVote": "217.170.201.46:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "217.170.201.46:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "217.170.201.46:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.117:8003",
      "gossip": "64.130.50.117:8001",
      "pubkey": "DrdwmVHvRsPfTxr1y5oBm2tVGXiSm4onsP74CrJ2YT3w",
      "pubsub": null,
      "tpuQuic": "64.130.50.117:8037",
      "tpuVote": "64.130.50.117:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.117:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.117:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "157.90.199.33:8000",
      "gossip": "157.90.199.33:8001",
      "pubkey": "GqbQDtjr9BL7aD1VGgqEh8Q7acgQQ55iQA3FEVTdRgk4",
      "pubsub": null,
      "tpuQuic": "157.90.199.33:8002",
      "tpuVote": "157.90.199.33:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "157.90.199.33:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "157.90.199.33:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "138.226.224.70:8001",
      "gossip": "138.226.224.70:8000",
      "pubkey": "NV2M8veq9V3bkTyuRhY3VXpyB1X9eTcnFkNRuzrfYNw",
      "pubsub": null,
      "tpuQuic": "138.226.224.70:8002",
      "tpuVote": "138.226.224.70:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "138.226.224.70:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "138.226.224.70:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "177.54.159.89:10001",
      "gossip": "177.54.159.89:10000",
      "pubkey": "C37Z4audbSRjBHDZ7FsukiUjZGpYavFTBCeWXTy3GfDa",
      "pubsub": null,
      "tpuQuic": "177.54.159.89:10002",
      "tpuVote": "177.54.159.89:10004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "177.54.159.89:10009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "177.54.159.89:10003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "155.107.7.10:8001",
      "gossip": "155.107.7.10:8000",
      "pubkey": "62RkdZdovJYsRwhxQDcRujw1b2sF3UuFGEwbaUeBoWzt",
      "pubsub": null,
      "tpuQuic": "155.107.7.10:8002",
      "tpuVote": "155.107.7.10:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "155.107.7.10:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "155.107.7.10:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.40.185.199:8001",
      "gossip": "70.40.185.199:8000",
      "pubkey": "V2KLRPzYzKcYbpULASuRh5Cam9KkuVADfBwr7zsefoA",
      "pubsub": null,
      "tpuQuic": "70.40.185.199:8002",
      "tpuVote": "70.40.185.199:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "70.40.185.199:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.40.185.199:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.122:8002",
      "gossip": "64.130.42.122:8001",
      "pubkey": "GhnFJg2H9qnDYkUYcMKgYeA95FLFrM1bNkgXUN6o4JBV",
      "pubsub": null,
      "tpuQuic": "64.130.42.122:8010",
      "tpuVote": "64.130.42.122:8006",
      "version": "3.1.14",
      "clientId": "JitoLabs",
      "featureSet": 534737035,
      "serveRepair": "64.130.42.122:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.122:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "79.188.132.177:8000",
      "gossip": "79.188.132.177:8001",
      "pubkey": "7dtY1FBqnx2oz4ebzYSMFggecXBV7Fid1Raa3sMfkyTC",
      "pubsub": null,
      "tpuQuic": "79.188.132.177:8002",
      "tpuVote": "79.188.132.177:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "79.188.132.177:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "79.188.132.177:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.241.105:8002",
      "gossip": "204.16.241.105:8001",
      "pubkey": "EtmHrXrZHHiWfeC4j8hDWZKTJn5nPQMFWSQBsEeUNkkP",
      "pubsub": null,
      "tpuQuic": "204.16.241.105:8003",
      "tpuVote": "204.16.241.105:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.241.105:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.241.105:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.202.174:8002",
      "gossip": "208.115.202.174:8001",
      "pubkey": "GXxpeuhvpzCsbLnqsGzWoZq3TKq1zJ8pZHzkPeBo88Bw",
      "pubsub": null,
      "tpuQuic": "208.115.202.174:8003",
      "tpuVote": "208.115.202.174:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.202.174:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.202.174:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "23.252.121.146:8000",
      "gossip": "23.252.121.146:8001",
      "pubkey": "86qwWfy5X5T1kkC7WmQ4dRHRFXPYk4NFVgKBRp1e8tfv",
      "pubsub": null,
      "tpuQuic": "23.252.121.146:8002",
      "tpuVote": "23.252.121.146:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "23.252.121.146:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.252.121.146:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.123.3:38001",
      "gossip": "67.213.123.3:38000",
      "pubkey": "7iHWAh4onpEVkdZnFuQkrZjJ3QCHALcHynwE3VdnjfCi",
      "pubsub": null,
      "tpuQuic": "67.213.123.3:38002",
      "tpuVote": "67.213.123.3:38004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "67.213.123.3:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.123.3:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.217.154:8002",
      "gossip": "141.98.217.154:8001",
      "pubkey": "96kG1fHzjSQAVy5KufpSZuZAqsL4qnHYABaaLXmbXpNv",
      "pubsub": null,
      "tpuQuic": "141.98.217.154:8003",
      "tpuVote": "141.98.217.154:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.217.154:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.217.154:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.162.57:8001",
      "gossip": "63.254.162.57:8000",
      "pubkey": "9GEHqc2oDwNJdVN55fG2yw7RvLUFTWhzzDqLhpo86GEm",
      "pubsub": null,
      "tpuQuic": "63.254.162.57:8002",
      "tpuVote": "63.254.162.57:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "63.254.162.57:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.162.57:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "188.241.53.21:8001",
      "gossip": "45.250.25.158:8000",
      "pubkey": "BcMt9LAhP4W4e6GgyiSPssEZJBuvW1wve4TzwSZHvbg",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "37.27.110.107:8002",
      "gossip": "37.27.110.107:8001",
      "pubkey": "GQP1hU74ytkwDWg3AeuZyjeSPEXAiKtjNxp4LBzuwmVE",
      "pubsub": null,
      "tpuQuic": "37.27.110.107:8003",
      "tpuVote": "37.27.110.107:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "37.27.110.107:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "37.27.110.107:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.158:8002",
      "gossip": "64.130.37.158:8001",
      "pubkey": "76qeZWd1CtPtsjpED3mCimgs4gJADDnH2yoDf5p7KP75",
      "pubsub": null,
      "tpuQuic": "64.130.37.158:8003",
      "tpuVote": "64.130.37.158:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.158:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.158:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.19.103.67:25001",
      "gossip": "162.19.103.67:25000",
      "pubkey": "CunrHuYjrHHH1Xq8JHpqz7YW3MKW41vTdsmadpVzw1CH",
      "pubsub": null,
      "tpuQuic": "162.19.103.67:25002",
      "tpuVote": "162.19.103.67:25004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "162.19.103.67:25009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.103.67:25003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "159.54.161.24:8001",
      "pubkey": "HUa5jFDH1w26ayY3pkXgyuC4iF8h3rhpoX9jMLVsUs6t",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.101:8001",
      "gossip": "84.32.103.101:8000",
      "pubkey": "dK3Uzcu7ZrxpS5QtmiYfJ2HMzPY7YcjiWJGFSd85utd",
      "pubsub": null,
      "tpuQuic": "84.32.103.101:8002",
      "tpuVote": "84.32.103.101:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "84.32.103.101:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.101:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.241:8002",
      "gossip": "64.130.49.241:8001",
      "pubkey": "F3EikjXgJVfi6JHARZ255ws1N3dcaWtNKxbdKLojRcK3",
      "pubsub": null,
      "tpuQuic": "64.130.49.241:8003",
      "tpuVote": "64.130.49.241:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.49.241:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.241:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.80:8002",
      "gossip": "64.130.50.80:8001",
      "pubkey": "5RLtzad7j1hLLdKxvFdCLLtqxoCoiJq4nXGBDoo1cYUU",
      "pubsub": null,
      "tpuQuic": "64.130.50.80:8003",
      "tpuVote": "64.130.50.80:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.80:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.80:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.156:8002",
      "gossip": "64.130.42.156:8001",
      "pubkey": "9RNcsDDL9bVriYi8J2DzuxspbKy1DYv6rnMnbUqG7UF",
      "pubsub": null,
      "tpuQuic": "64.130.42.156:8003",
      "tpuVote": "64.130.42.156:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2193444917,
      "serveRepair": "64.130.42.156:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.156:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.69:8002",
      "gossip": "64.130.51.69:8001",
      "pubkey": "DQhhWaxSqBHJBESiptB1pR2q8xk7LxikwqDSsWXVEZeh",
      "pubsub": null,
      "tpuQuic": "64.130.51.69:8003",
      "tpuVote": "64.130.51.69:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.69:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.69:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.48.166:8002",
      "gossip": "64.31.48.166:8001",
      "pubkey": "2cms7gcByu1qidoWGJDeeJmMxofmNeDZuyTeVyPq66cC",
      "pubsub": null,
      "tpuQuic": "64.31.48.166:8003",
      "tpuVote": "64.31.48.166:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.48.166:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.48.166:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.58.71:8002",
      "gossip": "64.130.58.71:8001",
      "pubkey": "GEyUhM1p8R8eHf6vNqLkBRLxS2yvKLsUXMcZp27tCtjK",
      "pubsub": null,
      "tpuQuic": "64.130.58.71:8003",
      "tpuVote": "64.130.58.71:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.58.71:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.58.71:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.217.174:8002",
      "gossip": "141.98.217.174:8001",
      "pubkey": "FKjdUQt6ydTXHcBCeCEeirmWmg7AaDD6mR9xUyYzVEGR",
      "pubsub": null,
      "tpuQuic": "141.98.217.174:8003",
      "tpuVote": "141.98.217.174:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.217.174:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.217.174:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "77.42.112.114:8001",
      "gossip": "77.42.112.114:8000",
      "pubkey": "FUHUU469z358LWnBqnRsPDfJjvRdYvd35fTm1nQymmh9",
      "pubsub": null,
      "tpuQuic": "77.42.112.114:8002",
      "tpuVote": "77.42.112.114:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "77.42.112.114:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "77.42.112.114:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.247.23:8002",
      "gossip": "204.16.247.23:8001",
      "pubkey": "Brz8o9JM9nWxts1d7xi3fdgfiBo6pwFyVyYuTW5xn2gJ",
      "pubsub": null,
      "tpuQuic": "204.16.247.23:8010",
      "tpuVote": "204.16.247.23:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "204.16.247.23:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.247.23:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "117.52.250.41:8001",
      "gossip": "117.52.250.41:8000",
      "pubkey": "4qDnnHLi2trwAdtFwxCovXrS1LAtUwFmPV6TUsYT9Q4o",
      "pubsub": null,
      "tpuQuic": "117.52.250.41:8002",
      "tpuVote": "117.52.250.41:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "117.52.250.41:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "117.52.250.41:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.9:8002",
      "gossip": "64.130.37.9:8001",
      "pubkey": "DoCdmT7dTxvPv2ac4m87skQVW8yRhd8TRZ1E3xFVxqxp",
      "pubsub": null,
      "tpuQuic": "64.130.37.9:8003",
      "tpuVote": "64.130.37.9:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "64.130.37.9:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.9:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.146:8001",
      "gossip": "64.130.41.146:8000",
      "pubkey": "3d7SMggS2ruKrLPY4DGGGBo5SMbGsx3nhhCe1dJ2gMzr",
      "pubsub": null,
      "tpuQuic": "64.130.41.146:8002",
      "tpuVote": "64.130.41.146:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.41.146:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.146:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "146.0.229.229:8001",
      "gossip": "146.0.229.229:8000",
      "pubkey": "DKywukV86Jko7EB4pqVf3ZWtW1mw9P517maSAG28frJU",
      "pubsub": null,
      "tpuQuic": "146.0.229.229:8002",
      "tpuVote": "146.0.229.229:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "146.0.229.229:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.0.229.229:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.7:8002",
      "gossip": "51.68.133.51:8001",
      "pubkey": "H24qDm3ADzS5pXwSQbcRFevna7SLfPZhD22PTg2sy3BQ",
      "pubsub": null,
      "tpuQuic": "51.68.133.51:8003",
      "tpuVote": "51.68.133.51:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.133.51:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.133.51:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "138.226.224.68:8001",
      "gossip": "138.226.224.68:8000",
      "pubkey": "RPC2nrA1MV8SdjqkfxSEFiWU1feR4URCWBh5hNie5Dq",
      "pubsub": null,
      "tpuQuic": "138.226.224.68:8002",
      "tpuVote": "138.226.224.68:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "138.226.224.68:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "138.226.224.68:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.34.10:8002",
      "gossip": "64.130.34.10:8001",
      "pubkey": "omDCR83kxYKWj6e3jQc9PNVK4NcwqchMHNukiPdsGiT",
      "pubsub": null,
      "tpuQuic": "64.130.34.10:8003",
      "tpuVote": "64.130.34.10:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.34.10:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.34.10:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.50.32.5:8002",
      "gossip": "103.50.32.5:8001",
      "pubkey": "HTzaip9CA4su34PY8YXsu8enteXr8cxUUXdU3LnbhuF1",
      "pubsub": null,
      "tpuQuic": "103.50.32.5:8003",
      "tpuVote": "103.50.32.5:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 1670369118,
      "serveRepair": "103.50.32.5:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.50.32.5:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.58:8002",
      "gossip": "64.130.54.58:8001",
      "pubkey": "DuG7zTAMd81BJXhuTbwTtE76qVuA17qZpXghUUso1J6R",
      "pubsub": null,
      "tpuQuic": "64.130.54.58:8003",
      "tpuVote": "64.130.54.58:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.58:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.58:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.241.214:8002",
      "gossip": "204.16.241.214:8001",
      "pubkey": "9NYHBnAFSVDGuPWFtnbhYvNdfiG3xvHwH75jcHXqxHDM",
      "pubsub": null,
      "tpuQuic": "204.16.241.214:8003",
      "tpuVote": "204.16.241.214:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.241.214:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.241.214:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.116:8002",
      "gossip": "64.130.51.116:8001",
      "pubkey": "5KbyUDSiRNWEThRGg96YGXGiraSTypak4QpRUPTVh4NK",
      "pubsub": null,
      "tpuQuic": "64.130.51.116:8010",
      "tpuVote": "64.130.51.116:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "64.130.51.116:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.116:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.46.85:8001",
      "gossip": "64.130.46.85:8000",
      "pubkey": "BqKZxaLkcdCu8SyFEhFW7NtwWJsMpgxA3Me9NwkBxfhg",
      "pubsub": null,
      "tpuQuic": "64.130.46.85:8002",
      "tpuVote": "64.130.46.85:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.46.85:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.46.85:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.183:8002",
      "gossip": "64.130.32.183:8001",
      "pubkey": "9nLbPiuumpf8ry5NryhVoRoeU8N9dwVdL4r3Z1Nbs25i",
      "pubsub": null,
      "tpuQuic": "64.130.32.183:8003",
      "tpuVote": "64.130.32.183:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.183:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.183:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.14:8003",
      "gossip": "64.130.63.14:8001",
      "pubkey": "2YZtXyUWcSyg4fqMFCJ4ZbtDCFiSLPMxsFCdhcAHSY8A",
      "pubsub": null,
      "tpuQuic": "64.130.63.14:9007",
      "tpuVote": "64.130.63.14:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "64.130.63.14:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.14:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.251:8001",
      "gossip": "64.130.33.251:8000",
      "pubkey": "5DBASoHgvd1Nc93X5xA5GupNSAvCtmsqw7WdxyXZtAEE",
      "pubsub": null,
      "tpuQuic": "64.130.33.251:8002",
      "tpuVote": "64.130.33.251:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.33.251:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.251:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.219.171.125:8021",
      "gossip": "103.219.171.125:8001",
      "pubkey": "HsJp76qpiDF8KdBv2DpBJLhtrT2MdVoKy6i3bH4RTp24",
      "pubsub": null,
      "tpuQuic": "103.219.171.125:8022",
      "tpuVote": "103.219.171.125:8024",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.219.171.125:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.219.171.125:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.223.129:8002",
      "gossip": "208.115.223.129:8001",
      "pubkey": "JhDV4dd88izWVhTDEHqGbLsCsKMCyUJWzMqhQ3nA6hX",
      "pubsub": null,
      "tpuQuic": "208.115.223.129:8003",
      "tpuVote": "208.115.223.129:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.223.129:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.223.129:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.56:8001",
      "gossip": "64.130.41.56:8000",
      "pubkey": "EZmt21wMWCkzo9gL8HcERcxbMkiVk1xDAwBeg3ZYGS3N",
      "pubsub": null,
      "tpuQuic": "64.130.41.56:8002",
      "tpuVote": "64.130.41.56:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.41.56:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.56:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.243.91:8002",
      "gossip": "204.16.243.91:8001",
      "pubkey": "9f1hMJ1ogv3ZcuM4YUzFbJQjNpmpWrFAgUqbgN9Rqkch",
      "pubsub": null,
      "tpuQuic": "204.16.243.91:8003",
      "tpuVote": "204.16.243.91:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.243.91:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.243.91:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "43.167.252.67:8000",
      "gossip": "43.167.252.67:8020",
      "pubkey": "AmtbJwQLvjFNRkULb1P4u18WQqJVBodXxXu17i1bPT7y",
      "pubsub": null,
      "tpuQuic": "43.167.252.67:8001",
      "tpuVote": "43.167.252.67:8003",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "43.167.252.67:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "43.167.252.67:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.59:8001",
      "gossip": "198.13.134.59:8000",
      "pubkey": "EmjUpR4VrqQMniA5ss5ktEwRFJFQVrTQqBBfTZvsBe6K",
      "pubsub": null,
      "tpuQuic": "198.13.134.59:8002",
      "tpuVote": "198.13.134.59:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.59:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.59:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.144.245.202:8002",
      "gossip": "216.144.245.202:8001",
      "pubkey": "7A5Zf7DTSX91oBwZvcUmZWrxD7RrWy7nnzGLeYcAHotM",
      "pubsub": null,
      "tpuQuic": "216.144.245.202:8003",
      "tpuVote": "216.144.245.202:8005",
      "version": "4.1.0-beta.3",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "216.144.245.202:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.144.245.202:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.69:8003",
      "gossip": "64.130.44.69:8001",
      "pubkey": "AvfywuowjF4gvG1mwrowVtQQyahHRhPjvodd28DSW88C",
      "pubsub": null,
      "tpuQuic": "64.130.44.69:9007",
      "tpuVote": "64.130.44.69:9001",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 1429815730,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.69:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.8:8000",
      "gossip": "64.130.63.8:8001",
      "pubkey": "BhfuYBxMHV4kaJzMatKTQUZt7LadrRczr24NuwMMGbvq",
      "pubsub": null,
      "tpuQuic": "64.130.63.8:8002",
      "tpuVote": "64.130.63.8:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.63.8:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.8:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "139.162.158.144:8002",
      "gossip": "139.162.158.144:8001",
      "pubkey": "BMgRRspYysJvkLhhHzbLrEoQnjcDAQUiBtA3HM4KqRyJ",
      "pubsub": null,
      "tpuQuic": "139.162.158.144:8007",
      "tpuVote": null,
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 1670369118,
      "serveRepair": "139.162.158.144:8006",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "139.162.158.144:8008"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.248.254:8002",
      "gossip": "208.115.248.254:8001",
      "pubkey": "6YcVd17z8JBe1JATcUbsMLD1yZrRHCWwDCtQPrabuDKz",
      "pubsub": null,
      "tpuQuic": "208.115.248.254:8003",
      "tpuVote": "208.115.248.254:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.248.254:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.248.254:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.223.5:8002",
      "gossip": "208.115.223.5:8001",
      "pubkey": "J4HvVsjBFaTwsZHZSEHKKRmsoAGkw75Ad3XgJLJKpdZC",
      "pubsub": null,
      "tpuQuic": "208.115.223.5:8003",
      "tpuVote": "208.115.223.5:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "208.115.223.5:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.223.5:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.218.143:8001",
      "gossip": "141.98.218.143:8000",
      "pubkey": "5HA19Gt6dqXELyd8x5ua4Nd18b12LT7FGTbPE3HXVndM",
      "pubsub": null,
      "tpuQuic": "141.98.218.143:8002",
      "tpuVote": "141.98.218.143:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "141.98.218.143:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.218.143:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.162.64.142:8002",
      "gossip": "69.162.64.142:8001",
      "pubkey": "HtH2DT4pZdnoFeZiEH4ua69nvncAJkqVMYRR7EPoutNd",
      "pubsub": null,
      "tpuQuic": "69.162.64.142:8003",
      "tpuVote": "69.162.64.142:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "69.162.64.142:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.162.64.142:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.130.43.94:8001",
      "pubkey": "DGKFnRPcNXHDBZjVJhjeqffrakCdfMFjuwWcnvaCN127",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "3.1.11",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.54.153.244:8003",
      "gossip": "86.54.153.244:8001",
      "pubkey": "7P1rzCXMGULCDsv2yC2oz8eNosewPcegqPWNMjhNkgj7",
      "pubsub": null,
      "tpuQuic": "86.54.153.244:8037",
      "tpuVote": "86.54.153.244:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "86.54.153.244:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.54.153.244:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.117:8996",
      "gossip": "64.130.42.117:8995",
      "pubkey": "ESedCvkZBuxaKyucX4i2njppzka2NrPjdk7Kdw1uqmV6",
      "pubsub": null,
      "tpuQuic": "64.130.42.117:8997",
      "tpuVote": "64.130.42.117:8999",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.42.117:9004",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.117:8998"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.29.231:8002",
      "gossip": "64.31.29.231:8001",
      "pubkey": "965sydwENfUM31y9NiSBsHeVZnVELWQ3uJWCwUz8FFCK",
      "pubsub": null,
      "tpuQuic": "64.31.29.231:8003",
      "tpuVote": "64.31.29.231:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.29.231:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.29.231:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.37:8001",
      "gossip": "64.130.49.37:8000",
      "pubkey": "4WqzUJmpsgjd2MMNDxABSB7KTBiWYmMPzwKPvfFpsFSx",
      "pubsub": null,
      "tpuQuic": "64.130.49.37:8002",
      "tpuVote": "64.130.49.37:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.49.37:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.37:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.138.243:8002",
      "gossip": "198.13.138.243:8001",
      "pubkey": "3w33fowoR3wX8bdvLtcNkmV52CjdHBLPPsh62ZT6Zimu",
      "pubsub": null,
      "tpuQuic": "198.13.138.243:8003",
      "tpuVote": "198.13.138.243:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.138.243:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.138.243:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.230:8002",
      "gossip": "64.130.59.230:8001",
      "pubkey": "8nZhRJGhQBL8U6kEtvLJovXHydYyeicrQS6Tr6Rv6Hdb",
      "pubsub": null,
      "tpuQuic": "64.130.59.230:8003",
      "tpuVote": "64.130.59.230:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.230:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.230:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.126.31:8002",
      "gossip": "67.213.126.31:8001",
      "pubkey": "5oTgcZYAtpLrz2Fo6en59acxdNNXGyQLpHE7DKMABYbd",
      "pubsub": null,
      "tpuQuic": "67.213.126.31:8003",
      "tpuVote": "67.213.126.31:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "67.213.126.31:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.126.31:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "189.1.171.85:10001",
      "gossip": "189.1.171.85:10000",
      "pubkey": "49dKRBpqK1tv4Qx5Qt1XgYNkV7Ee9NqVZ2h1hFwaUD4W",
      "pubsub": null,
      "tpuQuic": "189.1.171.85:10002",
      "tpuVote": "189.1.171.85:10004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "189.1.171.85:10009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "189.1.171.85:10003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.162.102:8003",
      "gossip": "63.254.162.102:8001",
      "pubkey": "BunKTu4VHJb41Db46PwqdgRj6TkATu3Jb3Co7dtMAM7M",
      "pubsub": null,
      "tpuQuic": "63.254.162.102:9007",
      "tpuVote": "63.254.162.102:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "63.254.162.102:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.162.102:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.139:8002",
      "gossip": "51.38.67.31:8001",
      "pubkey": "4LRdtNCqzctYigHK6VepV5xrENubtFjVj3LkUpBtsr87",
      "pubsub": null,
      "tpuQuic": "51.38.67.31:8003",
      "tpuVote": "51.38.67.31:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.38.67.31:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.38.67.31:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.179:8002",
      "gossip": "64.130.57.179:8001",
      "pubkey": "9BYCZWYYgHiW8jtt3EzdH19vRJE8odXb5kGGLCWvCjrJ",
      "pubsub": null,
      "tpuQuic": "64.130.57.179:8010",
      "tpuVote": "64.130.57.179:8006",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "64.130.57.179:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.179:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.187.35.134:8000",
      "gossip": "5.187.35.134:8001",
      "pubkey": "6dgYUif2WzkLRggKR1zLtQBp6GL3Dt1gTBKLwv4Dz8bW",
      "pubsub": null,
      "tpuQuic": "5.187.35.134:8002",
      "tpuVote": "5.187.35.134:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.187.35.134:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.187.35.134:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.242.232:8002",
      "gossip": "204.16.242.232:8001",
      "pubkey": "DD8k2d6pnLasJq2sJpMLRYZ5T8pCMLzHmVPDUoxtLdP",
      "pubsub": null,
      "tpuQuic": "204.16.242.232:8003",
      "tpuVote": "204.16.242.232:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.242.232:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.242.232:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.82:8002",
      "gossip": "84.32.103.82:8001",
      "pubkey": "62cMkf8YetakTJzXWwJgmUDCVH1ALu6rj9zKETJSgcRb",
      "pubsub": null,
      "tpuQuic": "84.32.103.82:8003",
      "tpuVote": "84.32.103.82:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "84.32.103.82:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.82:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.76.98:8001",
      "gossip": "57.129.76.98:8000",
      "pubkey": "47ZGZBXjaTnRZqnf5K61m3KJBkf5mJKv5DLpxmSSAXGX",
      "pubsub": null,
      "tpuQuic": "57.129.76.98:11228",
      "tpuVote": "57.129.76.98:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "57.129.76.98:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.76.98:11229"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.113:8002",
      "gossip": "51.195.124.109:8001",
      "pubkey": "GQJ8XET7PhuoAuCAVchNPwteg6y4etQ3KhPd1sVrnZgm",
      "pubsub": null,
      "tpuQuic": "51.195.124.109:8003",
      "tpuVote": "51.195.124.109:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.195.124.109:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.195.124.109:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.8.106.241:8001",
      "gossip": "185.8.106.241:8000",
      "pubkey": "CwEkt2nMxRx78sDuqRxN4tnQK83MXbN86YgAV5CbQQBw",
      "pubsub": null,
      "tpuQuic": "185.8.106.241:8002",
      "tpuVote": "185.8.106.241:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.8.106.241:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.8.106.241:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.167:8001",
      "gossip": "64.130.43.167:8000",
      "pubkey": "HWpYA1Y3AJuSo9p3tFxb8gZv7BHwBHTgDQLCetdyrs9A",
      "pubsub": null,
      "tpuQuic": "64.130.43.167:8002",
      "tpuVote": "64.130.43.167:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.43.167:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.167:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "8.209.97.209:8001",
      "gossip": "8.209.97.209:8000",
      "pubkey": "6KjK6BwWYmZXvJxyToUoCi6YJ77e2v6fvbjvTpRR4ygo",
      "pubsub": null,
      "tpuQuic": "8.209.97.209:8003",
      "tpuVote": "8.209.97.209:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "8.209.97.209:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "8.209.97.209:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.51.143:8002",
      "gossip": "64.31.51.143:8001",
      "pubkey": "7KKiXo5z8wz5FJBZzz2mamdhrCYuc1JBQBchXgUdjbDm",
      "pubsub": null,
      "tpuQuic": "64.31.51.143:8003",
      "tpuVote": "64.31.51.143:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.51.143:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.51.143:8004"
    },
    {
      "rpc": "185.191.117.251:8899",
      "tpu": null,
      "tvu": "185.191.117.251:8000",
      "gossip": "185.191.117.251:8001",
      "pubkey": "GQfDwd19Wo4eWcndf36uynWr5ivMVwq8VLzswdXCszN3",
      "pubsub": "185.191.117.251:8900",
      "tpuQuic": "185.191.117.251:8009",
      "tpuVote": "185.191.117.251:8005",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "185.191.117.251:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.251:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "154.30.2.47:8001",
      "gossip": "154.30.2.47:8000",
      "pubkey": "8BLHZ5oniWNkDr2gCjDPZi5nAGucR2zMQiHtqYtaPWPw",
      "pubsub": null,
      "tpuQuic": "154.30.2.47:8002",
      "tpuVote": "154.30.2.47:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "154.30.2.47:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "154.30.2.47:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.244.74:8002",
      "gossip": "204.16.244.74:8001",
      "pubkey": "9bvaoKBGhmaYiidQnNnhRCW5HaiZNykmiqPoxrM6HXdW",
      "pubsub": null,
      "tpuQuic": "204.16.244.74:8010",
      "tpuVote": "204.16.244.74:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "204.16.244.74:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.244.74:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.152.160.204:5556",
      "gossip": "45.152.160.204:5555",
      "pubkey": "7o8oMi26Wf541YTEfTAqstnAnq9QR3v6YzwAjQYRtdWf",
      "pubsub": null,
      "tpuQuic": "45.152.160.204:5557",
      "tpuVote": "45.152.160.204:5559",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.152.160.204:5564",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.204:5558"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.34.255.192:8001",
      "gossip": "70.34.255.192:8000",
      "pubkey": "CQY7Va3CRCiwEw3ZEvdtZDzqK8A1ABnqq7Cte5zpGMnW",
      "pubsub": null,
      "tpuQuic": "70.34.255.192:8002",
      "tpuVote": "70.34.255.192:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "70.34.255.192:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.34.255.192:8003"
    },
    {
      "rpc": "185.26.8.227:8899",
      "tpu": null,
      "tvu": "185.26.8.227:8001",
      "gossip": "185.26.8.227:8000",
      "pubkey": "9SEN5BdqvsirA17y4p6am5sXwFr2VeoXoNQ2ZRpPi3r5",
      "pubsub": "185.26.8.227:8900",
      "tpuQuic": "185.26.8.227:8009",
      "tpuVote": "185.26.8.227:8005",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "185.26.8.227:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.8.227:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.132.34:8000",
      "gossip": "45.139.132.34:8001",
      "pubkey": "BphuGPdrC5EMSQwxZjWeg2eMfp58d9wqkWJuGjsEq77w",
      "pubsub": null,
      "tpuQuic": "45.139.132.34:8002",
      "tpuVote": "45.139.132.34:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.139.132.34:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.139.132.34:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.76:8001",
      "gossip": "198.13.130.76:8000",
      "pubkey": "6KyzQPoEQ7gXqTaHJE2iTxh1CeYZrYwi9GZhceyAr5S9",
      "pubsub": null,
      "tpuQuic": "198.13.130.76:8002",
      "tpuVote": "198.13.130.76:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.130.76:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.76:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.242.231:8002",
      "gossip": "204.16.242.231:8001",
      "pubkey": "9idVa33NqJxNvyL5yLiaVbUQukVuqw9osNH87zLRpBoK",
      "pubsub": null,
      "tpuQuic": "204.16.242.231:8003",
      "tpuVote": "204.16.242.231:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.242.231:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.242.231:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "63.254.161.53:8000",
      "pubkey": "68wzmh7Jg8JKBxBKSMt3G6UhNEfE24YE1eX76qCybqiM",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.55.4.216:8000",
      "gossip": "162.55.4.216:8001",
      "pubkey": "Bs38WbiBkqVTGTQzeVXXmMeMTwR8iMfk42kx4cgPJxJH",
      "pubsub": null,
      "tpuQuic": "162.55.4.216:8002",
      "tpuVote": "162.55.4.216:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "162.55.4.216:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.55.4.216:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "170.23.153.105:8001",
      "gossip": "170.23.153.105:8000",
      "pubkey": "FsVuxCMLa7s77njX4NiLnLYMTeka8vcbH3Sc28PvH9Ex",
      "pubsub": null,
      "tpuQuic": "170.23.153.105:8002",
      "tpuVote": "170.23.153.105:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "170.23.153.105:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "170.23.153.105:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.234.99:8002",
      "gossip": "208.115.234.99:8001",
      "pubkey": "26gqSSATTSy39odZUbDEV92PP5XdNDnUzwAHcb82doBK",
      "pubsub": null,
      "tpuQuic": "208.115.234.99:8003",
      "tpuVote": "208.115.234.99:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.234.99:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.234.99:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.187.191.245:8001",
      "gossip": "89.187.191.245:8000",
      "pubkey": "77dXqvsissfWwBpNvT8ygXkrdcWib2ve1zuoGSTqgrWM",
      "pubsub": null,
      "tpuQuic": "89.187.191.245:8002",
      "tpuVote": "89.187.191.245:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "89.187.191.245:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.187.191.245:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.196:8601",
      "gossip": "208.91.110.196:8600",
      "pubkey": "3333wJntRVjBEynSVpvQp5mTN6dBvtzPrCJhkTbaBBGx",
      "pubsub": null,
      "tpuQuic": "208.91.110.196:8602",
      "tpuVote": "208.91.110.196:8604",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "208.91.110.196:8609",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.196:8603"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.212:8002",
      "gossip": "64.130.32.212:8001",
      "pubkey": "AEHEHjnhH3h6e93QoWuDKRh7SsPCcDUAeD2xYWVx4QL9",
      "pubsub": null,
      "tpuQuic": "64.130.32.212:8003",
      "tpuVote": "64.130.32.212:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.212:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.212:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "67.209.52.26:7001",
      "pubkey": "39KSqoa1bf4r7A75Y9QyQwbBjXevmsWnxiQzHata9QVY",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.126.17:8002",
      "gossip": "67.213.126.17:8001",
      "pubkey": "bw2u4jP38LmZNaygDQprmjTyXDxmcHSYmLPTXJt56Ra",
      "pubsub": null,
      "tpuQuic": "67.213.126.17:8003",
      "tpuVote": "67.213.126.17:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.213.126.17:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.126.17:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.103.227:8000",
      "gossip": "84.32.103.227:8001",
      "pubkey": "AifommvgHJjR388C8QXUFobFKZLZMo4vfTGGT6f1EwAq",
      "pubsub": null,
      "tpuQuic": "84.32.103.227:8009",
      "tpuVote": "84.32.103.227:8005",
      "version": "3.1.8",
      "clientId": "AgaveBam",
      "featureSet": 1620780344,
      "serveRepair": "84.32.103.227:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.103.227:8010"
    },
    {
      "rpc": "23.92.177.75:21611",
      "tpu": null,
      "tvu": "23.92.177.75:11601",
      "gossip": "23.92.177.75:21610",
      "pubkey": "5gtF8SEFbgJp9pEh5vNXood7WL4yyV8xnymULKoz8rEE",
      "pubsub": "23.92.177.75:21612",
      "tpuQuic": "23.92.177.75:11602",
      "tpuVote": "23.92.177.75:11604",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "23.92.177.75:11609",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.92.177.75:11603"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.245.177:8002",
      "gossip": "204.16.245.177:8001",
      "pubkey": "avXQ3vowHgtuy6bgbua21L5xWpnns9AS1P6Ls67AtmF",
      "pubsub": null,
      "tpuQuic": "204.16.245.177:8003",
      "tpuVote": "204.16.245.177:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "204.16.245.177:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.245.177:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "217.79.254.70:8901",
      "gossip": "217.79.254.70:8900",
      "pubkey": "AHij58knzpjYpfHbgTHEt1CfCz2NeYsBguCrNeaPNBk2",
      "pubsub": null,
      "tpuQuic": "217.79.254.70:8902",
      "tpuVote": "217.79.254.70:8904",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "217.79.254.70:8909",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "217.79.254.70:8903"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.109.27:8002",
      "gossip": "208.91.109.27:8001",
      "pubkey": "2cRW63nqKxFRsER977hoZ8h2dMTK9MXyyK73nzGPWcJv",
      "pubsub": null,
      "tpuQuic": "208.91.109.27:8003",
      "tpuVote": "208.91.109.27:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.109.27:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.109.27:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.54.153.248:8003",
      "gossip": "86.54.153.248:8001",
      "pubkey": "Etc5eK8pgcTTi9BjXaCbTwfZW3kSPHqdNuZ6LAkjfQei",
      "pubsub": null,
      "tpuQuic": "86.54.153.248:8037",
      "tpuVote": "86.54.153.248:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "86.54.153.248:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.54.153.248:8037"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.10.167:8000",
      "gossip": "202.8.10.167:8001",
      "pubkey": "3rHip6DdGabuK3jwwY5Zi7TsSVaWZhkr1VPWSNLJbHmD",
      "pubsub": null,
      "tpuQuic": "202.8.10.167:8002",
      "tpuVote": "202.8.10.167:8004",
      "version": "4.1.0-rc.0",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "202.8.10.167:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.10.167:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.202:8002",
      "gossip": "198.13.138.183:9006",
      "pubkey": "EESWmryZBfr2XRug2bZny1MeYLv6GMhVtewxpfscsvoE",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 1718981463,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "84.32.176.14:8899",
      "tpu": null,
      "tvu": "84.32.176.14:8000",
      "gossip": "84.32.176.14:8901",
      "pubkey": "Abigm6vL6gNUqDV9MBorKgMnDa43y2ixxioHpQzh3deR",
      "pubsub": "84.32.176.14:8900",
      "tpuQuic": "84.32.176.14:8001",
      "tpuVote": "84.32.176.14:8003",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "84.32.176.14:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.176.14:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.104.107.76:8001",
      "gossip": "5.104.107.76:8000",
      "pubkey": "GckikM6okcSWv7SNij1HCcVnzoEXdat9yGj8U1CnhQsC",
      "pubsub": null,
      "tpuQuic": "5.104.107.76:8002",
      "tpuVote": "5.104.107.76:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "5.104.107.76:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.104.107.76:8003"
    },
    {
      "rpc": "18.184.155.77:8899",
      "tpu": null,
      "tvu": "18.184.155.77:8001",
      "gossip": "18.184.155.77:8000",
      "pubkey": "Ecg3evJ91wBep8byneWmC5ZPXhcPzGcCqHYMMbYPkyoY",
      "pubsub": "18.184.155.77:8900",
      "tpuQuic": "18.184.155.77:8002",
      "tpuVote": "18.184.155.77:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "18.184.155.77:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "18.184.155.77:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.138.76:8001",
      "gossip": "198.13.138.76:8000",
      "pubkey": "GVvrgKeRCwyoDB2TyK71roPV1fotN7RYZi67TY9uVMG7",
      "pubsub": null,
      "tpuQuic": "198.13.138.76:8002",
      "tpuVote": "198.13.138.76:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.138.76:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.138.76:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.111.181.2:15000",
      "gossip": "185.111.181.2:15001",
      "pubkey": "C64iePSm82P3ChEGu54M7iSCdyUi7tEs2NCrWg2bRLfs",
      "pubsub": null,
      "tpuQuic": "185.111.181.2:15002",
      "tpuVote": "185.111.181.2:15004",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "185.111.181.2:15008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.111.181.2:15003"
    },
    {
      "rpc": "64.130.40.20:8899",
      "tpu": null,
      "tvu": "64.130.40.20:8000",
      "gossip": "64.130.40.20:8001",
      "pubkey": "DiVJyrmNoJo1hCcLrQTu4RbGxJPZ7YJ2mRQQXrUJvjDh",
      "pubsub": "64.130.40.20:8900",
      "tpuQuic": "64.130.40.20:8002",
      "tpuVote": "64.130.40.20:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.40.20:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.20:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.209.178.39:8003",
      "gossip": "185.209.178.39:8001",
      "pubkey": "9XqVXrqHfpeNvQqHsWeSJgh9TFtZcsipbUjvMpcVQbmN",
      "pubsub": null,
      "tpuQuic": "185.209.178.39:9007",
      "tpuVote": "185.209.178.39:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "185.209.178.39:10008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.209.178.39:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.100:8001",
      "gossip": "64.130.61.100:8000",
      "pubkey": "8DcZxJeCVjk2oyRmDeExLUFGkyPAFWgjx16Fw98vRviV",
      "pubsub": null,
      "tpuQuic": "64.130.61.100:8002",
      "tpuVote": "64.130.61.100:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.61.100:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.100:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.42:8002",
      "gossip": "64.130.59.42:8001",
      "pubkey": "65FSXLx1dFxkhv5zrKsWE4eGVfmNL4FMGBGT2sBtMAoV",
      "pubsub": null,
      "tpuQuic": "64.130.59.42:8003",
      "tpuVote": "64.130.59.42:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.42:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.42:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.141:8031",
      "gossip": "64.130.32.141:8030",
      "pubkey": "6DLqGqb9ernUqmiGJEbiQWiLXP2t5HmccXCnWW3aQb14",
      "pubsub": null,
      "tpuQuic": "64.130.32.141:8032",
      "tpuVote": "64.130.32.141:8034",
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 203501648,
      "serveRepair": "64.130.32.141:8038",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.141:8033"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.50.32.120:8000",
      "gossip": "103.50.32.120:8001",
      "pubkey": "9Y7cditJxeCEqT1kkK84BLnspjia37Ef9gTpx5dqrBUD",
      "pubsub": null,
      "tpuQuic": "103.50.32.120:8002",
      "tpuVote": "103.50.32.120:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "103.50.32.120:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.50.32.120:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "80.240.29.43:8002",
      "gossip": "80.240.29.43:8001",
      "pubkey": "58BaSpyPsYE9U7yyK2dEeaoAsqxTDmDpfueGUg5H4uuC",
      "pubsub": null,
      "tpuQuic": "80.240.29.43:8003",
      "tpuVote": "80.240.29.43:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "80.240.29.43:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "80.240.29.43:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "116.126.141.30:9001",
      "gossip": "116.126.141.30:9000",
      "pubkey": "3tdSGMz3FNSBRSWtg3noNtKk83yXrJhFQJWFph3T2eVy",
      "pubsub": null,
      "tpuQuic": "116.126.141.30:9002",
      "tpuVote": "116.126.141.30:9004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "116.126.141.30:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "116.126.141.30:9003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.223.135:8002",
      "gossip": "208.115.223.135:8001",
      "pubkey": "J9RxBub4YLvVwjFKhHsG5KhbfX34FsdcJxRP9MwXRADG",
      "pubsub": null,
      "tpuQuic": "208.115.223.135:8003",
      "tpuVote": "208.115.223.135:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.223.135:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.223.135:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.211.225.44:8002",
      "gossip": "88.211.225.44:8001",
      "pubkey": "HR661Cxpk68ys8FeHoJ49wzSDC6XA5wWomg3xBB1U6JV",
      "pubsub": null,
      "tpuQuic": "88.211.225.44:8003",
      "tpuVote": "88.211.225.44:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "88.211.225.44:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.211.225.44:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "37.187.82.59:8002",
      "gossip": "37.187.82.59:8001",
      "pubkey": "6iGsHYBy9UKHNKRkadePXFeiqjyKzubpygNZvUdUHpyP",
      "pubsub": null,
      "tpuQuic": "37.187.82.59:8003",
      "tpuVote": "37.187.82.59:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "37.187.82.59:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "37.187.82.59:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.102:8002",
      "gossip": "208.91.110.102:8001",
      "pubkey": "5gLR4ZpvfEJKfGLVLWBKp72GfPZxpi8nryKYLcoDv9d2",
      "pubsub": null,
      "tpuQuic": "208.91.110.102:8003",
      "tpuVote": "208.91.110.102:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.102:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.102:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.172.51:8002",
      "gossip": "63.254.172.51:8001",
      "pubkey": "3QSUzRz361M9P34UP9AgZUmNNsTz7C9gdMi4hHvP55To",
      "pubsub": null,
      "tpuQuic": "63.254.172.51:8003",
      "tpuVote": "63.254.172.51:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "63.254.172.51:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "63.254.172.51:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "81.19.216.130:8001",
      "gossip": "81.19.216.130:8000",
      "pubkey": "9jJ3YRBL611e7xjXFMBExuninmTWjDnv3FXNotHmPnK2",
      "pubsub": null,
      "tpuQuic": "81.19.216.130:8002",
      "tpuVote": "81.19.216.130:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "81.19.216.130:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "81.19.216.130:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.40.243:8003",
      "gossip": "64.130.40.243:8001",
      "pubkey": "FNEBYPW7NF8jn6bUygV83AWnrq7AjRhcyNmXbCbJJePw",
      "pubsub": null,
      "tpuQuic": "64.130.40.243:9007",
      "tpuVote": "64.130.40.243:9001",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 1668064299,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.243:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.163:8001",
      "gossip": "64.130.63.163:8000",
      "pubkey": "3RWNnEhuE5sQQDCTC7jJYiFLHSAwoTQtgV1ksqEBdJRB",
      "pubsub": null,
      "tpuQuic": "64.130.63.163:8002",
      "tpuVote": "64.130.63.163:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.63.163:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.163:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.32.153:8000",
      "gossip": "84.32.32.153:8001",
      "pubkey": "HXqREH28F4ZEkcBwxLiZyMdRhH7t2V688r9LkF832D65",
      "pubsub": null,
      "tpuQuic": "84.32.32.153:8002",
      "tpuVote": "84.32.32.153:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "84.32.32.153:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.32.153:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.64.183:8003",
      "gossip": "84.32.64.183:8001",
      "pubkey": "4yLjMBve5r8UWAWN5WLZT6EfKH4Xhw3ZjU9Bn65pP3VK",
      "pubsub": null,
      "tpuQuic": "84.32.64.183:9007",
      "tpuVote": "84.32.64.183:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "84.32.64.183:8909",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.64.183:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.62.26:8002",
      "gossip": "64.130.62.26:8001",
      "pubkey": "DshuL3uuGLPpEnXXYWeVDZEiPYthUK4Ejgx13Nb5qhRY",
      "pubsub": null,
      "tpuQuic": "64.130.62.26:8003",
      "tpuVote": "64.130.62.26:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.62.26:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.62.26:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.187.35.135:8001",
      "gossip": "5.187.35.135:8000",
      "pubkey": "EgHNp9TbntWHRdst3ViZ2ALoq9wjjmMk4EBm1eP59Xxq",
      "pubsub": null,
      "tpuQuic": "5.187.35.135:8002",
      "tpuVote": "5.187.35.135:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "5.187.35.135:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.187.35.135:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "209.195.8.149:8001",
      "gossip": "209.195.8.149:8000",
      "pubkey": "BeastwkmPSoJ4BRhhEuALPzeUSdpRM4ZpFrkSZbXSJAu",
      "pubsub": null,
      "tpuQuic": "209.195.8.149:8002",
      "tpuVote": "209.195.8.149:8004",
      "version": "4.0.0-rc.0",
      "clientId": "JitoLabs",
      "featureSet": 767961353,
      "serveRepair": "209.195.8.149:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "209.195.8.149:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "173.231.13.178:8001",
      "gossip": "173.231.13.178:8000",
      "pubkey": "5evizKJ7sfWN1fwL3EqPpaAC4TiQ9ee5GSs2WmFxSE7j",
      "pubsub": null,
      "tpuQuic": "173.231.13.178:8002",
      "tpuVote": "173.231.13.178:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "173.231.13.178:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "173.231.13.178:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.144.245.218:8002",
      "gossip": "216.144.245.218:8001",
      "pubkey": "CD6mF61TT78gSSmKTjVA7m7FZygZrvayyHifua1Dres5",
      "pubsub": null,
      "tpuQuic": "216.144.245.218:8003",
      "tpuVote": "216.144.245.218:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "216.144.245.218:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.144.245.218:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.62.228:8001",
      "gossip": "64.130.62.228:8000",
      "pubkey": "3DbFYfsAqte7FDxVY3GFg4CG4p4594j2RVqswY76bK5T",
      "pubsub": null,
      "tpuQuic": "64.130.62.228:8002",
      "tpuVote": "64.130.62.228:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.62.228:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.62.228:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.61.209.38:8001",
      "gossip": "5.61.209.38:8000",
      "pubkey": "3T4WVLWucfs8Xu5t3WwxvKGhjQU8wmXvK1pVG27uC8vg",
      "pubsub": null,
      "tpuQuic": "5.61.209.38:8002",
      "tpuVote": "5.61.209.38:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "5.61.209.38:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.61.209.38:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "194.48.217.40:8001",
      "gossip": "194.48.217.40:8000",
      "pubkey": "wWyN8Ky8erajxHprKsAzvQeqqJfsiv8GA5pkv8yrknw",
      "pubsub": null,
      "tpuQuic": "194.48.217.40:8002",
      "tpuVote": "194.48.217.40:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "194.48.217.40:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "194.48.217.40:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "178.63.165.125:8001",
      "gossip": "178.63.165.125:8000",
      "pubkey": "FsThkwfjtk7ecqLSVfbDdWuhUDtmThJFsXA6CdT8FxKm",
      "pubsub": null,
      "tpuQuic": "178.63.165.125:8002",
      "tpuVote": "178.63.165.125:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "178.63.165.125:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "178.63.165.125:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "217.182.88.89:8802",
      "gossip": "217.182.88.89:8801",
      "pubkey": "ENj3xh3mVG7WVn3y8Grz83iaZ59Pmtgm8FZthMa1zfxK",
      "pubsub": null,
      "tpuQuic": "217.182.88.89:8803",
      "tpuVote": "217.182.88.89:8805",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "217.182.88.89:8810",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "217.182.88.89:8804"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.61.209.213:8000",
      "gossip": "5.61.209.213:8001",
      "pubkey": "E6qEjtGeho5mPJ4vxtd34E792MwXNtKWpFNot2SCmroc",
      "pubsub": null,
      "tpuQuic": "5.61.209.213:8002",
      "tpuVote": "5.61.209.213:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "5.61.209.213:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.61.209.213:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.109:8002",
      "gossip": "64.130.42.109:8001",
      "pubkey": "HvvW4Ro2AeUzH6zsgpAZxVq5FDWrYVqB1aN5hFoUAyWq",
      "pubsub": null,
      "tpuQuic": "64.130.42.109:8003",
      "tpuVote": "64.130.42.109:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.109:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.109:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.173:8000",
      "gossip": "64.130.32.173:8001",
      "pubkey": "8LUdKSaA1KyvgXfnpxeJbaREb4Ct8YCH61LiEhnuiqSB",
      "pubsub": null,
      "tpuQuic": "64.130.32.173:8002",
      "tpuVote": "64.130.32.173:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.173:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.173:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "37.61.218.226:8001",
      "gossip": "37.61.218.226:8000",
      "pubkey": "ErZietq4j9LHJs2wawHyXEp8zMRjTYzdeE5FdPqLvkei",
      "pubsub": null,
      "tpuQuic": "37.61.218.226:8002",
      "tpuVote": "37.61.218.226:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "37.61.218.226:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "37.61.218.226:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "13.52.97.172:8000",
      "pubkey": "86Af6PUcT4W5k1SFWrCk6NwyhyDULHg4ULgp9HZ6AR6s",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.3.8",
      "clientId": "Agave",
      "featureSet": 0,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": "23.227.220.90:8895",
      "tpu": null,
      "tvu": "23.227.220.90:8002",
      "gossip": "23.227.220.90:8001",
      "pubkey": "GdRTyqq2MqL81463Md4QnWq4XkJqjvkRzAZc5GkksTFg",
      "pubsub": "23.227.220.90:8895",
      "tpuQuic": "23.227.220.90:8003",
      "tpuVote": "23.227.220.90:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "23.227.220.90:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.227.220.90:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.158.95.90:8001",
      "gossip": "216.158.95.90:8000",
      "pubkey": "2p9hWycMNshFooG1Xx8wer6UUH6pDSQ8aWYHenafnaiW",
      "pubsub": null,
      "tpuQuic": "216.158.95.90:8002",
      "tpuVote": "216.158.95.90:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.158.95.90:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.57:8002",
      "gossip": "64.31.54.57:8001",
      "pubkey": "CL8DHqP5YWrLc4gVg1Q5iabygoVvPK3rRDai4G1Yw4vJ",
      "pubsub": null,
      "tpuQuic": "64.31.54.57:8003",
      "tpuVote": "64.31.54.57:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.57:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.57:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "44.246.130.146:37001",
      "gossip": "44.246.130.146:37000",
      "pubkey": "DzCGx9acRLWg5mR8oZq3F9p8g5EFZdmpkRUfH6RXE32B",
      "pubsub": null,
      "tpuQuic": "44.246.130.146:37002",
      "tpuVote": "44.246.130.146:37004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "44.246.130.146:37009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "44.246.130.146:37003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "91.244.70.30:8201",
      "gossip": "91.244.70.30:8200",
      "pubkey": "BweDK1ihxsDwDGYG5J7zwVkbv331U1jTMAsjUCCWm8vf",
      "pubsub": null,
      "tpuQuic": "91.244.70.30:8202",
      "tpuVote": "91.244.70.30:8204",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "91.244.70.30:8209",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "91.244.70.30:8203"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.92:8002",
      "gossip": "51.89.25.68:8001",
      "pubkey": "ARa2ngNBPrtDHFhSTKtP1yjMKp91qdtsVv4GnPL5BGNt",
      "pubsub": null,
      "tpuQuic": "51.89.25.68:8003",
      "tpuVote": "51.89.25.68:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.68:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.68:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "40.160.26.29:8001",
      "gossip": "40.160.26.29:8000",
      "pubkey": "DE5R34EULuDHERUFYmG25hRBViZYiVHyfBcU8iYW7nEX",
      "pubsub": null,
      "tpuQuic": "40.160.26.29:8002",
      "tpuVote": "40.160.26.29:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "40.160.26.29:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "40.160.26.29:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.84:8002",
      "gossip": "51.89.25.28:8001",
      "pubkey": "GCM15TydXYPLd7WuPJ1tLWDp6NmczRsGhiK1DrMKAqHB",
      "pubsub": null,
      "tpuQuic": "51.89.25.28:8003",
      "tpuVote": "51.89.25.28:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.28:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.28:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.11:8001",
      "gossip": "64.130.61.11:8000",
      "pubkey": "AKRZHds9mLxTtTZHtCK93cp6Vy2gQWLcttFLAQaEU2re",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.105.53:8001",
      "gossip": "208.91.105.53:8000",
      "pubkey": "29ekeccs96dHMWe8RybGK61zviNTsDuMTjL1BseWTGn2",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.172:8002",
      "gossip": "64.130.50.172:8001",
      "pubkey": "FFkhPQ5wVf9qxBa6Zg5x5t1LJqsApVcbjKCMNNVsegvr",
      "pubsub": null,
      "tpuQuic": "64.130.50.172:8003",
      "tpuVote": "64.130.50.172:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.172:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.172:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.226.158:8002",
      "gossip": "208.115.226.158:8001",
      "pubkey": "7d7nmGwo2Ci8i1BusMZ6P8cEUjGKD1usU62Xaiut7got",
      "pubsub": null,
      "tpuQuic": "208.115.226.158:8003",
      "tpuVote": "208.115.226.158:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.115.226.158:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.226.158:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.140.47:8003",
      "gossip": "198.13.140.47:8001",
      "pubkey": "3R2bj8VgVq4kSn5VgXvKgbzqeTnbwKHMnSH7E5EfKrsp",
      "pubsub": null,
      "tpuQuic": "198.13.140.47:9007",
      "tpuVote": "198.13.140.47:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "198.13.140.47:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.47:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.181.205.149:8002",
      "gossip": "64.181.205.149:8001",
      "pubkey": "A58uugPvdEvZkGm5owtCVVtpsjBxPrsjeW3sFRZWw3zr",
      "pubsub": null,
      "tpuQuic": "64.181.205.149:8010",
      "tpuVote": "64.181.205.149:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "64.181.205.149:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.181.205.149:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.19.103.236:14001",
      "gossip": "162.19.103.236:14000",
      "pubkey": "DirRBjk5eq1pn5t7yNAQy28phti3Ac6emUQefJfTvqKP",
      "pubsub": null,
      "tpuQuic": "162.19.103.236:14002",
      "tpuVote": "162.19.103.236:14004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "162.19.103.236:14009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.103.236:14003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.112.63:8002",
      "gossip": "67.213.112.63:8001",
      "pubkey": "Raydiumm3w3a4nGanDBLkUtKxMFooSPmeg9qwUKMsMc",
      "pubsub": null,
      "tpuQuic": "67.213.112.63:8003",
      "tpuVote": "67.213.112.63:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.213.112.63:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.112.63:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.252:8002",
      "gossip": "64.130.63.252:8001",
      "pubkey": "Fc3ZeheokTpo6oAnQUnYqB6KWbafnHALRtr9SXX1FhrB",
      "pubsub": null,
      "tpuQuic": "64.130.63.252:8003",
      "tpuVote": "64.130.63.252:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.252:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.252:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.128.218.34:8001",
      "gossip": "45.128.218.34:8000",
      "pubkey": "BbU2r9WG5TG5DyYoyFWsWZKkZLVADiTt6Rm9gbWgHePh",
      "pubsub": null,
      "tpuQuic": "45.128.218.34:8002",
      "tpuVote": "45.128.218.34:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "45.128.218.34:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.128.218.34:8003"
    },
    {
      "rpc": "23.227.222.73:8895",
      "tpu": null,
      "tvu": "23.227.222.73:8002",
      "gossip": "23.227.222.73:8001",
      "pubkey": "ALt5DAjbX6NBLN6xAfV7xxeMqVVDQeNiNt3w3Wumxw4t",
      "pubsub": "23.227.222.73:8895",
      "tpuQuic": "23.227.222.73:8003",
      "tpuVote": "23.227.222.73:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "23.227.222.73:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "23.227.222.73:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.136:8002",
      "gossip": "64.130.51.136:8001",
      "pubkey": "Ffnf9LCFAfg5G8rtiAxWQJjQVtUJokWtp49x8LWoBBEe",
      "pubsub": null,
      "tpuQuic": "64.130.51.136:8003",
      "tpuVote": "64.130.51.136:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.136:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.136:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.118.202:9100",
      "gossip": "185.191.118.202:8001",
      "pubkey": "96mG2jY9t5GBtxSmCDKoPLiaRLFizBqvYxGUp6efyXty",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": "185.191.118.202:9103",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "185.191.118.202:9108",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.11.202:8002",
      "gossip": "202.8.11.202:8001",
      "pubkey": "6jQZnEhMi2bFXT5Sx7iFbDmg4MnFuVhkJxY7s5mXYS4S",
      "pubsub": null,
      "tpuQuic": "202.8.11.202:8003",
      "tpuVote": "202.8.11.202:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "202.8.11.202:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.11.202:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.124:8001",
      "gossip": "198.13.130.124:8000",
      "pubkey": "2kmTLZ84TcZFc5G8rv3MnkgQipfP44vGqs8kLJY6vtkb",
      "pubsub": null,
      "tpuQuic": "198.13.130.124:8002",
      "tpuVote": "198.13.130.124:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.124:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.124:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.181:8002",
      "gossip": "64.130.42.181:8001",
      "pubkey": "mce1wLhL38KeLgaxNmpgFUipKySJwChtsCqbfbuqBi1",
      "pubsub": null,
      "tpuQuic": "64.130.42.181:8003",
      "tpuVote": "64.130.42.181:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "64.130.42.181:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.181:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "18.236.76.91:37001",
      "gossip": "18.236.76.91:37000",
      "pubkey": "55ACvu83GyqytpaCiV2JPjFMvdeUAFupP3rkKf5MzXZF",
      "pubsub": null,
      "tpuQuic": "18.236.76.91:37002",
      "tpuVote": "18.236.76.91:37004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "18.236.76.91:37009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "18.236.76.91:37003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.225.111:8002",
      "gossip": "74.63.225.111:8001",
      "pubkey": "8Y53bvUeXSEDXYdtvTgtrYQ4AWBnKw7HaS5ffPrkSNA",
      "pubsub": null,
      "tpuQuic": "74.63.225.111:8003",
      "tpuVote": "74.63.225.111:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.225.111:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.225.111:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.134.108.61:8001",
      "gossip": "45.134.108.61:8002",
      "pubkey": "HKAs8v4yLypcLtgdyBNNcWa6tRo2T1RERrBu43ZJURFg",
      "pubsub": null,
      "tpuQuic": "45.134.108.61:8003",
      "tpuVote": "45.134.108.61:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "45.134.108.61:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.134.108.61:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "54.78.211.159:38001",
      "gossip": "54.78.211.159:38000",
      "pubkey": "6LSDAyspKYna15VUY374CDesrNtzCL4yVWYJSYdYnJkv",
      "pubsub": null,
      "tpuQuic": "54.78.211.159:38002",
      "tpuVote": "54.78.211.159:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "54.78.211.159:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.78.211.159:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.166:8003",
      "gossip": "64.130.42.166:8001",
      "pubkey": "coY6Z8q4YeruLPNia2uMW1LbkpWKHdtYRQieEWhyLJy",
      "pubsub": null,
      "tpuQuic": "64.130.42.166:9007",
      "tpuVote": "64.130.42.166:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "64.130.42.166:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.166:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.48.174:8002",
      "gossip": "64.31.48.174:8001",
      "pubkey": "4LBmjiGBULNu9BLpR7xe9eeVQUMp22nMJ99UqMowqyxA",
      "pubsub": null,
      "tpuQuic": "64.31.48.174:8003",
      "tpuVote": "64.31.48.174:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.48.174:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.48.174:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.129.84.74:8001",
      "gossip": "45.129.84.74:8000",
      "pubkey": "AKaecaMiiUgBNW6cpXtas6sV8GeMoQVWfHzKQrY5Yhrj",
      "pubsub": null,
      "tpuQuic": "45.129.84.74:8009",
      "tpuVote": "45.129.84.74:8005",
      "version": "2.3.6",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "45.129.84.74:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.129.84.74:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.52.195:8002",
      "gossip": "64.130.52.195:8001",
      "pubkey": "7e8oFzR8uAPF9R7Rub43QzBJwWKJquHhHnhN9Yvvb3y",
      "pubsub": null,
      "tpuQuic": "64.130.52.195:8003",
      "tpuVote": "64.130.52.195:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.52.195:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.52.195:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.254.128.160:8000",
      "gossip": "47.254.128.160:8001",
      "pubkey": "3HeVmqWd5BsKVAMifJAEWEhPrme3sdRU6ni8UNz1eTZy",
      "pubsub": null,
      "tpuQuic": "47.254.128.160:8002",
      "tpuVote": "47.254.128.160:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "47.254.128.160:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "47.254.128.160:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.225.113:8002",
      "gossip": "74.63.225.113:8001",
      "pubkey": "3ZAi98c5StLckA9MZ4GdeX9HSns3LB1F6ZVkqq1kngoX",
      "pubsub": null,
      "tpuQuic": "74.63.225.113:8003",
      "tpuVote": "74.63.225.113:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.225.113:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.225.113:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "66.42.68.193:8001",
      "gossip": "66.42.68.193:8000",
      "pubkey": "DEV9B8dDSV6it7AF2h5rzpuFyFM15DRSSUMP8MGQmrR2",
      "pubsub": null,
      "tpuQuic": "66.42.68.193:8002",
      "tpuVote": "66.42.68.193:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "66.42.68.193:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "66.42.68.193:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "54.227.177.233:38001",
      "gossip": "54.227.177.233:38000",
      "pubkey": "BkUz2hbCTadQHnHLzjWjxpf7Mn6rhMTAr49n2UDLeu5d",
      "pubsub": null,
      "tpuQuic": "54.227.177.233:38002",
      "tpuVote": "54.227.177.233:38004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "54.227.177.233:38009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.227.177.233:38003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.247:8001",
      "gossip": "64.130.33.247:8000",
      "pubkey": "GSUjeQPcp6jBjee2BjqdfwfZzRzNPmfgcRYgbds8A5sQ",
      "pubsub": null,
      "tpuQuic": "64.130.33.247:8002",
      "tpuVote": "64.130.33.247:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.33.247:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.247:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.29.18:8002",
      "gossip": "64.31.29.18:8001",
      "pubkey": "7o2ByDGLDyT6AJ29TbHj9YHfMAjJo8upvE4hAonTAoS4",
      "pubsub": null,
      "tpuQuic": "64.31.29.18:8003",
      "tpuVote": "64.31.29.18:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.29.18:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.29.18:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "149.130.223.208:8001",
      "pubkey": "FdypUWgRM4eZNc5Scrb7pSHvWBKnG46PLyjC5EBoZqa4",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.30:8001",
      "gossip": "64.130.44.30:8000",
      "pubkey": "EM2Km6c5kXnJDWJiqami14S5PtqPzveN3LpwbDCLknSV",
      "pubsub": null,
      "tpuQuic": "64.130.44.30:8002",
      "tpuVote": "64.130.44.30:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "64.130.44.30:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.30:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.36.183:8002",
      "gossip": "64.130.36.183:8001",
      "pubkey": "BnkiQczidysxcctEAtpkGc8QMpAe9sZFw6aqhrPjUom",
      "pubsub": null,
      "tpuQuic": "64.130.36.183:8003",
      "tpuVote": "64.130.36.183:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2090621868,
      "serveRepair": "64.130.36.183:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.36.183:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "44.243.164.101:37001",
      "gossip": "44.243.164.101:37000",
      "pubkey": "6Nqv7wuaQMjxHtczPL1PNY7JX4Cg9XmagBYdDKD8akfo",
      "pubsub": null,
      "tpuQuic": "44.243.164.101:37002",
      "tpuVote": "44.243.164.101:37004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "44.243.164.101:37009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "44.243.164.101:37003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.105.224.10:8001",
      "gossip": "86.105.224.10:8000",
      "pubkey": "6merdeXdwGq9d4nnPYxtSd4p7qTy4MVwphJKUgBtu3F8",
      "pubsub": null,
      "tpuQuic": "86.105.224.10:8002",
      "tpuVote": "86.105.224.10:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "86.105.224.10:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.105.224.10:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.224.215:8002",
      "gossip": "208.115.224.215:8001",
      "pubkey": "AYDiD8nDwH1bgexDWfjk816QA5phMnX7yWcfsDzUNYmi",
      "pubsub": null,
      "tpuQuic": "208.115.224.215:8003",
      "tpuVote": "208.115.224.215:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.224.215:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.224.215:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.244.253.100:8002",
      "gossip": "198.244.253.100:8001",
      "pubkey": "2z1H4k7KRGhbZT5FnMdcS1fuW4E2pUdd57QQKUWtG4kL",
      "pubsub": null,
      "tpuQuic": "198.244.253.100:8003",
      "tpuVote": "198.244.253.100:8005",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.244.253.100:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.244.253.100:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.139.133.235:8001",
      "gossip": "45.139.133.235:8000",
      "pubkey": "HGpAsUNbEw7pdXvsBdyxPGSR4yGzNqXpvE75r164g7P8",
      "pubsub": null,
      "tpuQuic": "45.139.133.235:8002",
      "tpuVote": "45.139.133.235:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "45.139.133.235:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.139.133.235:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.225.145:8002",
      "gossip": "74.63.225.145:8001",
      "pubkey": "CD8haKfwEmLqPAo96KiDSnuXcGyJAMqvuhZVMzpLrZ2T",
      "pubsub": null,
      "tpuQuic": "74.63.225.145:8003",
      "tpuVote": "74.63.225.145:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.225.145:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.225.145:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.81:8002",
      "gossip": "51.89.24.65:8001",
      "pubkey": "2HVwrysExBFX2sZ5mCsBf1FJGDbH8SjyWpT8Jt1qJ9hg",
      "pubsub": null,
      "tpuQuic": "51.89.24.65:8003",
      "tpuVote": "51.89.24.65:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.24.65:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.24.65:8004"
    },
    {
      "rpc": "164.152.160.212:8897",
      "tpu": null,
      "tvu": "164.152.160.212:8002",
      "gossip": "164.152.160.212:8001",
      "pubkey": "wvdUzhrVUq64rmRNpo5mB5GKuZGABq9ZiDmkb9ho2vH",
      "pubsub": "164.152.160.212:8898",
      "tpuQuic": "164.152.160.212:8003",
      "tpuVote": "164.152.160.212:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "164.152.160.212:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "164.152.160.212:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.242:8000",
      "gossip": "185.191.117.242:8001",
      "pubkey": "C4GPsnbdyaX7Ejs9Pp5Qd5Yz3No1mXzLNgmSvMj76paM",
      "pubsub": null,
      "tpuQuic": "185.191.117.242:8002",
      "tpuVote": "185.191.117.242:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.242:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.242:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.113:8002",
      "gossip": "64.130.50.113:8001",
      "pubkey": "HXsooVPCXeVFR4tdvVC2tb5tNwB4esw1mn4phwzGZUja",
      "pubsub": null,
      "tpuQuic": "64.130.50.113:8003",
      "tpuVote": "64.130.50.113:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.113:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.113:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.43.41:8002",
      "gossip": "64.130.43.41:8001",
      "pubkey": "ArJPfDnSXsaxhs2cPcTg7MRm8VHnTYa39L6yPrzhJYNL",
      "pubsub": null,
      "tpuQuic": "64.130.43.41:8003",
      "tpuVote": "64.130.43.41:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.43.41:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.43.41:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.177:8002",
      "gossip": "64.130.37.177:8001",
      "pubkey": "2GfpLDgiS5XZSoLdwzBhVToVuHeSPoCQJMDe1UhJwtwT",
      "pubsub": null,
      "tpuQuic": "64.130.37.177:8003",
      "tpuVote": "64.130.37.177:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.177:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.177:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.116:7892",
      "gossip": "64.130.37.116:8001",
      "pubkey": "C54JdqUALE84yZWK1Ch54uMLy5ve2GrSiKt8HX61tpz8",
      "pubsub": null,
      "tpuQuic": "64.130.37.116:9007",
      "tpuVote": "64.130.37.116:9001",
      "version": "0.1.1",
      "clientId": "Firedancer",
      "featureSet": 1668064299,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.116:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.144.245.115:8002",
      "gossip": "216.144.245.115:8001",
      "pubkey": "EDqyQgj51FtgbDrsvhXLZhYyQotmxAZPgqqL267mpD38",
      "pubsub": null,
      "tpuQuic": "216.144.245.115:8003",
      "tpuVote": "216.144.245.115:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.144.245.115:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.144.245.115:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.185.210.129:8003",
      "gossip": "208.185.210.129:8002",
      "pubkey": "HZQKFYZdTpKS497oKZny9SHfRwydR8txy68PWEnScgng",
      "pubsub": null,
      "tpuQuic": "208.185.210.129:8004",
      "tpuVote": "208.185.210.129:8006",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.185.210.129:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.185.210.129:8005"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "45.154.33.48:8001",
      "gossip": "45.154.33.48:8000",
      "pubkey": "FhurrrSi4Dnp2XWdqCiU9P7Znn8tsbrZuknjPATyVuZT",
      "pubsub": null,
      "tpuQuic": "45.154.33.48:8002",
      "tpuVote": "45.154.33.48:8004",
      "version": "4.1.0-rc.0",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "45.154.33.48:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.154.33.48:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.101:8002",
      "gossip": "51.89.25.153:8001",
      "pubkey": "ty9N9GQzMEfXwMJCUKEhqyyRRQPUN3kjQCYRsM3BNyP",
      "pubsub": null,
      "tpuQuic": "51.89.25.153:8003",
      "tpuVote": "51.89.25.153:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.25.153:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.25.153:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "69.67.148.139:8021",
      "gossip": "69.67.148.139:8001",
      "pubkey": "42P9zMb7Pt7s3dgVSVHYwd17FWA5msXYpYJ4ZjWMsN6H",
      "pubsub": null,
      "tpuQuic": "69.67.148.139:8022",
      "tpuVote": "69.67.148.139:8024",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "69.67.148.139:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "69.67.148.139:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.54.143:8002",
      "gossip": "67.209.54.143:8001",
      "pubkey": "J6kLH95K9CHNKdMg6VCj6teRsLYWtmyu7SLMMhg5uRzr",
      "pubsub": null,
      "tpuQuic": "67.209.54.143:8003",
      "tpuVote": "67.209.54.143:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "67.209.54.143:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.54.143:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.5:8002",
      "gossip": "51.68.133.49:8001",
      "pubkey": "BviLuPjRcVrKhWxVpT5rpgtnnHqJzueyisPuXWpsCbqZ",
      "pubsub": null,
      "tpuQuic": "51.68.133.49:8003",
      "tpuVote": "51.68.133.49:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.68.133.49:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.68.133.49:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.138.82:9001",
      "gossip": "198.13.138.82:9000",
      "pubkey": "7dWGsiYbf7JmCijULMYLgwzD7ugNz9k2hGJgvBJNc9E8",
      "pubsub": null,
      "tpuQuic": "198.13.138.82:9002",
      "tpuVote": "198.13.138.82:9004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "198.13.138.82:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.138.82:9003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "72.46.85.237:8001",
      "gossip": "72.46.85.237:8000",
      "pubkey": "7Ts2DPtAiH7hMkv8u7tYSTpeo2q8iNUEBaY64WDDuaXu",
      "pubsub": null,
      "tpuQuic": "72.46.85.237:8002",
      "tpuVote": "72.46.85.237:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "72.46.85.237:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "72.46.85.237:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.80.225:8001",
      "gossip": "64.34.80.225:8000",
      "pubkey": "HMZgcVjJJPTAWbQVoN1VB6muQV7Xd3pPtzrYhGUchc35",
      "pubsub": null,
      "tpuQuic": "64.34.80.225:8009",
      "tpuVote": "64.34.80.225:8005",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "64.34.80.225:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.80.225:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.69:8002",
      "gossip": "64.130.61.69:8001",
      "pubkey": "FCXqCrMRhcYTmXg3mNVQ2RgBiem25RHin1tfFbieStx9",
      "pubsub": null,
      "tpuQuic": "64.130.61.69:8003",
      "tpuVote": "64.130.61.69:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.61.69:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.69:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.179:8002",
      "gossip": "64.130.42.179:8001",
      "pubkey": "mcs1ajYdFVahoQuhPx3PHuGKxKakBHfhW7ddsVjusPj",
      "pubsub": null,
      "tpuQuic": "64.130.42.179:8003",
      "tpuVote": "64.130.42.179:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.179:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.179:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.79:8002",
      "gossip": "51.89.19.255:8001",
      "pubkey": "GmyZjVszmtxr7Djf6e3xU7coZssrXJvmbiiDrQ653XKg",
      "pubsub": null,
      "tpuQuic": "51.89.19.255:8003",
      "tpuVote": "51.89.19.255:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.19.255:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.19.255:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.143:8002",
      "gossip": "67.213.121.143:8001",
      "pubkey": "3YiQ4yTVZAPxFT2eYP7Y25er4vAa7hWFVGJ8xCqMTNtp",
      "pubsub": null,
      "tpuQuic": "67.213.121.143:8003",
      "tpuVote": "67.213.121.143:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "67.213.121.143:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.143:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.128:8002",
      "gossip": "145.239.233.180:8001",
      "pubkey": "CHFz3aFF9UVWPxUgqemTTozLcBFZK8zjgtm3JxXxQRNB",
      "pubsub": null,
      "tpuQuic": "145.239.233.180:8003",
      "tpuVote": "145.239.233.180:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "145.239.233.180:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "145.239.233.180:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.36.168:8001",
      "gossip": "64.130.36.168:8000",
      "pubkey": "FiN8k4HnDzE2zCVChNMc14Hbj14RmA5jVDu5j4iSxECW",
      "pubsub": null,
      "tpuQuic": "64.130.36.168:8002",
      "tpuVote": "64.130.36.168:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.36.168:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.36.168:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "162.19.222.170:8021",
      "gossip": "162.19.222.170:8001",
      "pubkey": "8mJcKYF3b2emscFWr7SDSYT27QcQX7RP38fsAe1F88HY",
      "pubsub": null,
      "tpuQuic": "162.19.222.170:8022",
      "tpuVote": "162.19.222.170:8024",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "162.19.222.170:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.222.170:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.49.120:8002",
      "gossip": "64.130.49.120:8001",
      "pubkey": "56vSo3VUVsCqiKow9J2ZY7RWnHg5qrBDEbrvbd1VMzRa",
      "pubsub": null,
      "tpuQuic": "64.130.49.120:8003",
      "tpuVote": "64.130.49.120:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.49.120:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.49.120:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.110.241:8002",
      "gossip": "208.91.110.241:8001",
      "pubkey": "2MbDyCRjFiodgU7qNRQ8AF3NLcnF3GsZ2k4sQyBA97K8",
      "pubsub": null,
      "tpuQuic": "208.91.110.241:8003",
      "tpuVote": "208.91.110.241:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.110.241:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.110.241:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.118.142.69:8002",
      "gossip": "74.118.142.69:8001",
      "pubkey": "7X4KgjqPCq7dEQ9JnCXRKMeDMrWMe1VLEZx6Qt9nR1xg",
      "pubsub": null,
      "tpuQuic": "74.118.142.69:8003",
      "tpuVote": "74.118.142.69:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "74.118.142.69:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.118.142.69:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "160.202.128.113:8001",
      "gossip": "160.202.128.113:8000",
      "pubkey": "941K8M6s77zXkvGzsVAohBXFRJmpS2sE5wk2Cx1hnZXm",
      "pubsub": null,
      "tpuQuic": "160.202.128.113:8002",
      "tpuVote": "160.202.128.113:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "160.202.128.113:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "160.202.128.113:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.39.109:8002",
      "gossip": "64.31.39.109:8001",
      "pubkey": "F8ewCqebDEvDTrdmfbP65aT9LBwxW5PcZBdgDMTLWzRi",
      "pubsub": null,
      "tpuQuic": "64.31.39.109:8003",
      "tpuVote": "64.31.39.109:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.39.109:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.39.109:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "160.202.131.177:8021",
      "gossip": "160.202.131.177:8001",
      "pubkey": "3Dx2hv9Z15zAbJ8yzYHdNsQHY22MFPmd3b1QUZgsxmy5",
      "pubsub": null,
      "tpuQuic": "160.202.131.177:8022",
      "tpuVote": "160.202.131.177:8024",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "160.202.131.177:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "160.202.131.177:8023"
    },
    {
      "rpc": "45.152.160.99:8899",
      "tpu": null,
      "tvu": "45.152.160.99:8001",
      "gossip": "45.152.160.99:8000",
      "pubkey": "6bAD3adRor1KufdxvAqrFZYsq5i2mxCxJqzfTJiDJLvf",
      "pubsub": "45.152.160.99:8900",
      "tpuQuic": "45.152.160.99:8002",
      "tpuVote": "45.152.160.99:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "45.152.160.99:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "45.152.160.99:8003"
    },
    {
      "rpc": "57.129.144.117:8899",
      "tpu": null,
      "tvu": "57.129.144.117:8003",
      "gossip": "57.129.144.117:8001",
      "pubkey": "FNCP9nE5BYTdp2ziP1s5JDCV1nFhryo1NmRzFPj6iyN4",
      "pubsub": "57.129.144.117:8900",
      "tpuQuic": "57.129.144.117:9007",
      "tpuVote": "57.129.144.117:9001",
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "57.129.144.117:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.144.117:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "74.118.140.110:7002",
      "pubkey": "6Z4tr5ei3RFHZc7dXVWrYvLZLyQA7QDB3CLAxA5AXvmy",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.116.173:8000",
      "gossip": "185.191.116.173:8001",
      "pubkey": "4EPJ37oVqXZFnufimzGodkSshPhEjYNFQokMZsYvabBK",
      "pubsub": null,
      "tpuQuic": "185.191.116.173:8002",
      "tpuVote": "185.191.116.173:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.191.116.173:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.116.173:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.186.137:8002",
      "gossip": "84.32.186.137:8001",
      "pubkey": "6SjkfdNfAWnSazc5HGAyvpfYXF4ChwME2X8LvGrbqmrp",
      "pubsub": null,
      "tpuQuic": "84.32.186.137:8003",
      "tpuVote": "84.32.186.137:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "84.32.186.137:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.186.137:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.53.35:8002",
      "gossip": "64.130.53.35:8001",
      "pubkey": "DaSjQHbTt4zTNk1uajEJ6GqNL6jBosZDeDBHWoELDYtN",
      "pubsub": null,
      "tpuQuic": "64.130.53.35:8010",
      "tpuVote": "64.130.53.35:8006",
      "version": "3.1.8",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "64.130.53.35:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.53.35:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.169:8100",
      "gossip": "185.191.117.169:8001",
      "pubkey": "68z6Be4P9AFjr7EFfRhh2PafvjgLkdjj5aDk1j8UB7a5",
      "pubsub": null,
      "tpuQuic": "185.191.117.169:8101",
      "tpuVote": "185.191.117.169:8103",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "185.191.117.169:8107",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.169:8102"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.134:8002",
      "gossip": "162.19.167.138:8001",
      "pubkey": "6zFc8nFtyH8xkcpeb6sxYvKjDGFr7bRj7n7vNSYaidq8",
      "pubsub": null,
      "tpuQuic": "162.19.167.138:8003",
      "tpuVote": "162.19.167.138:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "162.19.167.138:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "162.19.167.138:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.46:8001",
      "gossip": "198.13.130.46:8000",
      "pubkey": "EYPNANgoKvTGHrGLgTahZHobE1uh9uaLhpQVDi4AyqrC",
      "pubsub": null,
      "tpuQuic": "198.13.130.46:8002",
      "tpuVote": "198.13.130.46:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.130.46:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.46:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.73:8002",
      "gossip": "51.89.18.33:8001",
      "pubkey": "57aYN8X3Foh7p7EGAjEjdiuF5p8FKMy8WTjoh8KGKKdC",
      "pubsub": null,
      "tpuQuic": "51.89.18.33:8003",
      "tpuVote": "51.89.18.33:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.18.33:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.18.33:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "70.34.252.244:8001",
      "gossip": "70.34.252.244:8000",
      "pubkey": "FZYtex3Etw4ZnPHQ3xcSSka43qv522qC9vipE4XydvN5",
      "pubsub": null,
      "tpuQuic": "70.34.252.244:8002",
      "tpuVote": "70.34.252.244:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "70.34.252.244:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "70.34.252.244:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.117.239:8001",
      "gossip": "67.213.117.239:8000",
      "pubkey": "5M3fLeyZUeaQ2VYqM1cyuWhtiBTHtho5pG6LiFL61dHu",
      "pubsub": null,
      "tpuQuic": "67.213.117.239:8002",
      "tpuVote": "67.213.117.239:8004",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "67.213.117.239:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.117.239:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.50.32.99:8002",
      "gossip": "103.50.32.99:8001",
      "pubkey": "8G3qBVRjwfNX4FfEKrCmsLgGAUWQqSe2wsDCYbeW9QLF",
      "pubsub": null,
      "tpuQuic": "103.50.32.99:8003",
      "tpuVote": "103.50.32.99:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "103.50.32.99:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.50.32.99:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.131:8002",
      "gossip": "208.115.227.131:8001",
      "pubkey": "847NCCrC4u75fpa87xfgWQsqThh4UnqRqDQeann4hmtf",
      "pubsub": null,
      "tpuQuic": "208.115.227.131:8003",
      "tpuVote": "208.115.227.131:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.131:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.131:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.109.164.230:8001",
      "gossip": "109.109.164.230:8000",
      "pubkey": "BjnccCqSbsuZseGrh7LeijitGiYUZzMkpBT6s2aKCoSu",
      "pubsub": null,
      "tpuQuic": "109.109.164.230:8002",
      "tpuVote": "109.109.164.230:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "109.109.164.230:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.109.164.230:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.87:8002",
      "gossip": "64.130.50.87:8001",
      "pubkey": "HQXW7Mci1T9srqXDKjFUzgrDtRTxTnRE8BcLvK9Ha3o9",
      "pubsub": null,
      "tpuQuic": "64.130.50.87:8010",
      "tpuVote": "64.130.50.87:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "64.130.50.87:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.87:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.219.8:8002",
      "gossip": "141.98.219.8:8001",
      "pubkey": "42FVM5v51NT1xNcP2iw9m2MbahVZg1EfyRdjWMJY6dyj",
      "pubsub": null,
      "tpuQuic": "141.98.219.8:8003",
      "tpuVote": "141.98.219.8:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.219.8:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.219.8:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.201.213:8002",
      "gossip": "208.115.201.213:8001",
      "pubkey": "CfL5ZMpp2riexD8xgBQFw4tqQbn8FH9MttacK95kzhW",
      "pubsub": null,
      "tpuQuic": "208.115.201.213:8003",
      "tpuVote": "208.115.201.213:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.201.213:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.201.213:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.16.245.4:8002",
      "gossip": "204.16.245.4:8001",
      "pubkey": "JCCythRXyG48YZ9KxWnxRnQm2Q8azn2SqxoyU1bgR7Wh",
      "pubsub": null,
      "tpuQuic": "204.16.245.4:8003",
      "tpuVote": "204.16.245.4:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "204.16.245.4:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.16.245.4:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.91.107.162:8002",
      "gossip": "208.91.107.162:8001",
      "pubkey": "5iz8inoVzhpeUuuXZbGENzR8Uww9yg2hLZ6kA6S5qJjn",
      "pubsub": null,
      "tpuQuic": "208.91.107.162:8003",
      "tpuVote": "208.91.107.162:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "208.91.107.162:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.91.107.162:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.59.41:8002",
      "gossip": "64.130.59.41:8001",
      "pubkey": "8jvo2GYE11EVsS4WeprLGTC75BMaBgDWerzb2Ccbg6Xp",
      "pubsub": null,
      "tpuQuic": "64.130.59.41:8003",
      "tpuVote": "64.130.59.41:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.59.41:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.59.41:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "154.30.2.44:8001",
      "gossip": "154.30.2.44:8000",
      "pubkey": "FDYWQqxAXze9P6BukzUC6qB5h2nCt77WFjYUdYL9JxPc",
      "pubsub": null,
      "tpuQuic": "154.30.2.44:8002",
      "tpuVote": "154.30.2.44:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "154.30.2.44:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "154.30.2.44:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.62.205:8002",
      "gossip": "64.130.62.205:8001",
      "pubkey": "E4QRXgmruCSmVDt6q8vh6N3NcBczm3UCf65KRB2Zdp5v",
      "pubsub": null,
      "tpuQuic": "64.130.62.205:8003",
      "tpuVote": "64.130.62.205:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.62.205:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.62.205:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.54.152.250:8003",
      "gossip": "86.54.152.250:8001",
      "pubkey": "6W4NoQGwgZPoKvSBCCwygRn45bZSwfhYCJqjKD36iRCs",
      "pubsub": null,
      "tpuQuic": "86.54.152.250:8037",
      "tpuVote": "86.54.152.250:8031",
      "version": "0.911.40002",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "86.54.152.250:8046",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.54.152.250:8037"
    },
    {
      "rpc": "164.152.163.126:8895",
      "tpu": null,
      "tvu": "164.152.163.126:8002",
      "gossip": "164.152.163.126:8001",
      "pubkey": "EpJuRrAAao77nv5FRi1wqnnjLVbruNzrptyyYprhP2zU",
      "pubsub": "164.152.163.126:8895",
      "tpuQuic": "164.152.163.126:8003",
      "tpuVote": "164.152.163.126:8005",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "164.152.163.126:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "164.152.163.126:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.54.45:8002",
      "gossip": "64.130.54.45:8001",
      "pubkey": "GXkcz6bCSeyQZ3chareewkq71Y7w2WWWr1kgqx9daAFz",
      "pubsub": null,
      "tpuQuic": "64.130.54.45:8003",
      "tpuVote": "64.130.54.45:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.54.45:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.54.45:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.54.121:8002",
      "gossip": "67.209.54.121:8001",
      "pubkey": "8CDGVHB8fon9k6dwGGySGdXCE3yKq1aWMLS1Q1j77wdd",
      "pubsub": null,
      "tpuQuic": "67.209.54.121:8010",
      "tpuVote": "67.209.54.121:8006",
      "version": "3.1.13",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "67.209.54.121:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.54.121:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.204.46.175:8001",
      "gossip": "15.204.46.175:8000",
      "pubkey": "G2o2CdtXq955Ahac6JChDbbCeYHu5PpCCfEUpUBoFzFC",
      "pubsub": null,
      "tpuQuic": "15.204.46.175:8002",
      "tpuVote": "15.204.46.175:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "15.204.46.175:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.204.46.175:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.21:8000",
      "gossip": "64.130.63.21:8001",
      "pubkey": "5jaHBhX39eEnDuCn8eAJMhJfggybrcdANWcWjH3HWXH1",
      "pubsub": null,
      "tpuQuic": "64.130.63.21:8630",
      "tpuVote": "64.130.63.21:8796",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.63.21:9005",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.21:8786"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "146.19.172.42:8001",
      "gossip": "146.19.172.42:9001",
      "pubkey": "ny2j5a9ZqXnc2RVZ8TJRK8BqU2GERpMQx15oR7nbcvt",
      "pubsub": null,
      "tpuQuic": "146.19.172.42:9008",
      "tpuVote": "146.19.172.42:9002",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "146.19.172.42:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "146.19.172.42:9008"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.47:8002",
      "gossip": "64.130.42.47:8001",
      "pubkey": "D8n2nPaiD2UiwgSzwtrGERfsVspTTFdnvTM2cQNt6jLe",
      "pubsub": null,
      "tpuQuic": "64.130.42.47:8003",
      "tpuVote": "64.130.42.47:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.47:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.47:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "130.162.45.141:8002",
      "gossip": "130.162.45.141:8001",
      "pubkey": "Ci4VAdN8pNq66Z8x1gWxk4xW5pWN17xMspn6JtZcftgD",
      "pubsub": null,
      "tpuQuic": "130.162.45.141:8010",
      "tpuVote": "130.162.45.141:8006",
      "version": "2.3.3",
      "clientId": "Agave",
      "featureSet": 3640012085,
      "serveRepair": "130.162.45.141:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "130.162.45.141:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "34.32.255.141:8001",
      "gossip": "34.32.255.141:8000",
      "pubkey": "e5hFiVmXbsW4W4zRH4xpjdqRop46vrs93mnj69sAwwU",
      "pubsub": null,
      "tpuQuic": "34.32.255.141:8002",
      "tpuVote": "34.32.255.141:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "34.32.255.141:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "34.32.255.141:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.141.34:8001",
      "gossip": "104.204.141.34:8000",
      "pubkey": "H3vcSN57zcDwbiEPXYf4GtH8ogsMVGxb9F4WzttDvGDD",
      "pubsub": null,
      "tpuQuic": "104.204.141.34:8002",
      "tpuVote": "104.204.141.34:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "104.204.141.34:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.141.34:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.71:8002",
      "gossip": "64.130.42.71:8001",
      "pubkey": "BBEyr6gLwDxXtWoYCvHN8RbSt7CSfy8Czgb9VogwNUWQ",
      "pubsub": null,
      "tpuQuic": "64.130.42.71:8003",
      "tpuVote": "64.130.42.71:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.71:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.71:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "160.202.131.233:8001",
      "gossip": "160.202.131.233:8000",
      "pubkey": "3DSyqgz6wNMhFkFKBRNKqXG8wvyQ8bJ4juSVmYds4Wqj",
      "pubsub": null,
      "tpuQuic": "160.202.131.233:8002",
      "tpuVote": "160.202.131.233:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "160.202.131.233:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "160.202.131.233:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.149:8002",
      "gossip": "64.130.41.149:8001",
      "pubkey": "ArQ5bTBZmmFaxN6w4Y5upsUcAxWoFsYfcWrp5Jzds5er",
      "pubsub": null,
      "tpuQuic": "64.130.41.149:8003",
      "tpuVote": "64.130.41.149:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.41.149:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.149:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.6.13.221:8001",
      "gossip": "185.6.13.221:8000",
      "pubkey": "CQRdJUwgkAErG4ymbpSKUcMjraxFSomnA7EVcgkighhX",
      "pubsub": null,
      "tpuQuic": "185.6.13.221:8002",
      "tpuVote": "185.6.13.221:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "185.6.13.221:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.6.13.221:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.54.45:8001",
      "gossip": "67.209.54.45:8000",
      "pubkey": "7JpY8HhrCH1H6vaFmjN7DkpUwAbaBn5XvUJKnNdzrjAR",
      "pubsub": null,
      "tpuQuic": "67.209.54.45:8002",
      "tpuVote": "67.209.54.45:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "67.209.54.45:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.54.45:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "82.197.162.54:8001",
      "gossip": "82.197.162.54:8000",
      "pubkey": "unsKMJTS35quYEBKyVJuayi5zQXH2D3DqoFEEYFXHtw",
      "pubsub": null,
      "tpuQuic": "82.197.162.54:8002",
      "tpuVote": "82.197.162.54:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "82.197.162.54:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "82.197.162.54:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "92.205.32.97:8001",
      "gossip": "92.205.32.97:8000",
      "pubkey": "CWdQ2R7nfKz1CWqimyJxp1SogJg6thKjbfADaXqKbdFL",
      "pubsub": null,
      "tpuQuic": "92.205.32.97:8002",
      "tpuVote": "92.205.32.97:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "92.205.32.97:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "92.205.32.97:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.61.68:8001",
      "gossip": "64.130.61.68:8000",
      "pubkey": "8kVxv5HpaTd4v1NRXCEaqfCtXrmo8sSjgVhfhEGHtyhs",
      "pubsub": null,
      "tpuQuic": "64.130.61.68:8002",
      "tpuVote": "64.130.61.68:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.61.68:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.61.68:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.209.52.230:8000",
      "gossip": "67.209.52.230:8001",
      "pubkey": "DXRVHQkTjCEgDUi9fkUBT8zYJ1thRBX8bpVeR7Dj2ECN",
      "pubsub": null,
      "tpuQuic": "67.209.52.230:8002",
      "tpuVote": "67.209.52.230:8004",
      "version": "4.1.0-rc.0",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "67.209.52.230:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.209.52.230:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.27:8002",
      "gossip": "64.130.63.27:8001",
      "pubkey": "8myV5gK1b1TJteBzoXMtSDyUPv9HjU4uvhXoheBwqBsH",
      "pubsub": null,
      "tpuQuic": "64.130.63.27:8003",
      "tpuVote": "64.130.63.27:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.27:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.27:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.128.229.40:8000",
      "gossip": "57.128.229.40:8001",
      "pubkey": "6oFkRdau1xDKCk7RTBKSYjmf3HYAH79sgX3XAzvrWjYj",
      "pubsub": null,
      "tpuQuic": "57.128.229.40:8002",
      "tpuVote": "57.128.229.40:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "57.128.229.40:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.128.229.40:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.227.127:8002",
      "gossip": "208.115.227.127:8001",
      "pubkey": "ARpMCfdusjAXGmXXT5d8dp1DaLRs9zqxTmmDzt2KTG7k",
      "pubsub": null,
      "tpuQuic": "208.115.227.127:8003",
      "tpuVote": "208.115.227.127:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.227.127:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.227.127:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "108.171.214.2:8801",
      "gossip": "108.171.214.2:8800",
      "pubkey": "tri1z9PER6SHRG9fByGMgriWSvX5Ne75cU47b3L8JJ5",
      "pubsub": null,
      "tpuQuic": "108.171.214.2:8802",
      "tpuVote": "108.171.214.2:8804",
      "version": "4.1.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3345198602,
      "serveRepair": "108.171.214.2:8808",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "108.171.214.2:8803"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.200:8001",
      "gossip": "64.130.37.200:8000",
      "pubkey": "4xG7RHgY5nrKpKL9W2py8i79Gg6PK2DvBRBaVxGhY9pi",
      "pubsub": null,
      "tpuQuic": "64.130.37.200:8002",
      "tpuVote": "64.130.37.200:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.37.200:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.200:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.118.110:8002",
      "gossip": "185.191.118.110:8001",
      "pubkey": "3xXJusKBrbY5duyyWLswkkDzgeNLnpwmSUba6BfCapnW",
      "pubsub": null,
      "tpuQuic": "185.191.118.110:8003",
      "tpuVote": "185.191.118.110:8005",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "185.191.118.110:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.118.110:8004"
    },
    {
      "rpc": "178.237.58.173:8899",
      "tpu": null,
      "tvu": "178.237.58.173:8001",
      "gossip": "178.237.58.173:8000",
      "pubkey": "Go9cW2yRqkZaGxiLNYKhESjfRXDxLYJ8Zkh7F1Mo9KDv",
      "pubsub": "178.237.58.173:8900",
      "tpuQuic": "178.237.58.173:8002",
      "tpuVote": "178.237.58.173:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "178.237.58.173:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "178.237.58.173:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.121.115:8000",
      "gossip": "67.213.121.115:8001",
      "pubkey": "2JJvf9RXEW6djAqZuWfajLkPsAw3Fz6ajQqmNeKAx3MB",
      "pubsub": null,
      "tpuQuic": "67.213.121.115:8002",
      "tpuVote": "67.213.121.115:8004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "67.213.121.115:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.121.115:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.86:8001",
      "gossip": "64.130.63.86:8000",
      "pubkey": "7dc5gKpghVnBHteBe23zvzhdQEjnRLDuKxj3pfm8xa9Y",
      "pubsub": null,
      "tpuQuic": "64.130.63.86:8002",
      "tpuVote": "64.130.63.86:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.86:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.86:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "57.129.76.167:8001",
      "gossip": "57.129.76.167:8000",
      "pubkey": "65K47fcj4AXtXQpmsJWu2sghEALpKm1XsMCQ4B96Afzp",
      "pubsub": null,
      "tpuQuic": "57.129.76.167:8002",
      "tpuVote": "57.129.76.167:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "57.129.76.167:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "57.129.76.167:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "74.63.225.101:8002",
      "gossip": "74.63.225.101:8001",
      "pubkey": "5tEKCugY7ZhF1X7h2BHMFdvMuSDHbxETrwKPBKuvzt3w",
      "pubsub": null,
      "tpuQuic": "74.63.225.101:8003",
      "tpuVote": "74.63.225.101:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "74.63.225.101:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "74.63.225.101:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "103.60.111.230:8000",
      "gossip": "103.60.111.230:8066",
      "pubkey": "CU4J884HtNQCqVCN1jaNaEdzEmhHB8A1YL9E1spghF1j",
      "pubsub": null,
      "tpuQuic": "103.60.111.230:8001",
      "tpuVote": "103.60.111.230:8003",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "103.60.111.230:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "103.60.111.230:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.66:8002",
      "gossip": "51.89.15.50:8001",
      "pubkey": "B2yXoHEahYwNYKui5SqvNcVt4VkZENjejT4nWzRC7ns5",
      "pubsub": null,
      "tpuQuic": "51.89.15.50:8003",
      "tpuVote": "51.89.15.50:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.15.50:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.15.50:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.74:8001",
      "gossip": "64.130.33.74:8000",
      "pubkey": "4xthCn4G5Ltv7yN88b2h9ute7zdvVU2amgpLxH2RS28c",
      "pubsub": null,
      "tpuQuic": "64.130.33.74:8002",
      "tpuVote": "64.130.33.74:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.33.74:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.74:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "13.217.30.107:8001",
      "gossip": "13.217.30.107:8000",
      "pubkey": "BsXgFGoKcHgAjvpRyQxPXQfksDvD88fE7vWS3ec6Ymgi",
      "pubsub": null,
      "tpuQuic": "13.217.30.107:8009",
      "tpuVote": "13.217.30.107:8005",
      "version": "3.1.14",
      "clientId": "Agave",
      "featureSet": 534737035,
      "serveRepair": "13.217.30.107:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "13.217.30.107:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.44.207.100:8001",
      "gossip": "185.44.207.100:8000",
      "pubkey": "DBLWvEg8Vpi5QUc4nB6X33Ge7kzce3b6NNjzHMBXaGGE",
      "pubsub": null,
      "tpuQuic": "185.44.207.100:8002",
      "tpuVote": "185.44.207.100:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "185.44.207.100:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.44.207.100:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.140.50:8003",
      "gossip": "198.13.140.50:8001",
      "pubkey": "4zFMeqfnqVTD1yArBK7xN5cS3wnZ19UA5vbhmHksLC6c",
      "pubsub": null,
      "tpuQuic": "198.13.140.50:9007",
      "tpuVote": "198.13.140.50:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "198.13.140.50:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.50:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "3.125.70.216:8000",
      "gossip": "3.125.70.216:8001",
      "pubkey": "4ScUU6PBc9MoenPmnsNRkx1q68NN7euSWF5TtjB19nUP",
      "pubsub": null,
      "tpuQuic": "3.125.70.216:8002",
      "tpuVote": "3.125.70.216:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "3.125.70.216:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "3.125.70.216:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "95.217.204.29:8001",
      "gossip": "95.217.204.29:8000",
      "pubkey": "3vtT24B5yfhadiEAhvWv8oCYQKaHC9XCt9nV1NVrVL18",
      "pubsub": null,
      "tpuQuic": "95.217.204.29:8002",
      "tpuVote": "95.217.204.29:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "95.217.204.29:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "95.217.204.29:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "47.239.198.150:8001",
      "gossip": "47.239.198.150:8000",
      "pubkey": "4sSypkCwQb4C75CB9znQJsDXd885Z7krfgu9uoaTHoww",
      "pubsub": null,
      "tpuQuic": "47.239.198.150:8002",
      "tpuVote": "47.239.198.150:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "47.239.198.150:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "47.239.198.150:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.32.50:8002",
      "gossip": "64.31.32.50:8001",
      "pubkey": "2tGL9gr1ju9DzfoXjUMVRQAbW4f9ktUbYPBNx6ky9xo9",
      "pubsub": null,
      "tpuQuic": "64.31.32.50:8003",
      "tpuVote": "64.31.32.50:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.32.50:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.32.50:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.97.103:8001",
      "gossip": "109.94.97.103:8000",
      "pubkey": "3NVQTVwHsJ4m9fsBSP9CJJVrEWS6LKbCcHPG7zzCSRm3",
      "pubsub": null,
      "tpuQuic": "109.94.97.103:8002",
      "tpuVote": "109.94.97.103:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.94.97.103:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.97.103:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.130.59.103:8001",
      "pubkey": "FNVhMm3TLhbyNySLUbacbPeXs26zQzifCTqNv1mUNZMD",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.140.9:8002",
      "gossip": "104.204.140.9:8001",
      "pubkey": "Bz4CcakzAsqEDNsgXnQxv5sS2DmAGZfBFna7iCdLyy89",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": "104.204.140.9:8005",
      "version": "4.1.0-beta.3",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "54.244.4.245:8000",
      "gossip": "54.244.4.245:8001",
      "pubkey": "8pLh1bdZyir9aBUsxVkaAoEZCFsoa9PQsx7U5MpagnSr",
      "pubsub": null,
      "tpuQuic": "54.244.4.245:8002",
      "tpuVote": "54.244.4.245:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "54.244.4.245:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "54.244.4.245:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "5.199.165.36:8001",
      "gossip": "5.199.165.36:8000",
      "pubkey": "EYV9dGdaTkxvk56oS3NME7DAGQKVgjWcdfCBrN3u3uSV",
      "pubsub": null,
      "tpuQuic": "5.199.165.36:8002",
      "tpuVote": "5.199.165.36:8004",
      "version": "4.0.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "5.199.165.36:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.199.165.36:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "45.152.160.114:7000",
      "pubkey": "5QVbytAAbtgRXTEm1LWV9jGi3gxXEVQraQToVuM1TYJZ",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "0.912.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.10.13:8001",
      "gossip": "202.8.10.13:8000",
      "pubkey": "2ZeLxR4uynhBD6Bx3EsKBBaKKtvDyxGxq96dZceYJeEW",
      "pubsub": null,
      "tpuQuic": "202.8.10.13:8002",
      "tpuVote": "202.8.10.13:8004",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "202.8.10.13:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.10.13:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.116.202:8000",
      "gossip": "185.191.116.202:8001",
      "pubkey": "EhWbQPdcFL2iiAcGE6tfWiRDk7MiexwBHEPqLsVGYgj5",
      "pubsub": null,
      "tpuQuic": "185.191.116.202:8009",
      "tpuVote": "185.191.116.202:8005",
      "version": "3.1.11",
      "clientId": "Agave",
      "featureSet": 4140108451,
      "serveRepair": "185.191.116.202:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.116.202:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "116.126.141.29:9001",
      "gossip": "116.126.141.29:9000",
      "pubkey": "51SfyEuXuHXzAPV5EWrnyrMJmWqCUWaLJ4jHBccMZCPV",
      "pubsub": null,
      "tpuQuic": "116.126.141.29:9002",
      "tpuVote": "116.126.141.29:9004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "116.126.141.29:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "116.126.141.29:9003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.140.171.18:8002",
      "gossip": "64.140.171.18:8001",
      "pubkey": "Ermfvp3hqRTvDg8LYLZrSZjKuoPwGFrm8sL96j9g8XJ9",
      "pubsub": null,
      "tpuQuic": "64.140.171.18:8003",
      "tpuVote": "64.140.171.18:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.140.171.18:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.140.171.18:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "13.229.65.226:8002",
      "gossip": "13.229.65.226:8001",
      "pubkey": "7aj2E7GYeDvkUvpjAFXbGbd4GhdwA1EQCESjDpk5dKGk",
      "pubsub": null,
      "tpuQuic": "13.229.65.226:8010",
      "tpuVote": "13.229.65.226:8006",
      "version": "3.1.9",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "13.229.65.226:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "13.229.65.226:8011"
    },
    {
      "rpc": "134.119.194.147:8899",
      "tpu": null,
      "tvu": "134.119.194.147:8001",
      "gossip": "134.119.194.147:8000",
      "pubkey": "ABf9SUho38xVvq77ZvtYUcakdyDPGoe3MatisocULHLB",
      "pubsub": "134.119.194.147:8900",
      "tpuQuic": "134.119.194.147:8002",
      "tpuVote": "134.119.194.147:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "134.119.194.147:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "134.119.194.147:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "88.216.222.137:8001",
      "gossip": "88.216.222.137:8000",
      "pubkey": "77V27FLyZu7k2XsG3YtKFV4EUnt3XhbYwE21AigKAzQM",
      "pubsub": null,
      "tpuQuic": "88.216.222.137:8002",
      "tpuVote": "88.216.222.137:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "88.216.222.137:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "88.216.222.137:8003"
    },
    {
      "rpc": "164.152.160.196:8895",
      "tpu": null,
      "tvu": "164.152.160.196:8002",
      "gossip": "164.152.160.196:8001",
      "pubkey": "CbqZPjqJnj9Dv9HrnhfxYNDxAkz9MqdNCc3KykSsSceW",
      "pubsub": "164.152.160.196:8895",
      "tpuQuic": "164.152.160.196:8004",
      "tpuVote": "164.152.160.196:8006",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "164.152.160.196:8011",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "164.152.160.196:8005"
    },
    {
      "rpc": "185.26.10.209:8899",
      "tpu": null,
      "tvu": "185.26.10.209:8001",
      "gossip": "185.26.10.209:8000",
      "pubkey": "H3p16WCia8hmoXUQCh92EdTj1Dh24a7X9khtT42Xqy1E",
      "pubsub": "185.26.10.209:8900",
      "tpuQuic": "185.26.10.209:8002",
      "tpuVote": "185.26.10.209:8004",
      "version": "4.0.2",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "185.26.10.209:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.26.10.209:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "4.2.51.254:8002",
      "gossip": "4.2.51.254:8001",
      "pubkey": "FKy2JxNztXmB44MAdWSe92kfbToKp8v4EWgWx7KwfuwE",
      "pubsub": null,
      "tpuQuic": "4.2.51.254:8010",
      "tpuVote": "4.2.51.254:8006",
      "version": "3.1.9",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "4.2.51.254:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "4.2.51.254:8011"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.99:8002",
      "gossip": "51.222.162.209:8001",
      "pubkey": "NKNfqU7syZHt9fnNWNDugmhw1Tq1riU5ZD521wzY9Ld",
      "pubsub": null,
      "tpuQuic": "51.222.162.209:8003",
      "tpuVote": "51.222.162.209:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.222.162.209:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.222.162.209:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "188.241.53.22:8001",
      "gossip": "45.250.25.158:8000",
      "pubkey": "4yeM5UY2Mnj1PkHRhiojgz7Jyfuo5zq9yL9tjjZxTgmC",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.246:8002",
      "gossip": "51.81.207.0:8001",
      "pubkey": "5Zb1w53e8qcAQBVwqhxy6Uj6Jehj6aWq6N63gpPMhNfp",
      "pubsub": null,
      "tpuQuic": "51.81.207.0:8003",
      "tpuVote": "51.81.207.0:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.81.207.0:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.81.207.0:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.117.112:8000",
      "gossip": "185.191.117.112:8001",
      "pubkey": "EL8nGnh2cxeVuHFKpkjoenCsNZavMGz7JMaWNge95SSV",
      "pubsub": null,
      "tpuQuic": "185.191.117.112:8002",
      "tpuVote": "185.191.117.112:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "185.191.117.112:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.117.112:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "188.241.53.19:8001",
      "gossip": "45.250.25.158:8000",
      "pubkey": "DUSZbLKspeeGdBoaGJ1NPP52DBzrp8u81jYSn2yTQe8m",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "188.241.53.17:8001",
      "gossip": "45.250.25.158:8000",
      "pubkey": "fsoNnQA5au6uZXuQ9PGzfDZhZs9xB1DA5JvmC9Rab95",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.99:8002",
      "gossip": "64.130.51.99:8001",
      "pubkey": "7gEQJLuP5q1PngAtXVbky9p62aT2cuw4iFioCgqqAB9k",
      "pubsub": null,
      "tpuQuic": "64.130.51.99:8003",
      "tpuVote": "64.130.51.99:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.99:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.99:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "204.11.50.179:8001",
      "gossip": "204.11.50.179:8000",
      "pubkey": "EVXLERft8WYEnazTLtXiN82mELinwvvYYsHP44GDfZpK",
      "pubsub": null,
      "tpuQuic": "204.11.50.179:8002",
      "tpuVote": "204.11.50.179:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "204.11.50.179:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "204.11.50.179:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.89.39:8001",
      "gossip": "64.34.89.39:8000",
      "pubkey": "25yw4KhPBEWkAgKvm6fr8Xxc1cReQYiWA1Buj4T4ToLp",
      "pubsub": null,
      "tpuQuic": "64.34.89.39:8002",
      "tpuVote": "64.34.89.39:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.34.89.39:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.89.39:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.164.20:8002",
      "gossip": "5.135.119.114:8001",
      "pubkey": "9FQJ7eGNbZRRgT28gxobmLBcCqaMpoNSCv1T8xghcK7x",
      "pubsub": null,
      "tpuQuic": "5.135.119.114:8003",
      "tpuVote": "5.135.119.114:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "5.135.119.114:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "5.135.119.114:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.196:8002",
      "gossip": "198.244.135.120:8001",
      "pubkey": "GsF5AUL1qX9ehxxkTt4DDCSBuWMNjZnDC119tKLi7nd8",
      "pubsub": null,
      "tpuQuic": "198.244.135.120:8003",
      "tpuVote": "198.244.135.120:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "198.244.135.120:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.244.135.120:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.38.10:8002",
      "gossip": "64.130.40.238:8001",
      "pubkey": "6ztwYq9rXnbyfBPMth5mFE5RdxQNeUVvjGCp8oWCMhMg",
      "pubsub": null,
      "tpuQuic": "64.130.40.238:8002",
      "tpuVote": "64.130.40.238:8004",
      "version": "4.0.0-rc.1",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "64.130.40.238:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.40.238:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.130.54.43:8001",
      "pubkey": "AU1xE7RU3cj5SHBjYKJd67RKQkR4ZKPTcCJwYKzpFXxq",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "141.98.217.183:8001",
      "gossip": "141.98.217.183:8000",
      "pubkey": "AFPMWCMCq7n3jbFVUU4LJS6YTSU9R5wnmtn1rJbFQeB4",
      "pubsub": null,
      "tpuQuic": "141.98.217.183:8002",
      "tpuVote": "141.98.217.183:8004",
      "version": "4.0.3",
      "clientId": "HarmonicAgave",
      "featureSet": 1878484565,
      "serveRepair": "141.98.217.183:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "141.98.217.183:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.41.132:8002",
      "gossip": "64.130.41.132:8001",
      "pubkey": "mcb6ue2aKzMGJmRc31Lf7J5wE86BsfQmDM38Jqy9r7M",
      "pubsub": null,
      "tpuQuic": "64.130.41.132:8003",
      "tpuVote": "64.130.41.132:8005",
      "version": "4.1.0-rc.0",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "64.130.41.132:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.41.132:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.51.249:8002",
      "gossip": "64.31.51.249:8001",
      "pubkey": "7tUoUxr2eerUex42Lij3aHDLh47fsFjP5zAsXQdvGyRv",
      "pubsub": null,
      "tpuQuic": "64.31.51.249:8003",
      "tpuVote": "64.31.51.249:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.51.249:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.51.249:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "52.207.226.238:8001",
      "gossip": "52.207.226.238:8000",
      "pubkey": "FpzhJ6K9Ya581ygoLdHRoutYaQR9jNZoZJt84FXGtD6F",
      "pubsub": null,
      "tpuQuic": "52.207.226.238:8009",
      "tpuVote": "52.207.226.238:8005",
      "version": "3.1.10",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "52.207.226.238:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "52.207.226.238:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.132:8001",
      "gossip": "64.130.37.132:8000",
      "pubkey": "3Mxrw1pj128s4Srjn7bAFjcaTX9Ym9jMbn38cBnXPRDg",
      "pubsub": null,
      "tpuQuic": "64.130.37.132:8002",
      "tpuVote": "64.130.37.132:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.132:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.132:8003"
    },
    {
      "rpc": "35.73.70.94:8080",
      "tpu": null,
      "tvu": "35.73.70.94:8000",
      "gossip": "35.73.70.94:8020",
      "pubkey": "8nGcHX6MWCxwMpp91ncsYoY2Wkh5Cs3gVWNMCnVpgBRU",
      "pubsub": "35.73.70.94:8081",
      "tpuQuic": "35.73.70.94:8001",
      "tpuVote": "35.73.70.94:8003",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "35.73.70.94:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "35.73.70.94:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.33.44:8002",
      "gossip": "64.130.33.44:8001",
      "pubkey": "6VosVABrnjmPULjR8AiWgpZXBbbQMPhgmTqnuqTBc21m",
      "pubsub": null,
      "tpuQuic": "64.130.33.44:8003",
      "tpuVote": "64.130.33.44:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.33.44:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.33.44:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "89.42.231.23:8000",
      "gossip": "89.42.231.23:8001",
      "pubkey": "DhLo6eLQRHrk5Zyk6hnP7rHdPZ4z3jXvgs16CnghYxxJ",
      "pubsub": null,
      "tpuQuic": "89.42.231.23:8002",
      "tpuVote": "89.42.231.23:8004",
      "version": "4.0.1",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "89.42.231.23:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "89.42.231.23:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.163.37:8001",
      "gossip": "63.254.163.37:8000",
      "pubkey": "ASihJr1b2ymgL4AXhcqB9LeYxSheAq2EiHu8gtjLYzKE",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.140.225:8001",
      "gossip": "198.13.140.225:8000",
      "pubkey": "7vigacc54ATsxmXbPphJdDQ5J65zXoXFAXgYCBhpktgX",
      "pubsub": null,
      "tpuQuic": "198.13.140.225:8002",
      "tpuVote": "198.13.140.225:8004",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2700650398,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.140.49:8003",
      "gossip": "198.13.140.49:8001",
      "pubkey": "3tXUf6Ai7JF6ifbaBwfbUckzEt41FCXC3LHoDk2Pf5WJ",
      "pubsub": null,
      "tpuQuic": "198.13.140.49:9007",
      "tpuVote": "198.13.140.49:9001",
      "version": "0.910.40000",
      "clientId": "Frankendancer",
      "featureSet": 3718597879,
      "serveRepair": "198.13.140.49:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.49:9007"
    },
    {
      "rpc": "198.13.133.80:8899",
      "tpu": null,
      "tvu": "198.13.133.80:8000",
      "gossip": "198.13.133.80:8901",
      "pubkey": "AaFekhZ7tPFGseBfmzW8Zn4pFGEQZRFQTQ6FXur7U8SS",
      "pubsub": "198.13.133.80:8900",
      "tpuQuic": "198.13.133.80:8001",
      "tpuVote": "198.13.133.80:8003",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.133.80:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.133.80:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.48:8002",
      "gossip": "198.13.134.48:8001",
      "pubkey": "5u9kqkWR9F9CPzAnKuEBvC5NACtJpSQDhvnMxvLTxF8A",
      "pubsub": null,
      "tpuQuic": "198.13.134.48:8003",
      "tpuVote": "198.13.134.48:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.48:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.48:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.210:8002",
      "gossip": "198.13.130.210:8001",
      "pubkey": "JBHJWZeJaqonXyEjtpi3eXB8n3BPX3k9P5iF4kspQVzV",
      "pubsub": null,
      "tpuQuic": "198.13.130.210:8003",
      "tpuVote": "198.13.130.210:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "198.13.130.210:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.210:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.130.108:8002",
      "gossip": "198.13.130.108:8001",
      "pubkey": "2AmMSgixCDPxYkNWVReV9G7R8egj1u2i8WYQECtaUdkS",
      "pubsub": null,
      "tpuQuic": "198.13.130.108:8003",
      "tpuVote": "198.13.130.108:8005",
      "version": "4.2.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 2534940944,
      "serveRepair": "198.13.130.108:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.130.108:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "84.32.186.109:8000",
      "gossip": "84.32.186.109:8051",
      "pubkey": "ApUXCWYZL3QAymUED8RmMimpvKPqxAQTDvfK7saLtgym",
      "pubsub": null,
      "tpuQuic": "84.32.186.109:8001",
      "tpuVote": "84.32.186.109:8003",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "84.32.186.109:8008",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "84.32.186.109:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.112.219:8002",
      "gossip": "67.213.112.219:8001",
      "pubkey": "GaRMqTNG6WePeehwvXhFdWi2HHGZrXMzVLHgyQ6YBYc9",
      "pubsub": null,
      "tpuQuic": "67.213.112.219:8003",
      "tpuVote": "67.213.112.219:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "67.213.112.219:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.112.219:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "138.226.224.69:8001",
      "gossip": "138.226.224.69:8000",
      "pubkey": "rox3CGJNiunnYWtPFoB7TK45oLnQkdEcU9qCjWQvRsC",
      "pubsub": null,
      "tpuQuic": "138.226.224.69:8002",
      "tpuVote": "138.226.224.69:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "138.226.224.69:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "138.226.224.69:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.110:8002",
      "gossip": "64.130.50.110:8001",
      "pubkey": "4NF5KH3HNBSNP7WJpPVV4kZ5BKvhkYycDgB66AC6szPY",
      "pubsub": null,
      "tpuQuic": "64.130.50.110:8003",
      "tpuVote": "64.130.50.110:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.110:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.110:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "95.217.60.160:8001",
      "gossip": "95.217.60.160:8000",
      "pubkey": "ED3bd3fv8LPrgS75hZT6iUypGmQsRHcmWMPQi3xLPHnK",
      "pubsub": null,
      "tpuQuic": "95.217.60.160:8009",
      "tpuVote": "95.217.60.160:8005",
      "version": "3.1.9",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": "95.217.60.160:8012",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "95.217.60.160:8010"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "67.213.112.243:8001",
      "gossip": "67.213.112.243:8000",
      "pubkey": "32Nwsx4nyGzbvsRJJPYgZ76Vay9gW6tvYxcomrpHAyHb",
      "pubsub": null,
      "tpuQuic": "67.213.112.243:8002",
      "tpuVote": "67.213.112.243:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "67.213.112.243:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "67.213.112.243:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.196:8002",
      "gossip": "64.130.42.196:8001",
      "pubkey": "3FQQFWKSoCtC7A9wAKkRNtCspCoJoGeu57o9KyrURzm4",
      "pubsub": null,
      "tpuQuic": "64.130.42.196:8003",
      "tpuVote": "64.130.42.196:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.196:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.196:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.34.80.119:8002",
      "gossip": "64.34.80.119:8001",
      "pubkey": "2rCt94Fqub5CoYJnMik1boRS32gsG7BcrL4xdEAoN53b",
      "pubsub": null,
      "tpuQuic": "64.34.80.119:8003",
      "tpuVote": "64.34.80.119:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.34.80.119:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.34.80.119:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.54.23:8002",
      "gossip": "64.31.54.23:8001",
      "pubkey": "jtK8WgQ8FKTfwafB71mSnFUpZNSVjX7gw8PriWhx6S4",
      "pubsub": null,
      "tpuQuic": "64.31.54.23:8003",
      "tpuVote": "64.31.54.23:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.54.23:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.54.23:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.42.197:8002",
      "gossip": "64.130.42.197:8001",
      "pubkey": "965xE25kfRxpgkXB6J3aXMnX35H5cmiqrMRkTQZtxV6d",
      "pubsub": null,
      "tpuQuic": "64.130.42.197:8003",
      "tpuVote": "64.130.42.197:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.42.197:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.42.197:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.104:8002",
      "gossip": "51.89.106.36:8001",
      "pubkey": "8DLRAEscwb2v5Bkw8Uc1QxxM4vY1DL6aYnwQ5hB8hvUv",
      "pubsub": null,
      "tpuQuic": "51.89.106.36:8003",
      "tpuVote": "51.89.106.36:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.106.36:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.106.36:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.44.117:8000",
      "gossip": "64.130.44.117:8001",
      "pubkey": "8xWVPnstPcmfeTRgCSm9Ptzdns87ztiQkg7THzaLbePp",
      "pubsub": null,
      "tpuQuic": "64.130.44.117:8002",
      "tpuVote": "64.130.44.117:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "64.130.44.117:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.44.117:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "86.105.224.63:8001",
      "gossip": "86.105.224.63:8000",
      "pubkey": "843disakq5uf9xi728gBfskRDfGTnFtQqcGKeGv7J6Ld",
      "pubsub": null,
      "tpuQuic": "86.105.224.63:8002",
      "tpuVote": "86.105.224.63:8004",
      "version": "4.0.0-rc.0",
      "clientId": "Agave",
      "featureSet": 767961353,
      "serveRepair": "86.105.224.63:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "86.105.224.63:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "107.155.125.198:8900",
      "gossip": "107.155.125.198:8001",
      "pubkey": "7WMHZ8qzcmG3GDrFHZmn3RgUPwVGuFGzjvoEaDBXvsQc",
      "pubsub": null,
      "tpuQuic": "107.155.125.198:8901",
      "tpuVote": "107.155.125.198:8903",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "107.155.125.198:8908",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "107.155.125.198:8902"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "15.235.117.97:8021",
      "gossip": "15.235.117.97:8001",
      "pubkey": "AwwkJR3CwbQdFUdX1SWyRjp3PBgu48q4JZM4VjPHwi2v",
      "pubsub": null,
      "tpuQuic": "15.235.117.97:8022",
      "tpuVote": "15.235.117.97:8024",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "15.235.117.97:8029",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "15.235.117.97:8023"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.28.110:8000",
      "gossip": "64.31.28.110:8801",
      "pubkey": "ASSfcK3rbKLM1g2NcoSfW8WHZvBYyd5U71zJgPGxwLjU",
      "pubsub": null,
      "tpuQuic": "64.31.28.110:8001",
      "tpuVote": "64.31.28.110:8003",
      "version": "4.1.0-beta.2",
      "clientId": "Agave",
      "featureSet": 713536442,
      "serveRepair": "64.31.28.110:8007",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.28.110:8002"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.32.46:8002",
      "gossip": "64.31.32.46:8001",
      "pubkey": "99CvjZTrbdNmDn2a5x4KqqATmWYMQtvPREjsf2X6e2R8",
      "pubsub": null,
      "tpuQuic": "64.31.32.46:8003",
      "tpuVote": "64.31.32.46:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.31.32.46:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.32.46:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.58:8001",
      "gossip": "198.13.134.58:8000",
      "pubkey": "38Q58nVUMgPf2sFpfSWrMvM9dAcVdKJ7Xwdp1ioULPNy",
      "pubsub": null,
      "tpuQuic": "198.13.134.58:8002",
      "tpuVote": "198.13.134.58:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "198.13.134.58:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.58:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "62.197.45.87:8005",
      "gossip": "62.197.45.87:8801",
      "pubkey": "9vRyAXCa8Sn7HsCFEbGY5mPYZmdfVe3jorMFa5KvqQp9",
      "pubsub": null,
      "tpuQuic": "62.197.45.87:8006",
      "tpuVote": "62.197.45.87:8008",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "62.197.45.87:8013",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "62.197.45.87:8007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.50.144:8002",
      "gossip": "64.130.50.144:8001",
      "pubkey": "CU1hbXJ1Ha23PTfasUZCQLgAAewHCwr3FmhYzhgbT442",
      "pubsub": null,
      "tpuQuic": "64.130.50.144:8003",
      "tpuVote": "64.130.50.144:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.50.144:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.50.144:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.140.77:8002",
      "gossip": "198.13.140.77:8001",
      "pubkey": "4KYa16cN33AZsjw3ys7TkPExffXpJaNkaZqvoLXmQtJt",
      "pubsub": null,
      "tpuQuic": "198.13.140.77:8003",
      "tpuVote": "198.13.140.77:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.140.77:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.140.77:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.37.159:8002",
      "gossip": "64.130.37.159:8001",
      "pubkey": "74oK6CLrBhPJBvdtxpEhpQdGwzFccPSUz1ahGUJt8GG8",
      "pubsub": null,
      "tpuQuic": "64.130.37.159:8003",
      "tpuVote": "64.130.37.159:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.37.159:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.37.159:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "185.191.118.101:8002",
      "gossip": "185.191.118.101:8001",
      "pubkey": "6xksbdJ458jn1cYGtNBbsy1QBkTCn95dzdNTNYNRnvGm",
      "pubsub": null,
      "tpuQuic": "185.191.118.101:8003",
      "tpuVote": "185.191.118.101:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "185.191.118.101:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "185.191.118.101:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "78.141.223.41:8001",
      "gossip": "78.141.223.41:8000",
      "pubkey": "4Nqqitry69hQCePhaJCgCdJfkbRUtGLHVLkjtcVUCnNf",
      "pubsub": null,
      "tpuQuic": "78.141.223.41:8002",
      "tpuVote": "78.141.223.41:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "78.141.223.41:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "78.141.223.41:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.57.216:11001",
      "gossip": "64.130.57.216:11000",
      "pubkey": "9vCshZ1uaSa1QKMuFqVHdwmL1aGMVM8n3D6R5AocU7DC",
      "pubsub": null,
      "tpuQuic": "64.130.57.216:11002",
      "tpuVote": "64.130.57.216:11004",
      "version": "4.0.0-beta.6",
      "clientId": "Agave",
      "featureSet": 2475355604,
      "serveRepair": "64.130.57.216:11009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.57.216:11003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "67.213.120.67:8000",
      "pubkey": "JCPyLaAm3AXCnuipX3qHY43jwN3Vv3oedGMPLfNLMRq7",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "3.1.10",
      "clientId": "Agave",
      "featureSet": 1620780344,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "208.115.223.1:8002",
      "gossip": "208.115.223.1:8001",
      "pubkey": "8PC2Kz8xqwRb2GEaBfNA6vr6NgKesfB9RsWTBeThXZSw",
      "pubsub": null,
      "tpuQuic": "208.115.223.1:8003",
      "tpuVote": "208.115.223.1:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "208.115.223.1:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "208.115.223.1:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.142.10:8000",
      "gossip": "198.13.142.10:8001",
      "pubkey": "okvQjo2cuQwS8FFq1jWjenkmmQHN2APa3DMMP64YvbD",
      "pubsub": null,
      "tpuQuic": "198.13.142.10:8002",
      "tpuVote": "198.13.142.10:8004",
      "version": "4.0.0",
      "clientId": "JitoLabs",
      "featureSet": 3718597879,
      "serveRepair": "198.13.142.10:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.142.10:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "202.8.10.72:8002",
      "gossip": "202.8.10.72:8001",
      "pubkey": "9pWRAkdzJHuBGEbZD3jBjtTyoF2i31oSpCUhkXRU9Y7Y",
      "pubsub": null,
      "tpuQuic": "202.8.10.72:8003",
      "tpuVote": "202.8.10.72:8005",
      "version": "4.1.0-rc.1",
      "clientId": "Agave",
      "featureSet": 3345198602,
      "serveRepair": "202.8.10.72:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "202.8.10.72:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "198.13.134.5:8002",
      "gossip": "198.13.134.5:8001",
      "pubkey": "EEXzikpBSEnw6GarknA94GcF7ivH6fnvh6ndTgTGiNYh",
      "pubsub": null,
      "tpuQuic": "198.13.134.5:8003",
      "tpuVote": "198.13.134.5:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "198.13.134.5:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "198.13.134.5:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.139:8002",
      "gossip": "64.130.51.139:8001",
      "pubkey": "C8kekVxcCxC47nT9SmuHzoXadFkzSPnA9JmymC4qedX5",
      "pubsub": null,
      "tpuQuic": "64.130.51.139:8003",
      "tpuVote": "64.130.51.139:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.139:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.139:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.51.113:8002",
      "gossip": "64.130.51.113:8001",
      "pubkey": "9eEbZ2Qy5SkPFnG26Uusb8SDGtXL4g1x5c6kXjunBAmB",
      "pubsub": null,
      "tpuQuic": "64.130.51.113:8003",
      "tpuVote": "64.130.51.113:8005",
      "version": "4.0.2",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "64.130.51.113:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.51.113:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.55.23:8002",
      "gossip": "64.130.55.23:8001",
      "pubkey": "3opQboMTK4cNR2M35nQaeo6m2m2hjRtn1qM6fAucMCC5",
      "pubsub": null,
      "tpuQuic": "64.130.55.23:8003",
      "tpuVote": "64.130.55.23:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.55.23:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.55.23:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "84.32.189.29:8000",
      "pubkey": "CgymxoFbyRytdpLdsPorkvJAWzWxMR7FFf1CuD3Kykhz",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "64.130.49.248:7002",
      "pubkey": "DRZdtwYWMENdNePhGCpaEF3H49K8DigKEmJNTkymXiYb",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "2.2.7",
      "clientId": "Agave",
      "featureSet": 463342092,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.32.8:8001",
      "gossip": "64.130.32.8:8000",
      "pubkey": "BBqSceKeYPk94zxoqyD9bQParcqmrTsVJntyJcVvZSY5",
      "pubsub": null,
      "tpuQuic": "64.130.32.8:8002",
      "tpuVote": "64.130.32.8:8004",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.130.32.8:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.32.8:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.51.38:8002",
      "gossip": "64.31.51.38:8001",
      "pubkey": "HXnhceDMWcguwc5T8g5raZ4si6tgiUJdR7NLRzyiz8oH",
      "pubsub": null,
      "tpuQuic": "64.31.51.38:8003",
      "tpuVote": "64.31.51.38:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.51.38:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.51.38:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.31.48.13:8002",
      "gossip": "64.31.48.13:8001",
      "pubkey": "2wTN38edVnbAACpe9SMh1yugKXhQoSQrYixP46yEBpVU",
      "pubsub": null,
      "tpuQuic": "64.31.48.13:8003",
      "tpuVote": "64.31.48.13:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "64.31.48.13:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.31.48.13:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "82.22.51.6:8001",
      "gossip": "145.239.149.108:8000",
      "pubkey": "2aDMkgxDMqEWuscj1Vi1Xod7GQrjD1XzWrpCReojh7Br",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "4.1.0-alpha.0",
      "clientId": "Agave",
      "featureSet": 3564987115,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "216.144.245.126:8002",
      "gossip": "216.144.245.126:8001",
      "pubkey": "5wnEAeNgcyaPXFgB1oaWqcDJXUsuzK9ogW7rJWD8pSEi",
      "pubsub": null,
      "tpuQuic": "216.144.245.126:8003",
      "tpuVote": "216.144.245.126:8005",
      "version": "4.0.2",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "216.144.245.126:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "216.144.245.126:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "34.207.191.170:9001",
      "gossip": "34.207.191.170:9000",
      "pubkey": "FRQwJLVn75xdLrFYwTfwtg2Xdgi2HSuZDzEiEJSfPnnA",
      "pubsub": null,
      "tpuQuic": "34.207.191.170:9002",
      "tpuVote": "34.207.191.170:9004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "34.207.191.170:9009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "34.207.191.170:9003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "167.235.10.206:8000",
      "gossip": "167.235.10.206:8001",
      "pubkey": "GeRUVZK9SnZV2RnmZLUeJj6BFo2XzC2nG33mG1kMBkhf",
      "pubsub": null,
      "tpuQuic": "167.235.10.206:8002",
      "tpuVote": "167.235.10.206:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3885082850,
      "serveRepair": "167.235.10.206:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "167.235.10.206:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "109.94.96.115:8001",
      "gossip": "109.94.96.115:8000",
      "pubkey": "9HnfA2xX13XhUkWgisAU7oTUtfLtFZMJc8NkWWGuTXfh",
      "pubsub": null,
      "tpuQuic": "109.94.96.115:8002",
      "tpuVote": "109.94.96.115:8004",
      "version": "4.0.3",
      "clientId": "Agave",
      "featureSet": 1878484565,
      "serveRepair": "109.94.96.115:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "109.94.96.115:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.69:8002",
      "gossip": "51.89.17.29:8001",
      "pubkey": "34GZ3TtQsaRLkpQQoxW8yNV21CjXNoJLPqju1f4MBfjr",
      "pubsub": null,
      "tpuQuic": "51.89.17.29:8003",
      "tpuVote": "51.89.17.29:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.17.29:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.17.29:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "63.254.160.106:8002",
      "gossip": "51.89.106.38:8001",
      "pubkey": "7YxTtEZADv2LD3oWF3BGqf3UVShxkwu7yxRT19vMoq5m",
      "pubsub": null,
      "tpuQuic": "51.89.106.38:8003",
      "tpuVote": "51.89.106.38:8005",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "51.89.106.38:8010",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "51.89.106.38:8004"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "64.130.63.76:8003",
      "gossip": "64.130.63.76:8001",
      "pubkey": "3upqjCiYTLxuxSWh2ZkXwvF8cY1M1m1WcLRBJgL94QWY",
      "pubsub": null,
      "tpuQuic": "64.130.63.76:9007",
      "tpuVote": "64.130.63.76:9001",
      "version": "0.913.40003",
      "clientId": "Frankendancer",
      "featureSet": 1878484565,
      "serveRepair": "64.130.63.76:8028",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "64.130.63.76:9007"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "104.204.141.108:8000",
      "gossip": "104.204.141.108:8001",
      "pubkey": "65CgnHi9isBwMshSdsMFW87iReF9AGHqNGrbMzH1Aoxb",
      "pubsub": null,
      "tpuQuic": "104.204.141.108:8002",
      "tpuVote": "104.204.141.108:8004",
      "version": "4.0.3",
      "clientId": "JitoLabs",
      "featureSet": 1878484565,
      "serveRepair": "104.204.141.108:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "104.204.141.108:8003"
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": null,
      "gossip": "31.40.219.18:8001",
      "pubkey": "AsYh62y7569hqYU7UBo9E8E6WLywXeZjDkh1B7PveT8T",
      "pubsub": null,
      "tpuQuic": null,
      "tpuVote": null,
      "version": "3.0.14",
      "clientId": "AgaveBam",
      "featureSet": 3604001754,
      "serveRepair": null,
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": null
    },
    {
      "rpc": null,
      "tpu": null,
      "tvu": "160.202.131.35:8001",
      "gossip": "160.202.131.35:8000",
      "pubkey": "EfSjGnk3Ks758nHpcqa1oaS1zJBtMpNc3sXqYDqVEPy3",
      "pubsub": null,
      "tpuQuic": "160.202.131.35:8002",
      "tpuVote": "160.202.131.35:8004",
      "version": "4.0.0",
      "clientId": "Agave",
      "featureSet": 3718597879,
      "serveRepair": "160.202.131.35:8009",
      "tpuForwards": null,
      "shredVersion": 50093,
      "tpuForwardsQuic": "160.202.131.35:8003"
    }
  ],
  "jsonrpc": "2.0"
}

Usage

  1. Transport: HTTP (JSON-RPC).
  2. Networks: mainnet, devnet, testnet.
  3. Credit cost: 1 per call.

FAQ

What does getClusterNodes do?
Returns information about all the nodes participating in the Solana cluster.
How many credits does getClusterNodes cost?
getClusterNodes costs 1 credit(s) per call on Triport by default.
Is getClusterNodes available over WebSocket?
getClusterNodes is an HTTP JSON-RPC method.