From a432de95a972a2c0a79476f940bb81df647d9930 Mon Sep 17 00:00:00 2001 From: "Quentin McGaw (desktop)" Date: Thu, 30 Sep 2021 15:23:18 +0000 Subject: [PATCH] Maint: deduplicate ProtonVPN servers by entry IP --- internal/models/getservers.go | 2 +- internal/models/getservers_test.go | 2 +- internal/models/server.go | 14 +- internal/storage/hardcoded_test.go | 2 +- internal/storage/servers.json | 11905 ++++------------ .../updater/providers/protonvpn/iptoserver.go | 37 + .../updater/providers/protonvpn/servers.go | 61 +- 7 files changed, 3158 insertions(+), 8865 deletions(-) create mode 100644 internal/updater/providers/protonvpn/iptoserver.go diff --git a/internal/models/getservers.go b/internal/models/getservers.go index 4b5c6790..2b9922b1 100644 --- a/internal/models/getservers.go +++ b/internal/models/getservers.go @@ -168,7 +168,7 @@ func (a *AllServers) GetProtonvpn() (servers []ProtonvpnServer) { for i, serverToCopy := range a.Protonvpn.Servers { servers[i] = serverToCopy servers[i].EntryIP = copyIP(serverToCopy.EntryIP) - servers[i].ExitIP = copyIP(serverToCopy.ExitIP) + servers[i].ExitIPs = copyIPs(serverToCopy.ExitIPs) } return servers } diff --git a/internal/models/getservers_test.go b/internal/models/getservers_test.go index 87a2fcf5..1cacf391 100644 --- a/internal/models/getservers_test.go +++ b/internal/models/getservers_test.go @@ -69,7 +69,7 @@ func Test_AllServers_GetCopy(t *testing.T) { Protonvpn: ProtonvpnServers{ Servers: []ProtonvpnServer{{ EntryIP: net.IP{1, 2, 3, 4}, - ExitIP: net.IP{1, 2, 3, 4}, + ExitIPs: []net.IP{{1, 2, 3, 4}}, }}, }, Purevpn: PurevpnServers{ diff --git a/internal/models/server.go b/internal/models/server.go index d1c9ab99..e4e55374 100644 --- a/internal/models/server.go +++ b/internal/models/server.go @@ -107,13 +107,13 @@ type PrivatevpnServer struct { } type ProtonvpnServer struct { - Country string `json:"country"` - Region string `json:"region"` - City string `json:"city"` - Name string `json:"name"` - Hostname string `json:"hostname"` - EntryIP net.IP `json:"entry_ip"` - ExitIP net.IP `json:"exit_ip"` // TODO verify it matches with public IP once connected + Country string `json:"country"` + Region string `json:"region"` + City string `json:"city"` + Name string `json:"name"` + Hostname string `json:"hostname"` + EntryIP net.IP `json:"entry_ip"` + ExitIPs []net.IP `json:"exit_ip"` // TODO verify it matches with public IP once connected } type PurevpnServer struct { diff --git a/internal/storage/hardcoded_test.go b/internal/storage/hardcoded_test.go index 82831dcc..124ee550 100644 --- a/internal/storage/hardcoded_test.go +++ b/internal/storage/hardcoded_test.go @@ -106,7 +106,7 @@ func Test_versions(t *testing.T) { "Protonvpn": { model: models.ProtonvpnServer{}, version: allServers.Protonvpn.Version, - digest: "b964085b", + digest: "4cb74c3a", }, "Purevpn": { model: models.PurevpnServer{}, diff --git a/internal/storage/servers.json b/internal/storage/servers.json index fbfb02bb..908e9b7c 100644 --- a/internal/storage/servers.json +++ b/internal/storage/servers.json @@ -88788,8 +88788,8 @@ ] }, "protonvpn": { - "version": 1, - "timestamp": 1627008344, + "version": 2, + "timestamp": 1632961231, "servers": [ { "country": "Argentina", @@ -88798,7 +88798,9 @@ "name": "CH-AR#1", "hostname": "ch-ar-01a.protonvpn.com", "entry_ip": "185.159.157.114", - "exit_ip": "162.12.206.9" + "exit_ip": [ + "162.12.206.9" + ] }, { "country": "Argentina", @@ -88807,7 +88809,9 @@ "name": "SE-AR#1", "hostname": "se-ar-01a.protonvpn.com", "entry_ip": "185.159.156.52", - "exit_ip": "162.12.206.8" + "exit_ip": [ + "162.12.206.8" + ] }, { "country": "Argentina", @@ -88816,25 +88820,11 @@ "name": "AR#1", "hostname": "ar-01.protonvpn.net", "entry_ip": "162.12.206.5", - "exit_ip": "162.12.206.5" - }, - { - "country": "Argentina", - "region": "", - "city": "Buenos Aires", - "name": "AR#2", - "hostname": "ar-01.protonvpn.net", - "entry_ip": "162.12.206.5", - "exit_ip": "162.12.206.6" - }, - { - "country": "Argentina", - "region": "", - "city": "Buenos Aires", - "name": "AR#3", - "hostname": "ar-01.protonvpn.net", - "entry_ip": "162.12.206.5", - "exit_ip": "162.12.206.7" + "exit_ip": [ + "162.12.206.5", + "162.12.206.6", + "162.12.206.7" + ] }, { "country": "Argentina", @@ -88843,43 +88833,13 @@ "name": "AR#4", "hostname": "node-ar-01.protonvpn.net", "entry_ip": "162.12.206.4", - "exit_ip": "162.12.206.8" - }, - { - "country": "Argentina", - "region": "", - "city": "Buenos Aires", - "name": "AR#5", - "hostname": "node-ar-01.protonvpn.net", - "entry_ip": "162.12.206.4", - "exit_ip": "162.12.206.9" - }, - { - "country": "Argentina", - "region": "", - "city": "Buenos Aires", - "name": "AR#6", - "hostname": "node-ar-01.protonvpn.net", - "entry_ip": "162.12.206.4", - "exit_ip": "162.12.206.10" - }, - { - "country": "Argentina", - "region": "", - "city": "Buenos Aires", - "name": "AR#7", - "hostname": "node-ar-01.protonvpn.net", - "entry_ip": "162.12.206.4", - "exit_ip": "162.12.206.11" - }, - { - "country": "Argentina", - "region": "", - "city": "Buenos Aires", - "name": "AR#8", - "hostname": "node-ar-01.protonvpn.net", - "entry_ip": "162.12.206.4", - "exit_ip": "162.12.206.12" + "exit_ip": [ + "162.12.206.8", + "162.12.206.9", + "162.12.206.10", + "162.12.206.11", + "162.12.206.12" + ] }, { "country": "Australia", @@ -88888,7 +88848,9 @@ "name": "CH-AU#1", "hostname": "ch-au-01a.protonvpn.com", "entry_ip": "185.159.157.50", - "exit_ip": "103.212.227.124" + "exit_ip": [ + "103.212.227.124" + ] }, { "country": "Australia", @@ -88897,7 +88859,9 @@ "name": "CH-AU#1", "hostname": "ch-au-01b.protonvpn.com", "entry_ip": "185.159.157.51", - "exit_ip": "103.107.196.204" + "exit_ip": [ + "103.107.196.204" + ] }, { "country": "Australia", @@ -88906,7 +88870,9 @@ "name": "CH-AU#1", "hostname": "ch-au-01c.protonvpn.com", "entry_ip": "185.159.157.55", - "exit_ip": "137.59.253.56" + "exit_ip": [ + "137.59.253.56" + ] }, { "country": "Australia", @@ -88915,7 +88881,9 @@ "name": "SE-AU#1", "hostname": "se-au-01a.protonvpn.com", "entry_ip": "185.159.156.55", - "exit_ip": "103.107.197.6" + "exit_ip": [ + "103.107.197.6" + ] }, { "country": "Australia", @@ -88924,7 +88892,9 @@ "name": "SE-AU#1", "hostname": "se-au-01b.protonvpn.com", "entry_ip": "185.159.156.79", - "exit_ip": "116.206.231.188" + "exit_ip": [ + "116.206.231.188" + ] }, { "country": "Australia", @@ -88933,7 +88903,9 @@ "name": "SE-AU#1", "hostname": "se-au-01c.protonvpn.com", "entry_ip": "185.159.156.80", - "exit_ip": "103.108.95.148" + "exit_ip": [ + "103.108.95.148" + ] }, { "country": "Australia", @@ -88942,7 +88914,9 @@ "name": "AU#37", "hostname": "au-37.protonvpn.com", "entry_ip": "116.206.231.187", - "exit_ip": "116.206.231.187" + "exit_ip": [ + "116.206.231.187" + ] }, { "country": "Australia", @@ -88951,25 +88925,11 @@ "name": "AU#38", "hostname": "lxc-au-09.protonvpn.com", "entry_ip": "116.206.231.186", - "exit_ip": "116.206.231.188" - }, - { - "country": "Australia", - "region": "", - "city": "Adelaide", - "name": "AU#39", - "hostname": "lxc-au-09.protonvpn.com", - "entry_ip": "116.206.231.186", - "exit_ip": "116.206.231.189" - }, - { - "country": "Australia", - "region": "", - "city": "Adelaide", - "name": "AU#40", - "hostname": "lxc-au-09.protonvpn.com", - "entry_ip": "116.206.231.186", - "exit_ip": "116.206.231.190" + "exit_ip": [ + "116.206.231.188", + "116.206.231.189", + "116.206.231.190" + ] }, { "country": "Australia", @@ -88978,7 +88938,9 @@ "name": "AU#41", "hostname": "au-41.protonvpn.com", "entry_ip": "103.108.95.147", - "exit_ip": "103.108.95.147" + "exit_ip": [ + "103.108.95.147" + ] }, { "country": "Australia", @@ -88987,25 +88949,11 @@ "name": "AU#42", "hostname": "lxc-au-10.protonvpn.com", "entry_ip": "103.108.95.146", - "exit_ip": "103.108.95.148" - }, - { - "country": "Australia", - "region": "", - "city": "Brisbane", - "name": "AU#43", - "hostname": "lxc-au-10.protonvpn.com", - "entry_ip": "103.108.95.146", - "exit_ip": "103.108.95.149" - }, - { - "country": "Australia", - "region": "", - "city": "Brisbane", - "name": "AU#44", - "hostname": "lxc-au-10.protonvpn.com", - "entry_ip": "103.108.95.146", - "exit_ip": "103.108.95.150" + "exit_ip": [ + "103.108.95.148", + "103.108.95.149", + "103.108.95.150" + ] }, { "country": "Australia", @@ -89014,7 +88962,9 @@ "name": "AU#17", "hostname": "au-17.protonvpn.com", "entry_ip": "103.107.196.203", - "exit_ip": "103.107.196.203" + "exit_ip": [ + "103.107.196.203" + ] }, { "country": "Australia", @@ -89023,25 +88973,11 @@ "name": "AU#18", "hostname": "lxc-au-05.protonvpn.com", "entry_ip": "103.107.196.202", - "exit_ip": "103.107.196.204" - }, - { - "country": "Australia", - "region": "", - "city": "Perth", - "name": "AU#19", - "hostname": "lxc-au-05.protonvpn.com", - "entry_ip": "103.107.196.202", - "exit_ip": "103.107.196.205" - }, - { - "country": "Australia", - "region": "", - "city": "Perth", - "name": "AU#20", - "hostname": "lxc-au-05.protonvpn.com", - "entry_ip": "103.107.196.202", - "exit_ip": "103.107.196.206" + "exit_ip": [ + "103.107.196.204", + "103.107.196.205", + "103.107.196.206" + ] }, { "country": "Australia", @@ -89050,25 +88986,11 @@ "name": "AU#29", "hostname": "au-29.protonvpn.net", "entry_ip": "103.107.197.3", - "exit_ip": "103.107.197.3" - }, - { - "country": "Australia", - "region": "", - "city": "Perth", - "name": "AU#30", - "hostname": "au-29.protonvpn.net", - "entry_ip": "103.107.197.3", - "exit_ip": "103.107.197.4" - }, - { - "country": "Australia", - "region": "", - "city": "Perth", - "name": "AU#31", - "hostname": "au-29.protonvpn.net", - "entry_ip": "103.107.197.3", - "exit_ip": "103.107.197.5" + "exit_ip": [ + "103.107.197.3", + "103.107.197.4", + "103.107.197.5" + ] }, { "country": "Australia", @@ -89077,43 +88999,13 @@ "name": "AU#32", "hostname": "node-au-08.protonvpn.net", "entry_ip": "103.107.197.2", - "exit_ip": "103.107.197.6" - }, - { - "country": "Australia", - "region": "", - "city": "Perth", - "name": "AU#33", - "hostname": "node-au-08.protonvpn.net", - "entry_ip": "103.107.197.2", - "exit_ip": "103.107.197.7" - }, - { - "country": "Australia", - "region": "", - "city": "Perth", - "name": "AU#34", - "hostname": "node-au-08.protonvpn.net", - "entry_ip": "103.107.197.2", - "exit_ip": "103.107.197.8" - }, - { - "country": "Australia", - "region": "", - "city": "Perth", - "name": "AU#35", - "hostname": "node-au-08.protonvpn.net", - "entry_ip": "103.107.197.2", - "exit_ip": "103.107.197.9" - }, - { - "country": "Australia", - "region": "", - "city": "Perth", - "name": "AU#36", - "hostname": "node-au-08.protonvpn.net", - "entry_ip": "103.107.197.2", - "exit_ip": "103.107.197.10" + "exit_ip": [ + "103.107.197.6", + "103.107.197.7", + "103.107.197.8", + "103.107.197.9", + "103.107.197.10" + ] }, { "country": "Australia", @@ -89122,7 +89014,9 @@ "name": "AU#13", "hostname": "au-13.protonvpn.com", "entry_ip": "103.212.227.123", - "exit_ip": "103.212.227.123" + "exit_ip": [ + "103.212.227.123" + ] }, { "country": "Australia", @@ -89131,25 +89025,11 @@ "name": "AU#14", "hostname": "lxc-au-04.protonvpn.com", "entry_ip": "103.212.227.122", - "exit_ip": "103.212.227.124" - }, - { - "country": "Australia", - "region": "", - "city": "Sydney", - "name": "AU#15", - "hostname": "lxc-au-04.protonvpn.com", - "entry_ip": "103.212.227.122", - "exit_ip": "103.212.227.125" - }, - { - "country": "Australia", - "region": "", - "city": "Sydney", - "name": "AU#16", - "hostname": "lxc-au-04.protonvpn.com", - "entry_ip": "103.212.227.122", - "exit_ip": "103.212.227.126" + "exit_ip": [ + "103.212.227.124", + "103.212.227.125", + "103.212.227.126" + ] }, { "country": "Australia", @@ -89158,34 +89038,12 @@ "name": "AU#21", "hostname": "lxc-au-06.protonvpn.com", "entry_ip": "137.59.253.50", - "exit_ip": "137.59.253.51" - }, - { - "country": "Australia", - "region": "", - "city": "Sydney", - "name": "AU#22", - "hostname": "lxc-au-06.protonvpn.com", - "entry_ip": "137.59.253.50", - "exit_ip": "137.59.253.52" - }, - { - "country": "Australia", - "region": "", - "city": "Sydney", - "name": "AU#23", - "hostname": "lxc-au-06.protonvpn.com", - "entry_ip": "137.59.253.50", - "exit_ip": "137.59.253.53" - }, - { - "country": "Australia", - "region": "", - "city": "Sydney", - "name": "AU#24", - "hostname": "lxc-au-06.protonvpn.com", - "entry_ip": "137.59.253.50", - "exit_ip": "137.59.253.54" + "exit_ip": [ + "137.59.253.51", + "137.59.253.52", + "137.59.253.53", + "137.59.253.54" + ] }, { "country": "Australia", @@ -89194,34 +89052,12 @@ "name": "AU#25", "hostname": "lxc-au-07.protonvpn.com", "entry_ip": "137.59.253.55", - "exit_ip": "137.59.253.56" - }, - { - "country": "Australia", - "region": "", - "city": "Sydney", - "name": "AU#26", - "hostname": "lxc-au-07.protonvpn.com", - "entry_ip": "137.59.253.55", - "exit_ip": "137.59.253.57" - }, - { - "country": "Australia", - "region": "", - "city": "Sydney", - "name": "AU#27", - "hostname": "lxc-au-07.protonvpn.com", - "entry_ip": "137.59.253.55", - "exit_ip": "137.59.253.58" - }, - { - "country": "Australia", - "region": "", - "city": "Sydney", - "name": "AU#28", - "hostname": "lxc-au-07.protonvpn.com", - "entry_ip": "137.59.253.55", - "exit_ip": "137.59.253.59" + "exit_ip": [ + "137.59.253.56", + "137.59.253.57", + "137.59.253.58", + "137.59.253.59" + ] }, { "country": "Austria", @@ -89230,7 +89066,9 @@ "name": "CH-AT#1", "hostname": "ch-at-01a.protonvpn.com", "entry_ip": "185.159.157.34", - "exit_ip": "185.244.212.61" + "exit_ip": [ + "185.244.212.61" + ] }, { "country": "Austria", @@ -89239,7 +89077,9 @@ "name": "CH-AT#1", "hostname": "ch-at-01b.protonvpn.com", "entry_ip": "185.159.157.35", - "exit_ip": "185.244.212.62" + "exit_ip": [ + "185.244.212.62" + ] }, { "country": "Austria", @@ -89248,7 +89088,9 @@ "name": "CH-AT#1", "hostname": "ch-at-01c.protonvpn.com", "entry_ip": "185.159.157.47", - "exit_ip": "185.244.212.222" + "exit_ip": [ + "185.244.212.222" + ] }, { "country": "Austria", @@ -89257,7 +89099,9 @@ "name": "CH-AT#1", "hostname": "ch-at-01d.protonvpn.com", "entry_ip": "185.159.157.75", - "exit_ip": "185.244.212.221" + "exit_ip": [ + "185.244.212.221" + ] }, { "country": "Austria", @@ -89266,7 +89110,9 @@ "name": "IS-AT#1", "hostname": "is-at-01a.protonvpn.com", "entry_ip": "185.159.158.164", - "exit_ip": "94.198.41.220" + "exit_ip": [ + "94.198.41.220" + ] }, { "country": "Austria", @@ -89275,7 +89121,9 @@ "name": "IS-AT#1", "hostname": "is-at-01b.protonvpn.com", "entry_ip": "185.159.158.165", - "exit_ip": "94.198.41.212" + "exit_ip": [ + "94.198.41.212" + ] }, { "country": "Austria", @@ -89284,7 +89132,10 @@ "name": "AT#1", "hostname": "at-01.protonvpn.net", "entry_ip": "185.244.212.59", - "exit_ip": "185.244.212.59" + "exit_ip": [ + "185.244.212.59", + "185.244.212.60" + ] }, { "country": "Austria", @@ -89293,25 +89144,11 @@ "name": "AT#10", "hostname": "node-at-03.protonvpn.net", "entry_ip": "94.198.41.218", - "exit_ip": "94.198.41.220" - }, - { - "country": "Austria", - "region": "", - "city": "Vienna", - "name": "AT#11", - "hostname": "node-at-03.protonvpn.net", - "entry_ip": "94.198.41.218", - "exit_ip": "94.198.41.221" - }, - { - "country": "Austria", - "region": "", - "city": "Vienna", - "name": "AT#12", - "hostname": "node-at-03.protonvpn.net", - "entry_ip": "94.198.41.218", - "exit_ip": "94.198.41.222" + "exit_ip": [ + "94.198.41.220", + "94.198.41.221", + "94.198.41.222" + ] }, { "country": "Austria", @@ -89320,7 +89157,9 @@ "name": "AT#13", "hostname": "at-13.protonvpn.com", "entry_ip": "94.198.41.211", - "exit_ip": "94.198.41.211" + "exit_ip": [ + "94.198.41.211" + ] }, { "country": "Austria", @@ -89329,34 +89168,11 @@ "name": "AT#14", "hostname": "lxc-at-04.protonvpn.com", "entry_ip": "94.198.41.210", - "exit_ip": "94.198.41.212" - }, - { - "country": "Austria", - "region": "", - "city": "Vienna", - "name": "AT#15", - "hostname": "lxc-at-04.protonvpn.com", - "entry_ip": "94.198.41.210", - "exit_ip": "94.198.41.213" - }, - { - "country": "Austria", - "region": "", - "city": "Vienna", - "name": "AT#16", - "hostname": "lxc-at-04.protonvpn.com", - "entry_ip": "94.198.41.210", - "exit_ip": "94.198.41.214" - }, - { - "country": "Austria", - "region": "", - "city": "Vienna", - "name": "AT#2", - "hostname": "at-01.protonvpn.net", - "entry_ip": "185.244.212.59", - "exit_ip": "185.244.212.60" + "exit_ip": [ + "94.198.41.212", + "94.198.41.213", + "94.198.41.214" + ] }, { "country": "Austria", @@ -89365,16 +89181,10 @@ "name": "AT#3", "hostname": "node-at-01.protonvpn.net", "entry_ip": "185.244.212.58", - "exit_ip": "185.244.212.61" - }, - { - "country": "Austria", - "region": "", - "city": "Vienna", - "name": "AT#4", - "hostname": "node-at-01.protonvpn.net", - "entry_ip": "185.244.212.58", - "exit_ip": "185.244.212.62" + "exit_ip": [ + "185.244.212.61", + "185.244.212.62" + ] }, { "country": "Austria", @@ -89383,16 +89193,10 @@ "name": "AT#5", "hostname": "at-05.protonvpn.net", "entry_ip": "185.244.212.219", - "exit_ip": "185.244.212.219" - }, - { - "country": "Austria", - "region": "", - "city": "Vienna", - "name": "AT#6", - "hostname": "at-05.protonvpn.net", - "entry_ip": "185.244.212.219", - "exit_ip": "185.244.212.220" + "exit_ip": [ + "185.244.212.219", + "185.244.212.220" + ] }, { "country": "Austria", @@ -89401,16 +89205,10 @@ "name": "AT#7", "hostname": "node-at-02.protonvpn.net", "entry_ip": "185.244.212.218", - "exit_ip": "185.244.212.221" - }, - { - "country": "Austria", - "region": "", - "city": "Vienna", - "name": "AT#8", - "hostname": "node-at-02.protonvpn.net", - "entry_ip": "185.244.212.218", - "exit_ip": "185.244.212.222" + "exit_ip": [ + "185.244.212.221", + "185.244.212.222" + ] }, { "country": "Austria", @@ -89419,7 +89217,9 @@ "name": "AT#9", "hostname": "at-09.protonvpn.net", "entry_ip": "94.198.41.219", - "exit_ip": "94.198.41.219" + "exit_ip": [ + "94.198.41.219" + ] }, { "country": "Belgium", @@ -89428,7 +89228,9 @@ "name": "CH-BE#1", "hostname": "ch-be-01a.protonvpn.com", "entry_ip": "185.159.157.147", - "exit_ip": "37.120.236.4" + "exit_ip": [ + "37.120.236.4" + ] }, { "country": "Belgium", @@ -89437,7 +89239,9 @@ "name": "IS-BE#1", "hostname": "is-be-01a.protonvpn.com", "entry_ip": "185.159.158.127", - "exit_ip": "193.9.114.180" + "exit_ip": [ + "193.9.114.180" + ] }, { "country": "Belgium", @@ -89446,7 +89250,9 @@ "name": "IS-BE#1", "hostname": "is-be-01c.protonvpn.com", "entry_ip": "185.159.158.129", - "exit_ip": "193.9.114.182" + "exit_ip": [ + "193.9.114.182" + ] }, { "country": "Belgium", @@ -89455,7 +89261,9 @@ "name": "IS-BE#1", "hostname": "is-be-01d.protonvpn.com", "entry_ip": "185.159.158.138", - "exit_ip": "45.128.133.230" + "exit_ip": [ + "45.128.133.230" + ] }, { "country": "Belgium", @@ -89464,34 +89272,9 @@ "name": "BE#1", "hostname": "be-01.protonvpn.net", "entry_ip": "193.9.114.179", - "exit_ip": "193.9.114.179" - }, - { - "country": "Belgium", - "region": "", - "city": "Brussels", - "name": "BE#10", - "hostname": "lxc-be-02.protonvpn.com", - "entry_ip": "45.128.133.226", - "exit_ip": "45.128.133.232" - }, - { - "country": "Belgium", - "region": "", - "city": "Brussels", - "name": "BE#11", - "hostname": "lxc-be-02.protonvpn.com", - "entry_ip": "45.128.133.226", - "exit_ip": "45.128.133.233" - }, - { - "country": "Belgium", - "region": "", - "city": "Brussels", - "name": "BE#12", - "hostname": "lxc-be-02.protonvpn.com", - "entry_ip": "45.128.133.226", - "exit_ip": "45.128.133.234" + "exit_ip": [ + "193.9.114.179" + ] }, { "country": "Belgium", @@ -89500,7 +89283,9 @@ "name": "BE#13", "hostname": "be-13.protonvpn.net", "entry_ip": "37.120.236.3", - "exit_ip": "37.120.236.3" + "exit_ip": [ + "37.120.236.3" + ] }, { "country": "Belgium", @@ -89509,25 +89294,11 @@ "name": "BE#14", "hostname": "node-be-03.protonvpn.net", "entry_ip": "37.120.236.2", - "exit_ip": "37.120.236.4" - }, - { - "country": "Belgium", - "region": "", - "city": "Brussels", - "name": "BE#15", - "hostname": "node-be-03.protonvpn.net", - "entry_ip": "37.120.236.2", - "exit_ip": "37.120.236.5" - }, - { - "country": "Belgium", - "region": "", - "city": "Brussels", - "name": "BE#16", - "hostname": "node-be-03.protonvpn.net", - "entry_ip": "37.120.236.2", - "exit_ip": "37.120.236.6" + "exit_ip": [ + "37.120.236.4", + "37.120.236.5", + "37.120.236.6" + ] }, { "country": "Belgium", @@ -89536,25 +89307,11 @@ "name": "BE#2", "hostname": "node-be-01.protonvpn.net", "entry_ip": "193.9.114.178", - "exit_ip": "193.9.114.180" - }, - { - "country": "Belgium", - "region": "", - "city": "Brussels", - "name": "BE#3", - "hostname": "node-be-01.protonvpn.net", - "entry_ip": "193.9.114.178", - "exit_ip": "193.9.114.181" - }, - { - "country": "Belgium", - "region": "", - "city": "Brussels", - "name": "BE#4", - "hostname": "node-be-01.protonvpn.net", - "entry_ip": "193.9.114.178", - "exit_ip": "193.9.114.182" + "exit_ip": [ + "193.9.114.180", + "193.9.114.181", + "193.9.114.182" + ] }, { "country": "Belgium", @@ -89563,25 +89320,11 @@ "name": "BE#5", "hostname": "be-05.protonvpn.com", "entry_ip": "45.128.133.227", - "exit_ip": "45.128.133.227" - }, - { - "country": "Belgium", - "region": "", - "city": "Brussels", - "name": "BE#6", - "hostname": "be-05.protonvpn.com", - "entry_ip": "45.128.133.227", - "exit_ip": "45.128.133.228" - }, - { - "country": "Belgium", - "region": "", - "city": "Brussels", - "name": "BE#7", - "hostname": "be-05.protonvpn.com", - "entry_ip": "45.128.133.227", - "exit_ip": "45.128.133.229" + "exit_ip": [ + "45.128.133.227", + "45.128.133.228", + "45.128.133.229" + ] }, { "country": "Belgium", @@ -89590,16 +89333,13 @@ "name": "BE#8", "hostname": "lxc-be-02.protonvpn.com", "entry_ip": "45.128.133.226", - "exit_ip": "45.128.133.230" - }, - { - "country": "Belgium", - "region": "", - "city": "Brussels", - "name": "BE#9", - "hostname": "lxc-be-02.protonvpn.com", - "entry_ip": "45.128.133.226", - "exit_ip": "45.128.133.231" + "exit_ip": [ + "45.128.133.230", + "45.128.133.231", + "45.128.133.232", + "45.128.133.233", + "45.128.133.234" + ] }, { "country": "Brazil", @@ -89608,7 +89348,9 @@ "name": "IS-BR#1", "hostname": "is-br-01a.protonvpn.com", "entry_ip": "185.159.158.124", - "exit_ip": "181.215.0.49" + "exit_ip": [ + "181.215.0.49" + ] }, { "country": "Brazil", @@ -89617,7 +89359,9 @@ "name": "BR#5", "hostname": "br-05.protonvpn.net", "entry_ip": "181.215.0.48", - "exit_ip": "181.215.0.48" + "exit_ip": [ + "181.215.0.48" + ] }, { "country": "Brazil", @@ -89626,25 +89370,11 @@ "name": "BR#6", "hostname": "node-br-02.protonvpn.net", "entry_ip": "191.101.62.171", - "exit_ip": "181.215.0.49" - }, - { - "country": "Brazil", - "region": "", - "city": "São Paulo", - "name": "BR#7", - "hostname": "node-br-02.protonvpn.net", - "entry_ip": "191.101.62.171", - "exit_ip": "181.215.0.50" - }, - { - "country": "Brazil", - "region": "", - "city": "São Paulo", - "name": "BR#8", - "hostname": "node-br-02.protonvpn.net", - "entry_ip": "191.101.62.171", - "exit_ip": "181.215.0.51" + "exit_ip": [ + "181.215.0.49", + "181.215.0.50", + "181.215.0.51" + ] }, { "country": "Bulgaria", @@ -89653,7 +89383,9 @@ "name": "CH-BG#1", "hostname": "ch-bg-01a.protonvpn.com", "entry_ip": "185.159.157.48", - "exit_ip": "37.46.114.114" + "exit_ip": [ + "37.46.114.114" + ] }, { "country": "Bulgaria", @@ -89662,7 +89394,9 @@ "name": "CH-BG#1", "hostname": "ch-bg-01b.protonvpn.com", "entry_ip": "185.159.157.76", - "exit_ip": "37.46.114.115" + "exit_ip": [ + "37.46.114.115" + ] }, { "country": "Bulgaria", @@ -89671,16 +89405,10 @@ "name": "BG#1", "hostname": "bg-01.protonvpn.com", "entry_ip": "37.46.114.112", - "exit_ip": "37.46.114.112" - }, - { - "country": "Bulgaria", - "region": "", - "city": "Sofia", - "name": "BG#2", - "hostname": "bg-01.protonvpn.com", - "entry_ip": "37.46.114.112", - "exit_ip": "37.46.114.113" + "exit_ip": [ + "37.46.114.112", + "37.46.114.113" + ] }, { "country": "Bulgaria", @@ -89689,16 +89417,10 @@ "name": "BG#3", "hostname": "lxc-bg-01.protonvpn.com", "entry_ip": "37.46.114.111", - "exit_ip": "37.46.114.114" - }, - { - "country": "Bulgaria", - "region": "", - "city": "Sofia", - "name": "BG#4", - "hostname": "lxc-bg-01.protonvpn.com", - "entry_ip": "37.46.114.111", - "exit_ip": "37.46.114.115" + "exit_ip": [ + "37.46.114.114", + "37.46.114.115" + ] }, { "country": "Canada", @@ -89707,7 +89429,9 @@ "name": "CH-CA#1", "hostname": "ch-ca-01a.protonvpn.com", "entry_ip": "185.159.157.14", - "exit_ip": "104.254.92.62" + "exit_ip": [ + "104.254.92.62" + ] }, { "country": "Canada", @@ -89716,7 +89440,9 @@ "name": "CH-CA#1", "hostname": "ch-ca-01b.protonvpn.com", "entry_ip": "185.159.157.17", - "exit_ip": "104.254.92.61" + "exit_ip": [ + "104.254.92.61" + ] }, { "country": "Canada", @@ -89725,7 +89451,20 @@ "name": "CH-CA#1", "hostname": "ch-ca-01c.protonvpn.com", "entry_ip": "185.159.157.101", - "exit_ip": "37.120.205.84" + "exit_ip": [ + "37.120.205.84" + ] + }, + { + "country": "Canada", + "region": "", + "city": "", + "name": "CH-CA#1", + "hostname": "ch-ca-01d.protonvpn.com", + "entry_ip": "185.159.157.118", + "exit_ip": [ + "162.253.71.24" + ] }, { "country": "Canada", @@ -89734,7 +89473,9 @@ "name": "CH-CA#1", "hostname": "ch-ca-01e.protonvpn.com", "entry_ip": "185.159.157.31", - "exit_ip": "172.83.40.70" + "exit_ip": [ + "172.83.40.70" + ] }, { "country": "Canada", @@ -89743,7 +89484,9 @@ "name": "CH-CA#1", "hostname": "ch-ca-01f.protonvpn.com", "entry_ip": "185.159.157.52", - "exit_ip": "162.253.71.19" + "exit_ip": [ + "162.253.71.19" + ] }, { "country": "Canada", @@ -89752,7 +89495,9 @@ "name": "CH-CA#1", "hostname": "ch-ca-01g.protonvpn.com", "entry_ip": "185.159.157.125", - "exit_ip": "66.115.146.165" + "exit_ip": [ + "66.115.146.165" + ] }, { "country": "Canada", @@ -89761,7 +89506,9 @@ "name": "CH-CA#1", "hostname": "ch-ca-01h.protonvpn.com", "entry_ip": "185.159.157.154", - "exit_ip": "37.120.237.172" + "exit_ip": [ + "37.120.237.172" + ] }, { "country": "Canada", @@ -89770,7 +89517,9 @@ "name": "CH-CA#1", "hostname": "ch-ca-01i.protonvpn.com", "entry_ip": "185.159.157.155", - "exit_ip": "37.120.237.180" + "exit_ip": [ + "37.120.237.180" + ] }, { "country": "Canada", @@ -89779,7 +89528,9 @@ "name": "IS-CA#1", "hostname": "is-ca-01a.protonvpn.com", "entry_ip": "185.159.158.103", - "exit_ip": "104.254.92.62" + "exit_ip": [ + "104.254.92.62" + ] }, { "country": "Canada", @@ -89788,7 +89539,9 @@ "name": "IS-CA#1", "hostname": "is-ca-01e.protonvpn.com", "entry_ip": "185.159.158.117", - "exit_ip": "172.83.40.69" + "exit_ip": [ + "172.83.40.69" + ] }, { "country": "Canada", @@ -89797,7 +89550,9 @@ "name": "SE-CA#1", "hostname": "se-ca-01a.protonvpn.com", "entry_ip": "185.159.156.51", - "exit_ip": "86.106.90.102" + "exit_ip": [ + "86.106.90.102" + ] }, { "country": "Canada", @@ -89806,34 +89561,12 @@ "name": "CA#17", "hostname": "lxc-ca-05.protonvpn.com", "entry_ip": "172.98.82.162", - "exit_ip": "172.98.82.163" - }, - { - "country": "Canada", - "region": "", - "city": "Montreal", - "name": "CA#18", - "hostname": "lxc-ca-05.protonvpn.com", - "entry_ip": "172.98.82.162", - "exit_ip": "172.98.82.164" - }, - { - "country": "Canada", - "region": "", - "city": "Montreal", - "name": "CA#19", - "hostname": "lxc-ca-05.protonvpn.com", - "entry_ip": "172.98.82.162", - "exit_ip": "172.98.82.165" - }, - { - "country": "Canada", - "region": "", - "city": "Montreal", - "name": "CA#20", - "hostname": "lxc-ca-05.protonvpn.com", - "entry_ip": "172.98.82.162", - "exit_ip": "172.98.82.166" + "exit_ip": [ + "172.98.82.163", + "172.98.82.164", + "172.98.82.165", + "172.98.82.166" + ] }, { "country": "Canada", @@ -89842,25 +89575,11 @@ "name": "CA#21", "hostname": "ca-21.protonvpn.net", "entry_ip": "86.106.90.99", - "exit_ip": "86.106.90.99" - }, - { - "country": "Canada", - "region": "", - "city": "Montreal", - "name": "CA#22", - "hostname": "ca-21.protonvpn.net", - "entry_ip": "86.106.90.99", - "exit_ip": "86.106.90.100" - }, - { - "country": "Canada", - "region": "", - "city": "Montreal", - "name": "CA#23", - "hostname": "ca-21.protonvpn.net", - "entry_ip": "86.106.90.99", - "exit_ip": "86.106.90.101" + "exit_ip": [ + "86.106.90.99", + "86.106.90.100", + "86.106.90.101" + ] }, { "country": "Canada", @@ -89869,43 +89588,13 @@ "name": "CA#24", "hostname": "node-ca-06.protonvpn.net", "entry_ip": "86.106.90.98", - "exit_ip": "86.106.90.102" - }, - { - "country": "Canada", - "region": "", - "city": "Montreal", - "name": "CA#25", - "hostname": "node-ca-06.protonvpn.net", - "entry_ip": "86.106.90.98", - "exit_ip": "86.106.90.103" - }, - { - "country": "Canada", - "region": "", - "city": "Montreal", - "name": "CA#26", - "hostname": "node-ca-06.protonvpn.net", - "entry_ip": "86.106.90.98", - "exit_ip": "86.106.90.104" - }, - { - "country": "Canada", - "region": "", - "city": "Montreal", - "name": "CA#27", - "hostname": "node-ca-06.protonvpn.net", - "entry_ip": "86.106.90.98", - "exit_ip": "86.106.90.105" - }, - { - "country": "Canada", - "region": "", - "city": "Montreal", - "name": "CA#28", - "hostname": "node-ca-06.protonvpn.net", - "entry_ip": "86.106.90.98", - "exit_ip": "86.106.90.106" + "exit_ip": [ + "86.106.90.102", + "86.106.90.103", + "86.106.90.104", + "86.106.90.105", + "86.106.90.106" + ] }, { "country": "Canada", @@ -89914,7 +89603,9 @@ "name": "CA#29", "hostname": "ca-29.protonvpn.com", "entry_ip": "37.120.205.83", - "exit_ip": "37.120.205.83" + "exit_ip": [ + "37.120.205.83" + ] }, { "country": "Canada", @@ -89923,25 +89614,11 @@ "name": "CA#30", "hostname": "lxc-ca-07.protonvpn.com", "entry_ip": "37.120.205.82", - "exit_ip": "37.120.205.84" - }, - { - "country": "Canada", - "region": "", - "city": "Montreal", - "name": "CA#31", - "hostname": "lxc-ca-07.protonvpn.com", - "entry_ip": "37.120.205.82", - "exit_ip": "37.120.205.85" - }, - { - "country": "Canada", - "region": "", - "city": "Montreal", - "name": "CA#32", - "hostname": "lxc-ca-07.protonvpn.com", - "entry_ip": "37.120.205.82", - "exit_ip": "37.120.205.86" + "exit_ip": [ + "37.120.205.84", + "37.120.205.85", + "37.120.205.86" + ] }, { "country": "Canada", @@ -89950,7 +89627,9 @@ "name": "CA#41", "hostname": "ca-41.protonvpn.com", "entry_ip": "37.120.237.171", - "exit_ip": "37.120.237.171" + "exit_ip": [ + "37.120.237.171" + ] }, { "country": "Canada", @@ -89959,25 +89638,11 @@ "name": "CA#42", "hostname": "lxc-ca-10.protonvpn.com", "entry_ip": "37.120.237.170", - "exit_ip": "37.120.237.172" - }, - { - "country": "Canada", - "region": "", - "city": "Montreal", - "name": "CA#43", - "hostname": "lxc-ca-10.protonvpn.com", - "entry_ip": "37.120.237.170", - "exit_ip": "37.120.237.173" - }, - { - "country": "Canada", - "region": "", - "city": "Montreal", - "name": "CA#44", - "hostname": "lxc-ca-10.protonvpn.com", - "entry_ip": "37.120.237.170", - "exit_ip": "37.120.237.174" + "exit_ip": [ + "37.120.237.172", + "37.120.237.173", + "37.120.237.174" + ] }, { "country": "Canada", @@ -89986,7 +89651,9 @@ "name": "CA#45", "hostname": "ca-45.protonvpn.com", "entry_ip": "37.120.237.179", - "exit_ip": "37.120.237.179" + "exit_ip": [ + "37.120.237.179" + ] }, { "country": "Canada", @@ -89995,25 +89662,11 @@ "name": "CA#46", "hostname": "lxc-ca-11.protonvpn.com", "entry_ip": "37.120.237.178", - "exit_ip": "37.120.237.180" - }, - { - "country": "Canada", - "region": "", - "city": "Montreal", - "name": "CA#47", - "hostname": "lxc-ca-11.protonvpn.com", - "entry_ip": "37.120.237.178", - "exit_ip": "37.120.237.181" - }, - { - "country": "Canada", - "region": "", - "city": "Montreal", - "name": "CA#48", - "hostname": "lxc-ca-11.protonvpn.com", - "entry_ip": "37.120.237.178", - "exit_ip": "37.120.237.182" + "exit_ip": [ + "37.120.237.180", + "37.120.237.181", + "37.120.237.182" + ] }, { "country": "Canada", @@ -90022,7 +89675,10 @@ "name": "CA#1", "hostname": "ca-01.protonvpn.net", "entry_ip": "104.254.92.59", - "exit_ip": "104.254.92.59" + "exit_ip": [ + "104.254.92.59", + "104.254.92.60" + ] }, { "country": "Canada", @@ -90031,43 +89687,12 @@ "name": "CA#13", "hostname": "node-ca-04.protonvpn.net", "entry_ip": "162.253.71.18", - "exit_ip": "162.253.71.19" - }, - { - "country": "Canada", - "region": "", - "city": "Toronto", - "name": "CA#14", - "hostname": "node-ca-04.protonvpn.net", - "entry_ip": "162.253.71.18", - "exit_ip": "162.253.71.20" - }, - { - "country": "Canada", - "region": "", - "city": "Toronto", - "name": "CA#15", - "hostname": "node-ca-04.protonvpn.net", - "entry_ip": "162.253.71.18", - "exit_ip": "162.253.71.21" - }, - { - "country": "Canada", - "region": "", - "city": "Toronto", - "name": "CA#16", - "hostname": "node-ca-04.protonvpn.net", - "entry_ip": "162.253.71.18", - "exit_ip": "162.253.71.22" - }, - { - "country": "Canada", - "region": "", - "city": "Toronto", - "name": "CA#2", - "hostname": "ca-01.protonvpn.net", - "entry_ip": "104.254.92.59", - "exit_ip": "104.254.92.60" + "exit_ip": [ + "162.253.71.19", + "162.253.71.20", + "162.253.71.21", + "162.253.71.22" + ] }, { "country": "Canada", @@ -90076,16 +89701,24 @@ "name": "CA#3", "hostname": "node-ca-01.protonvpn.net", "entry_ip": "104.254.92.58", - "exit_ip": "104.254.92.61" + "exit_ip": [ + "104.254.92.61", + "104.254.92.62" + ] }, { "country": "Canada", "region": "", "city": "Toronto", - "name": "CA#4", - "hostname": "node-ca-01.protonvpn.net", - "entry_ip": "104.254.92.58", - "exit_ip": "104.254.92.62" + "name": "CA#37", + "hostname": "lxc-ca-09.protonvpn.com", + "entry_ip": "162.253.71.23", + "exit_ip": [ + "162.253.71.24", + "162.253.71.25", + "162.253.71.26", + "162.253.71.27" + ] }, { "country": "Canada", @@ -90094,16 +89727,10 @@ "name": "CA#33", "hostname": "ca-33.protonvpn.com", "entry_ip": "66.115.146.163", - "exit_ip": "66.115.146.163" - }, - { - "country": "Canada", - "region": "", - "city": "Vancouver", - "name": "CA#34", - "hostname": "ca-33.protonvpn.com", - "entry_ip": "66.115.146.163", - "exit_ip": "66.115.146.164" + "exit_ip": [ + "66.115.146.163", + "66.115.146.164" + ] }, { "country": "Canada", @@ -90112,16 +89739,10 @@ "name": "CA#35", "hostname": "lxc-ca-08.protonvpn.com", "entry_ip": "66.115.146.162", - "exit_ip": "66.115.146.165" - }, - { - "country": "Canada", - "region": "", - "city": "Vancouver", - "name": "CA#36", - "hostname": "lxc-ca-08.protonvpn.com", - "entry_ip": "66.115.146.162", - "exit_ip": "66.115.146.166" + "exit_ip": [ + "66.115.146.165", + "66.115.146.166" + ] }, { "country": "Canada", @@ -90130,16 +89751,10 @@ "name": "CA#5", "hostname": "ca-05.protonvpn.com", "entry_ip": "172.83.40.67", - "exit_ip": "172.83.40.67" - }, - { - "country": "Canada", - "region": "", - "city": "Vancouver", - "name": "CA#6", - "hostname": "ca-05.protonvpn.com", - "entry_ip": "172.83.40.67", - "exit_ip": "172.83.40.68" + "exit_ip": [ + "172.83.40.67", + "172.83.40.68" + ] }, { "country": "Canada", @@ -90148,16 +89763,10 @@ "name": "CA#7", "hostname": "lxc-ca-02.protonvpn.com", "entry_ip": "172.83.40.66", - "exit_ip": "172.83.40.69" - }, - { - "country": "Canada", - "region": "", - "city": "Vancouver", - "name": "CA#8", - "hostname": "lxc-ca-02.protonvpn.com", - "entry_ip": "172.83.40.66", - "exit_ip": "172.83.40.70" + "exit_ip": [ + "172.83.40.69", + "172.83.40.70" + ] }, { "country": "Chile", @@ -90166,7 +89775,9 @@ "name": "CH-CL#1", "hostname": "ch-cl-01b.protonvpn.com", "entry_ip": "185.159.157.137", - "exit_ip": "194.31.97.8" + "exit_ip": [ + "194.31.97.8" + ] }, { "country": "Chile", @@ -90175,25 +89786,11 @@ "name": "CL#1", "hostname": "cl-01b.protonvpn.net", "entry_ip": "194.31.97.5", - "exit_ip": "194.31.97.5" - }, - { - "country": "Chile", - "region": "", - "city": "Santiago", - "name": "CL#2", - "hostname": "cl-01b.protonvpn.net", - "entry_ip": "194.31.97.5", - "exit_ip": "194.31.97.6" - }, - { - "country": "Chile", - "region": "", - "city": "Santiago", - "name": "CL#3", - "hostname": "cl-01b.protonvpn.net", - "entry_ip": "194.31.97.5", - "exit_ip": "194.31.97.7" + "exit_ip": [ + "194.31.97.5", + "194.31.97.6", + "194.31.97.7" + ] }, { "country": "Chile", @@ -90202,43 +89799,13 @@ "name": "CL#4", "hostname": "node-cl-01b.protonvpn.net", "entry_ip": "194.31.97.4", - "exit_ip": "194.31.97.8" - }, - { - "country": "Chile", - "region": "", - "city": "Santiago", - "name": "CL#5", - "hostname": "node-cl-01b.protonvpn.net", - "entry_ip": "194.31.97.4", - "exit_ip": "194.31.97.9" - }, - { - "country": "Chile", - "region": "", - "city": "Santiago", - "name": "CL#6", - "hostname": "node-cl-01b.protonvpn.net", - "entry_ip": "194.31.97.4", - "exit_ip": "194.31.97.10" - }, - { - "country": "Chile", - "region": "", - "city": "Santiago", - "name": "CL#7", - "hostname": "node-cl-01b.protonvpn.net", - "entry_ip": "194.31.97.4", - "exit_ip": "194.31.97.11" - }, - { - "country": "Chile", - "region": "", - "city": "Santiago", - "name": "CL#8", - "hostname": "node-cl-01b.protonvpn.net", - "entry_ip": "194.31.97.4", - "exit_ip": "194.31.97.12" + "exit_ip": [ + "194.31.97.8", + "194.31.97.9", + "194.31.97.10", + "194.31.97.11", + "194.31.97.12" + ] }, { "country": "Colombia", @@ -90247,7 +89814,9 @@ "name": "CH-CO#1", "hostname": "ch-co-01a.protonvpn.com", "entry_ip": "185.159.157.136", - "exit_ip": "45.144.227.8" + "exit_ip": [ + "45.144.227.8" + ] }, { "country": "Colombia", @@ -90256,25 +89825,11 @@ "name": "CO#1", "hostname": "co-01.protonvpn.net", "entry_ip": "45.144.227.5", - "exit_ip": "45.144.227.5" - }, - { - "country": "Colombia", - "region": "", - "city": "Bogota", - "name": "CO#2", - "hostname": "co-01.protonvpn.net", - "entry_ip": "45.144.227.5", - "exit_ip": "45.144.227.6" - }, - { - "country": "Colombia", - "region": "", - "city": "Bogota", - "name": "CO#3", - "hostname": "co-01.protonvpn.net", - "entry_ip": "45.144.227.5", - "exit_ip": "45.144.227.7" + "exit_ip": [ + "45.144.227.5", + "45.144.227.6", + "45.144.227.7" + ] }, { "country": "Colombia", @@ -90283,43 +89838,13 @@ "name": "CO#4", "hostname": "node-co-01.protonvpn.net", "entry_ip": "45.144.227.4", - "exit_ip": "45.144.227.8" - }, - { - "country": "Colombia", - "region": "", - "city": "Bogota", - "name": "CO#5", - "hostname": "node-co-01.protonvpn.net", - "entry_ip": "45.144.227.4", - "exit_ip": "45.144.227.9" - }, - { - "country": "Colombia", - "region": "", - "city": "Bogota", - "name": "CO#6", - "hostname": "node-co-01.protonvpn.net", - "entry_ip": "45.144.227.4", - "exit_ip": "45.144.227.10" - }, - { - "country": "Colombia", - "region": "", - "city": "Bogota", - "name": "CO#7", - "hostname": "node-co-01.protonvpn.net", - "entry_ip": "45.144.227.4", - "exit_ip": "45.144.227.11" - }, - { - "country": "Colombia", - "region": "", - "city": "Bogota", - "name": "CO#8", - "hostname": "node-co-01.protonvpn.net", - "entry_ip": "45.144.227.4", - "exit_ip": "45.144.227.12" + "exit_ip": [ + "45.144.227.8", + "45.144.227.9", + "45.144.227.10", + "45.144.227.11", + "45.144.227.12" + ] }, { "country": "Costa Rica", @@ -90328,7 +89853,9 @@ "name": "IS-CR#1", "hostname": "is-cr-01a.protonvpn.com", "entry_ip": "185.159.158.136", - "exit_ip": "190.184.199.4" + "exit_ip": [ + "190.184.199.4" + ] }, { "country": "Costa Rica", @@ -90337,7 +89864,9 @@ "name": "CR#1", "hostname": "cr-01.protonvpn.com", "entry_ip": "190.184.199.3", - "exit_ip": "190.184.199.3" + "exit_ip": [ + "190.184.199.3" + ] }, { "country": "Costa Rica", @@ -90346,25 +89875,11 @@ "name": "CR#2", "hostname": "lxc-cr-01.protonvpn.com", "entry_ip": "190.184.199.2", - "exit_ip": "190.184.199.4" - }, - { - "country": "Costa Rica", - "region": "", - "city": "San José", - "name": "CR#3", - "hostname": "lxc-cr-01.protonvpn.com", - "entry_ip": "190.184.199.2", - "exit_ip": "190.184.199.7" - }, - { - "country": "Costa Rica", - "region": "", - "city": "San José", - "name": "CR#4", - "hostname": "lxc-cr-01.protonvpn.com", - "entry_ip": "190.184.199.2", - "exit_ip": "190.184.199.6" + "exit_ip": [ + "190.184.199.4", + "190.184.199.7", + "190.184.199.6" + ] }, { "country": "Cyprus", @@ -90373,7 +89888,9 @@ "name": "CH-CY#1", "hostname": "ch-cy-01a.protonvpn.com", "entry_ip": "185.159.157.165", - "exit_ip": "85.132.252.36" + "exit_ip": [ + "85.132.252.36" + ] }, { "country": "Cyprus", @@ -90382,7 +89899,9 @@ "name": "CY#1", "hostname": "cy-01.protonvpn.net", "entry_ip": "85.132.252.35", - "exit_ip": "85.132.252.35" + "exit_ip": [ + "85.132.252.35" + ] }, { "country": "Cyprus", @@ -90391,43 +89910,11 @@ "name": "CY#2", "hostname": "node-cy-01.protonvpn.net", "entry_ip": "85.132.252.34", - "exit_ip": "85.132.252.36" - }, - { - "country": "Cyprus", - "region": "", - "city": "Limassol", - "name": "CY#3", - "hostname": "node-cy-01.protonvpn.net", - "entry_ip": "85.132.252.34", - "exit_ip": "85.132.252.37" - }, - { - "country": "Cyprus", - "region": "", - "city": "Limassol", - "name": "CY#4", - "hostname": "node-cy-01.protonvpn.net", - "entry_ip": "85.132.252.34", - "exit_ip": "85.132.252.38" - }, - { - "country": "Czech Republic", - "region": "", - "city": "", - "name": "CH-CZ#1", - "hostname": "ch-cz-01a.protonvpn.com", - "entry_ip": "185.159.157.38", - "exit_ip": "185.242.6.5" - }, - { - "country": "Czech Republic", - "region": "", - "city": "", - "name": "CH-CZ#1", - "hostname": "ch-cz-01b.protonvpn.com", - "entry_ip": "185.159.157.39", - "exit_ip": "185.242.6.6" + "exit_ip": [ + "85.132.252.36", + "85.132.252.37", + "85.132.252.38" + ] }, { "country": "Czech Republic", @@ -90436,16 +89923,9 @@ "name": "CH-CZ#1", "hostname": "ch-cz-01c.protonvpn.com", "entry_ip": "185.159.157.69", - "exit_ip": "217.138.220.198" - }, - { - "country": "Czech Republic", - "region": "", - "city": "Prague", - "name": "CZ#1", - "hostname": "cz-01.protonvpn.net", - "entry_ip": "185.242.6.3", - "exit_ip": "185.242.6.3" + "exit_ip": [ + "217.138.220.198" + ] }, { "country": "Czech Republic", @@ -90454,25 +89934,11 @@ "name": "CZ#13", "hostname": "cz-13.protonvpn.net", "entry_ip": "217.138.220.195", - "exit_ip": "217.138.220.195" - }, - { - "country": "Czech Republic", - "region": "", - "city": "Prague", - "name": "CZ#14", - "hostname": "cz-13.protonvpn.net", - "entry_ip": "217.138.220.195", - "exit_ip": "217.138.220.196" - }, - { - "country": "Czech Republic", - "region": "", - "city": "Prague", - "name": "CZ#15", - "hostname": "cz-13.protonvpn.net", - "entry_ip": "217.138.220.195", - "exit_ip": "217.138.220.197" + "exit_ip": [ + "217.138.220.195", + "217.138.220.196", + "217.138.220.197" + ] }, { "country": "Czech Republic", @@ -90481,70 +89947,13 @@ "name": "CZ#16", "hostname": "node-cz-03.protonvpn.net", "entry_ip": "217.138.220.194", - "exit_ip": "217.138.220.198" - }, - { - "country": "Czech Republic", - "region": "", - "city": "Prague", - "name": "CZ#17", - "hostname": "node-cz-03.protonvpn.net", - "entry_ip": "217.138.220.194", - "exit_ip": "217.138.220.199" - }, - { - "country": "Czech Republic", - "region": "", - "city": "Prague", - "name": "CZ#18", - "hostname": "node-cz-03.protonvpn.net", - "entry_ip": "217.138.220.194", - "exit_ip": "217.138.220.200" - }, - { - "country": "Czech Republic", - "region": "", - "city": "Prague", - "name": "CZ#19", - "hostname": "node-cz-03.protonvpn.net", - "entry_ip": "217.138.220.194", - "exit_ip": "217.138.220.201" - }, - { - "country": "Czech Republic", - "region": "", - "city": "Prague", - "name": "CZ#2", - "hostname": "cz-01.protonvpn.net", - "entry_ip": "185.242.6.3", - "exit_ip": "185.242.6.4" - }, - { - "country": "Czech Republic", - "region": "", - "city": "Prague", - "name": "CZ#20", - "hostname": "node-cz-03.protonvpn.net", - "entry_ip": "217.138.220.194", - "exit_ip": "217.138.220.202" - }, - { - "country": "Czech Republic", - "region": "", - "city": "Prague", - "name": "CZ#3", - "hostname": "node-cz-01.protonvpn.net", - "entry_ip": "185.242.6.2", - "exit_ip": "185.242.6.5" - }, - { - "country": "Czech Republic", - "region": "", - "city": "Prague", - "name": "CZ#4", - "hostname": "node-cz-01.protonvpn.net", - "entry_ip": "185.242.6.2", - "exit_ip": "185.242.6.6" + "exit_ip": [ + "217.138.220.198", + "217.138.220.199", + "217.138.220.200", + "217.138.220.201", + "217.138.220.202" + ] }, { "country": "Denmark", @@ -90553,7 +89962,9 @@ "name": "CH-DK#1", "hostname": "ch-dk-01a.protonvpn.com", "entry_ip": "185.159.157.36", - "exit_ip": "95.174.65.5" + "exit_ip": [ + "95.174.65.5" + ] }, { "country": "Denmark", @@ -90562,7 +89973,9 @@ "name": "CH-DK#1", "hostname": "ch-dk-01b.protonvpn.com", "entry_ip": "185.159.157.37", - "exit_ip": "193.29.107.246" + "exit_ip": [ + "193.29.107.246" + ] }, { "country": "Denmark", @@ -90571,7 +89984,9 @@ "name": "IS-DK#1", "hostname": "is-dk-01a.protonvpn.com", "entry_ip": "185.159.158.153", - "exit_ip": "37.120.232.52" + "exit_ip": [ + "37.120.232.52" + ] }, { "country": "Denmark", @@ -90580,7 +89995,10 @@ "name": "DK#1", "hostname": "dk-01.protonvpn.net", "entry_ip": "95.174.65.3", - "exit_ip": "95.174.65.3" + "exit_ip": [ + "95.174.65.3", + "95.174.65.4" + ] }, { "country": "Denmark", @@ -90589,25 +90007,11 @@ "name": "DK#13", "hostname": "dk-13.protonvpn.net", "entry_ip": "193.29.107.243", - "exit_ip": "193.29.107.243" - }, - { - "country": "Denmark", - "region": "", - "city": "Copenhagen", - "name": "DK#14", - "hostname": "dk-13.protonvpn.net", - "entry_ip": "193.29.107.243", - "exit_ip": "193.29.107.244" - }, - { - "country": "Denmark", - "region": "", - "city": "Copenhagen", - "name": "DK#15", - "hostname": "dk-13.protonvpn.net", - "entry_ip": "193.29.107.243", - "exit_ip": "193.29.107.245" + "exit_ip": [ + "193.29.107.243", + "193.29.107.244", + "193.29.107.245" + ] }, { "country": "Denmark", @@ -90616,52 +90020,13 @@ "name": "DK#16", "hostname": "node-dk-03.protonvpn.net", "entry_ip": "193.29.107.242", - "exit_ip": "193.29.107.246" - }, - { - "country": "Denmark", - "region": "", - "city": "Copenhagen", - "name": "DK#17", - "hostname": "node-dk-03.protonvpn.net", - "entry_ip": "193.29.107.242", - "exit_ip": "193.29.107.247" - }, - { - "country": "Denmark", - "region": "", - "city": "Copenhagen", - "name": "DK#18", - "hostname": "node-dk-03.protonvpn.net", - "entry_ip": "193.29.107.242", - "exit_ip": "193.29.107.248" - }, - { - "country": "Denmark", - "region": "", - "city": "Copenhagen", - "name": "DK#19", - "hostname": "node-dk-03.protonvpn.net", - "entry_ip": "193.29.107.242", - "exit_ip": "193.29.107.249" - }, - { - "country": "Denmark", - "region": "", - "city": "Copenhagen", - "name": "DK#2", - "hostname": "dk-01.protonvpn.net", - "entry_ip": "95.174.65.3", - "exit_ip": "95.174.65.4" - }, - { - "country": "Denmark", - "region": "", - "city": "Copenhagen", - "name": "DK#20", - "hostname": "node-dk-03.protonvpn.net", - "entry_ip": "193.29.107.242", - "exit_ip": "193.29.107.250" + "exit_ip": [ + "193.29.107.246", + "193.29.107.247", + "193.29.107.248", + "193.29.107.249", + "193.29.107.250" + ] }, { "country": "Denmark", @@ -90670,7 +90035,9 @@ "name": "DK#21", "hostname": "dk-21.protonvpn.net", "entry_ip": "37.120.232.51", - "exit_ip": "37.120.232.51" + "exit_ip": [ + "37.120.232.51" + ] }, { "country": "Denmark", @@ -90679,25 +90046,11 @@ "name": "DK#22", "hostname": "node-dk-04.protonvpn.net", "entry_ip": "37.120.232.50", - "exit_ip": "37.120.232.52" - }, - { - "country": "Denmark", - "region": "", - "city": "Copenhagen", - "name": "DK#23", - "hostname": "node-dk-04.protonvpn.net", - "entry_ip": "37.120.232.50", - "exit_ip": "37.120.232.53" - }, - { - "country": "Denmark", - "region": "", - "city": "Copenhagen", - "name": "DK#24", - "hostname": "node-dk-04.protonvpn.net", - "entry_ip": "37.120.232.50", - "exit_ip": "37.120.232.54" + "exit_ip": [ + "37.120.232.52", + "37.120.232.53", + "37.120.232.54" + ] }, { "country": "Denmark", @@ -90706,16 +90059,10 @@ "name": "DK#3", "hostname": "node-dk-01.protonvpn.net", "entry_ip": "95.174.65.2", - "exit_ip": "95.174.65.5" - }, - { - "country": "Denmark", - "region": "", - "city": "Copenhagen", - "name": "DK#4", - "hostname": "node-dk-01.protonvpn.net", - "entry_ip": "95.174.65.2", - "exit_ip": "95.174.65.6" + "exit_ip": [ + "95.174.65.5", + "95.174.65.6" + ] }, { "country": "Estonia", @@ -90724,7 +90071,9 @@ "name": "CH-EE#1", "hostname": "ch-ee-01a.protonvpn.com", "entry_ip": "185.159.157.106", - "exit_ip": "165.231.178.23" + "exit_ip": [ + "165.231.178.23" + ] }, { "country": "Estonia", @@ -90733,7 +90082,9 @@ "name": "SE-EE#1", "hostname": "se-ee-01b.protonvpn.com", "entry_ip": "185.159.156.49", - "exit_ip": "165.231.178.22" + "exit_ip": [ + "165.231.178.22" + ] }, { "country": "Estonia", @@ -90742,25 +90093,11 @@ "name": "EE#1", "hostname": "ee-01.protonvpn.com", "entry_ip": "165.231.178.18", - "exit_ip": "165.231.178.18" - }, - { - "country": "Estonia", - "region": "", - "city": "Tallinn", - "name": "EE#2", - "hostname": "ee-01.protonvpn.com", - "entry_ip": "165.231.178.18", - "exit_ip": "165.231.178.19" - }, - { - "country": "Estonia", - "region": "", - "city": "Tallinn", - "name": "EE#3", - "hostname": "ee-01.protonvpn.com", - "entry_ip": "165.231.178.18", - "exit_ip": "165.231.178.20" + "exit_ip": [ + "165.231.178.18", + "165.231.178.19", + "165.231.178.20" + ] }, { "country": "Estonia", @@ -90769,43 +90106,13 @@ "name": "EE#4", "hostname": "lxc-ee-01.protonvpn.com", "entry_ip": "165.231.178.10", - "exit_ip": "165.231.178.21" - }, - { - "country": "Estonia", - "region": "", - "city": "Tallinn", - "name": "EE#5", - "hostname": "lxc-ee-01.protonvpn.com", - "entry_ip": "165.231.178.10", - "exit_ip": "165.231.178.22" - }, - { - "country": "Estonia", - "region": "", - "city": "Tallinn", - "name": "EE#6", - "hostname": "lxc-ee-01.protonvpn.com", - "entry_ip": "165.231.178.10", - "exit_ip": "165.231.178.23" - }, - { - "country": "Estonia", - "region": "", - "city": "Tallinn", - "name": "EE#7", - "hostname": "lxc-ee-01.protonvpn.com", - "entry_ip": "165.231.178.10", - "exit_ip": "165.231.178.24" - }, - { - "country": "Estonia", - "region": "", - "city": "Tallinn", - "name": "EE#8", - "hostname": "lxc-ee-01.protonvpn.com", - "entry_ip": "165.231.178.10", - "exit_ip": "165.231.178.25" + "exit_ip": [ + "165.231.178.21", + "165.231.178.22", + "165.231.178.23", + "165.231.178.24", + "165.231.178.25" + ] }, { "country": "Finland", @@ -90814,7 +90121,9 @@ "name": "CH-FI#1", "hostname": "ch-fi-01a.protonvpn.com", "entry_ip": "185.159.157.107", - "exit_ip": "194.34.132.57" + "exit_ip": [ + "194.34.132.57" + ] }, { "country": "Finland", @@ -90823,7 +90132,9 @@ "name": "SE-FI#1", "hostname": "se-fi-01b.protonvpn.com", "entry_ip": "185.159.156.27", - "exit_ip": "194.34.132.58" + "exit_ip": [ + "194.34.132.58" + ] }, { "country": "Finland", @@ -90832,7 +90143,9 @@ "name": "SE-FI#1", "hostname": "se-fi-01c.protonvpn.com", "entry_ip": "185.159.156.28", - "exit_ip": "194.34.132.59" + "exit_ip": [ + "194.34.132.59" + ] }, { "country": "Finland", @@ -90841,7 +90154,9 @@ "name": "FI#1", "hostname": "fi-01.protonvpn.com", "entry_ip": "194.34.132.56", - "exit_ip": "194.34.132.56" + "exit_ip": [ + "194.34.132.56" + ] }, { "country": "Finland", @@ -90850,25 +90165,11 @@ "name": "FI#2", "hostname": "lxc-fi-01.protonvpn.com", "entry_ip": "194.34.132.55", - "exit_ip": "194.34.132.57" - }, - { - "country": "Finland", - "region": "", - "city": "Helsinki", - "name": "FI#3", - "hostname": "lxc-fi-01.protonvpn.com", - "entry_ip": "194.34.132.55", - "exit_ip": "194.34.132.58" - }, - { - "country": "Finland", - "region": "", - "city": "Helsinki", - "name": "FI#4", - "hostname": "lxc-fi-01.protonvpn.com", - "entry_ip": "194.34.132.55", - "exit_ip": "194.34.132.59" + "exit_ip": [ + "194.34.132.57", + "194.34.132.58", + "194.34.132.59" + ] }, { "country": "France", @@ -90877,7 +90178,9 @@ "name": "CH-FR#1", "hostname": "ch-fr-01a.protonvpn.com", "entry_ip": "185.159.157.90", - "exit_ip": "45.89.174.70" + "exit_ip": [ + "45.89.174.70" + ] }, { "country": "France", @@ -90886,7 +90189,9 @@ "name": "CH-FR#1", "hostname": "ch-fr-01b.protonvpn.com", "entry_ip": "185.159.157.126", - "exit_ip": "45.83.90.148" + "exit_ip": [ + "45.83.90.148" + ] }, { "country": "France", @@ -90895,7 +90200,9 @@ "name": "CH-FR#1", "hostname": "ch-fr-01c.protonvpn.com", "entry_ip": "185.159.157.148", - "exit_ip": "188.241.83.116" + "exit_ip": [ + "188.241.83.116" + ] }, { "country": "France", @@ -90904,7 +90211,9 @@ "name": "CH-FR#1", "hostname": "ch-fr-01d.protonvpn.com", "entry_ip": "185.159.157.149", - "exit_ip": "188.241.83.124" + "exit_ip": [ + "188.241.83.124" + ] }, { "country": "France", @@ -90913,7 +90222,9 @@ "name": "CH-FR#1", "hostname": "ch-fr-01e.protonvpn.com", "entry_ip": "185.159.157.150", - "exit_ip": "188.241.83.108" + "exit_ip": [ + "188.241.83.108" + ] }, { "country": "France", @@ -90922,7 +90233,9 @@ "name": "CH-FR#1", "hostname": "ch-fr-01f.protonvpn.com", "entry_ip": "185.159.157.63", - "exit_ip": "217.138.207.230" + "exit_ip": [ + "217.138.207.230" + ] }, { "country": "France", @@ -90931,7 +90244,9 @@ "name": "FR#13-TOR", "hostname": "fr-13-tor.protonvpn.net", "entry_ip": "45.128.134.199", - "exit_ip": "45.128.134.199" + "exit_ip": [ + "45.128.134.199" + ] }, { "country": "France", @@ -90940,7 +90255,9 @@ "name": "IS-FR#1", "hostname": "is-fr-01a.protonvpn.com", "entry_ip": "185.159.158.166", - "exit_ip": "188.241.83.100" + "exit_ip": [ + "188.241.83.100" + ] }, { "country": "France", @@ -90949,7 +90266,9 @@ "name": "SE-FR#1", "hostname": "se-fr-01c.protonvpn.com", "entry_ip": "185.159.156.21", - "exit_ip": "194.59.249.21" + "exit_ip": [ + "194.59.249.21" + ] }, { "country": "France", @@ -90958,34 +90277,9 @@ "name": "SE-FR#1", "hostname": "se-fr-01e.protonvpn.com", "entry_ip": "185.159.156.68", - "exit_ip": "45.128.134.197" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#10", - "hostname": "lxc-fr-03.protonvpn.com", - "entry_ip": "194.59.249.18", - "exit_ip": "194.59.249.20" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#11", - "hostname": "lxc-fr-03.protonvpn.com", - "entry_ip": "194.59.249.18", - "exit_ip": "194.59.249.21" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#12", - "hostname": "lxc-fr-03.protonvpn.com", - "entry_ip": "194.59.249.18", - "exit_ip": "194.59.249.22" + "exit_ip": [ + "45.128.134.197" + ] }, { "country": "France", @@ -90994,25 +90288,11 @@ "name": "FR#21", "hostname": "fr-21.protonvpn.net", "entry_ip": "217.138.207.227", - "exit_ip": "217.138.207.227" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#22", - "hostname": "fr-21.protonvpn.net", - "entry_ip": "217.138.207.227", - "exit_ip": "217.138.207.228" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#23", - "hostname": "fr-21.protonvpn.net", - "entry_ip": "217.138.207.227", - "exit_ip": "217.138.207.229" + "exit_ip": [ + "217.138.207.227", + "217.138.207.228", + "217.138.207.229" + ] }, { "country": "France", @@ -91021,43 +90301,13 @@ "name": "FR#24", "hostname": "node-fr-05.protonvpn.net", "entry_ip": "217.138.207.226", - "exit_ip": "217.138.207.230" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#25", - "hostname": "node-fr-05.protonvpn.net", - "entry_ip": "217.138.207.226", - "exit_ip": "217.138.207.231" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#26", - "hostname": "node-fr-05.protonvpn.net", - "entry_ip": "217.138.207.226", - "exit_ip": "217.138.207.232" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#27", - "hostname": "node-fr-05.protonvpn.net", - "entry_ip": "217.138.207.226", - "exit_ip": "217.138.207.233" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#28", - "hostname": "node-fr-05.protonvpn.net", - "entry_ip": "217.138.207.226", - "exit_ip": "217.138.207.234" + "exit_ip": [ + "217.138.207.230", + "217.138.207.231", + "217.138.207.232", + "217.138.207.233", + "217.138.207.234" + ] }, { "country": "France", @@ -91066,25 +90316,11 @@ "name": "FR#29", "hostname": "fr-29.protonvpn.net", "entry_ip": "45.89.174.67", - "exit_ip": "45.89.174.67" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#30", - "hostname": "fr-29.protonvpn.net", - "entry_ip": "45.89.174.67", - "exit_ip": "45.89.174.68" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#31", - "hostname": "fr-29.protonvpn.net", - "entry_ip": "45.89.174.67", - "exit_ip": "45.89.174.69" + "exit_ip": [ + "45.89.174.67", + "45.89.174.68", + "45.89.174.69" + ] }, { "country": "France", @@ -91093,43 +90329,13 @@ "name": "FR#32", "hostname": "node-fr-06.protonvpn.net", "entry_ip": "45.89.174.66", - "exit_ip": "45.89.174.70" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#33", - "hostname": "node-fr-06.protonvpn.net", - "entry_ip": "45.89.174.66", - "exit_ip": "45.89.174.71" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#34", - "hostname": "node-fr-06.protonvpn.net", - "entry_ip": "45.89.174.66", - "exit_ip": "45.89.174.72" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#35", - "hostname": "node-fr-06.protonvpn.net", - "entry_ip": "45.89.174.66", - "exit_ip": "45.89.174.73" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#36", - "hostname": "node-fr-06.protonvpn.net", - "entry_ip": "45.89.174.66", - "exit_ip": "45.89.174.74" + "exit_ip": [ + "45.89.174.70", + "45.89.174.71", + "45.89.174.72", + "45.89.174.73", + "45.89.174.74" + ] }, { "country": "France", @@ -91138,16 +90344,10 @@ "name": "FR#37", "hostname": "fr-37.protonvpn.net", "entry_ip": "45.128.134.195", - "exit_ip": "45.128.134.195" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#38", - "hostname": "fr-37.protonvpn.net", - "entry_ip": "45.128.134.195", - "exit_ip": "45.128.134.196" + "exit_ip": [ + "45.128.134.195", + "45.128.134.196" + ] }, { "country": "France", @@ -91156,16 +90356,10 @@ "name": "FR#39", "hostname": "node-fr-07.protonvpn.net", "entry_ip": "45.128.134.194", - "exit_ip": "45.128.134.197" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#40", - "hostname": "node-fr-07.protonvpn.net", - "entry_ip": "45.128.134.194", - "exit_ip": "45.128.134.198" + "exit_ip": [ + "45.128.134.197", + "45.128.134.198" + ] }, { "country": "France", @@ -91174,7 +90368,9 @@ "name": "FR#41", "hostname": "fr-41.protonvpn.net", "entry_ip": "45.83.90.147", - "exit_ip": "45.83.90.147" + "exit_ip": [ + "45.83.90.147" + ] }, { "country": "France", @@ -91183,25 +90379,11 @@ "name": "FR#42", "hostname": "node-fr-08.protonvpn.net", "entry_ip": "45.83.90.146", - "exit_ip": "45.83.90.148" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#43", - "hostname": "node-fr-08.protonvpn.net", - "entry_ip": "45.83.90.146", - "exit_ip": "45.83.90.149" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#44", - "hostname": "node-fr-08.protonvpn.net", - "entry_ip": "45.83.90.146", - "exit_ip": "45.83.90.150" + "exit_ip": [ + "45.83.90.148", + "45.83.90.149", + "45.83.90.150" + ] }, { "country": "France", @@ -91210,7 +90392,9 @@ "name": "FR#45", "hostname": "fr-45.protonvpn.net", "entry_ip": "188.241.83.115", - "exit_ip": "188.241.83.115" + "exit_ip": [ + "188.241.83.115" + ] }, { "country": "France", @@ -91219,25 +90403,11 @@ "name": "FR#46", "hostname": "node-fr-09.protonvpn.net", "entry_ip": "188.241.83.114", - "exit_ip": "188.241.83.116" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#47", - "hostname": "node-fr-09.protonvpn.net", - "entry_ip": "188.241.83.114", - "exit_ip": "188.241.83.117" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#48", - "hostname": "node-fr-09.protonvpn.net", - "entry_ip": "188.241.83.114", - "exit_ip": "188.241.83.118" + "exit_ip": [ + "188.241.83.116", + "188.241.83.117", + "188.241.83.118" + ] }, { "country": "France", @@ -91246,7 +90416,9 @@ "name": "FR#49", "hostname": "fr-49.protonvpn.net", "entry_ip": "188.241.83.123", - "exit_ip": "188.241.83.123" + "exit_ip": [ + "188.241.83.123" + ] }, { "country": "France", @@ -91255,25 +90427,11 @@ "name": "FR#50", "hostname": "node-fr-10.protonvpn.net", "entry_ip": "188.241.83.122", - "exit_ip": "188.241.83.124" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#51", - "hostname": "node-fr-10.protonvpn.net", - "entry_ip": "188.241.83.122", - "exit_ip": "188.241.83.125" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#52", - "hostname": "node-fr-10.protonvpn.net", - "entry_ip": "188.241.83.122", - "exit_ip": "188.241.83.126" + "exit_ip": [ + "188.241.83.124", + "188.241.83.125", + "188.241.83.126" + ] }, { "country": "France", @@ -91282,7 +90440,9 @@ "name": "FR#53", "hostname": "fr-53.protonvpn.com", "entry_ip": "188.241.83.99", - "exit_ip": "188.241.83.99" + "exit_ip": [ + "188.241.83.99" + ] }, { "country": "France", @@ -91291,25 +90451,11 @@ "name": "FR#54", "hostname": "lxc-fr-11.protonvpn.com", "entry_ip": "188.241.83.98", - "exit_ip": "188.241.83.100" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#55", - "hostname": "lxc-fr-11.protonvpn.com", - "entry_ip": "188.241.83.98", - "exit_ip": "188.241.83.101" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#56", - "hostname": "lxc-fr-11.protonvpn.com", - "entry_ip": "188.241.83.98", - "exit_ip": "188.241.83.102" + "exit_ip": [ + "188.241.83.100", + "188.241.83.101", + "188.241.83.102" + ] }, { "country": "France", @@ -91318,7 +90464,9 @@ "name": "FR#57", "hostname": "fr-57.protonvpn.com", "entry_ip": "188.241.83.107", - "exit_ip": "188.241.83.107" + "exit_ip": [ + "188.241.83.107" + ] }, { "country": "France", @@ -91327,25 +90475,11 @@ "name": "FR#58", "hostname": "lxc-fr-12.protonvpn.com", "entry_ip": "188.241.83.106", - "exit_ip": "188.241.83.108" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#59", - "hostname": "lxc-fr-12.protonvpn.com", - "entry_ip": "188.241.83.106", - "exit_ip": "188.241.83.109" - }, - { - "country": "France", - "region": "", - "city": "Paris", - "name": "FR#60", - "hostname": "lxc-fr-12.protonvpn.com", - "entry_ip": "188.241.83.106", - "exit_ip": "188.241.83.110" + "exit_ip": [ + "188.241.83.108", + "188.241.83.109", + "188.241.83.110" + ] }, { "country": "France", @@ -91354,7 +90488,12 @@ "name": "FR#9", "hostname": "lxc-fr-03.protonvpn.com", "entry_ip": "194.59.249.18", - "exit_ip": "194.59.249.19" + "exit_ip": [ + "194.59.249.19", + "194.59.249.20", + "194.59.249.21", + "194.59.249.22" + ] }, { "country": "Germany", @@ -91363,16 +90502,9 @@ "name": "CH-DE#1", "hostname": "ch-de-01a.protonvpn.com", "entry_ip": "185.159.157.77", - "exit_ip": "37.120.217.166" - }, - { - "country": "Germany", - "region": "", - "city": "", - "name": "CH-DE#1", - "hostname": "ch-de-01b.protonvpn.com", - "entry_ip": "185.159.157.94", - "exit_ip": "78.159.113.193" + "exit_ip": [ + "37.120.217.166" + ] }, { "country": "Germany", @@ -91381,25 +90513,20 @@ "name": "CH-DE#1", "hostname": "ch-de-01c.protonvpn.com", "entry_ip": "185.159.157.102", - "exit_ip": "91.207.172.188" + "exit_ip": [ + "91.207.172.188" + ] }, { "country": "Germany", "region": "", "city": "", - "name": "CH-DE#1", - "hostname": "ch-de-01d.protonvpn.com", - "entry_ip": "185.159.157.127", - "exit_ip": "46.165.233.58" - }, - { - "country": "Germany", - "region": "", - "city": "", - "name": "CH-DE#1", - "hostname": "ch-de-01e.protonvpn.com", - "entry_ip": "185.159.157.134", - "exit_ip": "46.165.234.59" + "name": "DE#53-TOR", + "hostname": "de-53-tor.protonvpn.net", + "entry_ip": "194.126.177.9", + "exit_ip": [ + "194.126.177.9" + ] }, { "country": "Germany", @@ -91408,16 +90535,20 @@ "name": "DE#7-TOR", "hostname": "de-07-tor.protonvpn.net", "entry_ip": "37.120.217.87", - "exit_ip": "37.120.217.87" + "exit_ip": [ + "37.120.217.87" + ] }, { "country": "Germany", "region": "", "city": "", "name": "IS-DE#1", - "hostname": "is-de-01a.protonvpn.com", - "entry_ip": "185.159.158.106", - "exit_ip": "37.58.58.232" + "hostname": "is-de-01b.protonvpn.com", + "entry_ip": "185.159.158.178", + "exit_ip": [ + "194.126.177.16" + ] }, { "country": "Germany", @@ -91426,7 +90557,9 @@ "name": "IS-DE#1", "hostname": "is-de-01c.protonvpn.com", "entry_ip": "185.159.158.139", - "exit_ip": "37.120.217.167" + "exit_ip": [ + "37.120.217.167" + ] }, { "country": "Germany", @@ -91435,7 +90568,9 @@ "name": "IS-DE#1", "hostname": "is-de-01d.protonvpn.com", "entry_ip": "185.159.158.144", - "exit_ip": "37.120.217.84" + "exit_ip": [ + "37.120.217.84" + ] }, { "country": "Germany", @@ -91444,7 +90579,9 @@ "name": "IS-DE#1", "hostname": "is-de-01e.protonvpn.com", "entry_ip": "185.159.158.156", - "exit_ip": "94.198.40.100" + "exit_ip": [ + "94.198.40.100" + ] }, { "country": "Germany", @@ -91453,7 +90590,31 @@ "name": "IS-DE#1", "hostname": "is-de-01f.protonvpn.com", "entry_ip": "185.159.158.157", - "exit_ip": "93.177.73.36" + "exit_ip": [ + "93.177.73.36" + ] + }, + { + "country": "Germany", + "region": "", + "city": "", + "name": "IS-DE#1", + "hostname": "is-de-01g.protonvpn.com", + "entry_ip": "185.159.158.179", + "exit_ip": [ + "194.126.177.32" + ] + }, + { + "country": "Germany", + "region": "", + "city": "", + "name": "IS-DE#1", + "hostname": "is-de-01h.protonvpn.com", + "entry_ip": "185.159.158.180", + "exit_ip": [ + "194.126.177.48" + ] }, { "country": "Germany", @@ -91462,25 +90623,11 @@ "name": "DE#13", "hostname": "de-13.protonvpn.com", "entry_ip": "37.120.217.163", - "exit_ip": "37.120.217.163" - }, - { - "country": "Germany", - "region": "", - "city": "Berlin", - "name": "DE#14", - "hostname": "de-13.protonvpn.com", - "entry_ip": "37.120.217.163", - "exit_ip": "37.120.217.164" - }, - { - "country": "Germany", - "region": "", - "city": "Berlin", - "name": "DE#15", - "hostname": "de-13.protonvpn.com", - "entry_ip": "37.120.217.163", - "exit_ip": "37.120.217.165" + "exit_ip": [ + "37.120.217.163", + "37.120.217.164", + "37.120.217.165" + ] }, { "country": "Germany", @@ -91489,43 +90636,13 @@ "name": "DE#16", "hostname": "lxc-de-04.protonvpn.com", "entry_ip": "37.120.217.162", - "exit_ip": "37.120.217.166" - }, - { - "country": "Germany", - "region": "", - "city": "Berlin", - "name": "DE#17", - "hostname": "lxc-de-04.protonvpn.com", - "entry_ip": "37.120.217.162", - "exit_ip": "37.120.217.167" - }, - { - "country": "Germany", - "region": "", - "city": "Berlin", - "name": "DE#18", - "hostname": "lxc-de-04.protonvpn.com", - "entry_ip": "37.120.217.162", - "exit_ip": "37.120.217.168" - }, - { - "country": "Germany", - "region": "", - "city": "Berlin", - "name": "DE#19", - "hostname": "lxc-de-04.protonvpn.com", - "entry_ip": "37.120.217.162", - "exit_ip": "37.120.217.169" - }, - { - "country": "Germany", - "region": "", - "city": "Berlin", - "name": "DE#20", - "hostname": "lxc-de-04.protonvpn.com", - "entry_ip": "37.120.217.162", - "exit_ip": "37.120.217.170" + "exit_ip": [ + "37.120.217.166", + "37.120.217.167", + "37.120.217.168", + "37.120.217.169", + "37.120.217.170" + ] }, { "country": "Germany", @@ -91534,7 +90651,9 @@ "name": "DE#33", "hostname": "de-33.protonvpn.net", "entry_ip": "37.120.217.83", - "exit_ip": "37.120.217.83" + "exit_ip": [ + "37.120.217.83" + ] }, { "country": "Germany", @@ -91543,34 +90662,11 @@ "name": "DE#34", "hostname": "node-de-07.protonvpn.net", "entry_ip": "37.120.217.82", - "exit_ip": "37.120.217.84" - }, - { - "country": "Germany", - "region": "", - "city": "Berlin", - "name": "DE#35", - "hostname": "node-de-07.protonvpn.net", - "entry_ip": "37.120.217.82", - "exit_ip": "37.120.217.85" - }, - { - "country": "Germany", - "region": "", - "city": "Berlin", - "name": "DE#36", - "hostname": "node-de-07.protonvpn.net", - "entry_ip": "37.120.217.82", - "exit_ip": "37.120.217.86" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#1", - "hostname": "de-01.protonvpn.net", - "entry_ip": "37.58.58.229", - "exit_ip": "37.58.58.229" + "exit_ip": [ + "37.120.217.84", + "37.120.217.85", + "37.120.217.86" + ] }, { "country": "Germany", @@ -91579,106 +90675,11 @@ "name": "DE#10", "hostname": "node-de-03.protonvpn.net", "entry_ip": "82.102.16.194", - "exit_ip": "82.102.16.196" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#11", - "hostname": "node-de-03.protonvpn.net", - "entry_ip": "82.102.16.194", - "exit_ip": "82.102.16.197" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#12", - "hostname": "node-de-03.protonvpn.net", - "entry_ip": "82.102.16.194", - "exit_ip": "82.102.16.198" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#2", - "hostname": "de-01.protonvpn.net", - "entry_ip": "37.58.58.229", - "exit_ip": "37.58.58.230" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#21", - "hostname": "de-21.protonvpn.net", - "entry_ip": "78.159.96.193", - "exit_ip": "78.159.96.193" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#22", - "hostname": "de-21.protonvpn.net", - "entry_ip": "78.159.96.193", - "exit_ip": "78.159.96.195" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#23", - "hostname": "de-21.protonvpn.net", - "entry_ip": "78.159.96.193", - "exit_ip": "78.159.96.202" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#24", - "hostname": "node-de-05.protonvpn.net", - "entry_ip": "78.159.99.15", - "exit_ip": "78.159.113.193" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#25", - "hostname": "node-de-05.protonvpn.net", - "entry_ip": "78.159.99.15", - "exit_ip": "78.159.113.194" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#26", - "hostname": "node-de-05.protonvpn.net", - "entry_ip": "78.159.99.15", - "exit_ip": "78.159.113.195" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#27", - "hostname": "node-de-05.protonvpn.net", - "entry_ip": "78.159.99.15", - "exit_ip": "78.159.113.196" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#28", - "hostname": "node-de-05.protonvpn.net", - "entry_ip": "78.159.99.15", - "exit_ip": "78.159.113.197" + "exit_ip": [ + "82.102.16.196", + "82.102.16.197", + "82.102.16.198" + ] }, { "country": "Germany", @@ -91687,16 +90688,9 @@ "name": "DE#29", "hostname": "de-29.protonvpn.net", "entry_ip": "91.207.172.187", - "exit_ip": "91.207.172.187" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#3", - "hostname": "node-de-01.protonvpn.net", - "entry_ip": "46.165.221.35", - "exit_ip": "37.58.58.231" + "exit_ip": [ + "91.207.172.187" + ] }, { "country": "Germany", @@ -91705,106 +90699,11 @@ "name": "DE#30", "hostname": "node-de-06.protonvpn.net", "entry_ip": "91.207.172.186", - "exit_ip": "91.207.172.188" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#31", - "hostname": "node-de-06.protonvpn.net", - "entry_ip": "91.207.172.186", - "exit_ip": "91.207.172.189" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#32", - "hostname": "node-de-06.protonvpn.net", - "entry_ip": "91.207.172.186", - "exit_ip": "91.207.172.190" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#37", - "hostname": "de-37.protonvpn.net", - "entry_ip": "46.165.233.56", - "exit_ip": "46.165.233.56" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#38", - "hostname": "de-37.protonvpn.net", - "entry_ip": "46.165.233.56", - "exit_ip": "46.165.233.57" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#39", - "hostname": "node-de-08.protonvpn.net", - "entry_ip": "46.165.209.79", - "exit_ip": "46.165.233.58" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#4", - "hostname": "node-de-01.protonvpn.net", - "entry_ip": "46.165.221.35", - "exit_ip": "37.58.58.232" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#40", - "hostname": "node-de-08.protonvpn.net", - "entry_ip": "46.165.209.79", - "exit_ip": "46.165.233.59" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#41", - "hostname": "de-41.protonvpn.com", - "entry_ip": "46.165.234.58", - "exit_ip": "46.165.234.58" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#42", - "hostname": "lxc-de-09.protonvpn.com", - "entry_ip": "46.165.209.108", - "exit_ip": "46.165.234.59" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#43", - "hostname": "lxc-de-09.protonvpn.com", - "entry_ip": "46.165.209.108", - "exit_ip": "84.16.235.129" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#44", - "hostname": "lxc-de-09.protonvpn.com", - "entry_ip": "46.165.209.108", - "exit_ip": "84.16.235.132" + "exit_ip": [ + "91.207.172.188", + "91.207.172.189", + "91.207.172.190" + ] }, { "country": "Germany", @@ -91813,7 +90712,9 @@ "name": "DE#45", "hostname": "de-45.protonvpn.com", "entry_ip": "94.198.40.99", - "exit_ip": "94.198.40.99" + "exit_ip": [ + "94.198.40.99" + ] }, { "country": "Germany", @@ -91822,25 +90723,11 @@ "name": "DE#46", "hostname": "lxc-de-10.protonvpn.com", "entry_ip": "94.198.40.98", - "exit_ip": "94.198.40.100" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#47", - "hostname": "lxc-de-10.protonvpn.com", - "entry_ip": "94.198.40.98", - "exit_ip": "94.198.40.101" - }, - { - "country": "Germany", - "region": "", - "city": "Frankfurt", - "name": "DE#48", - "hostname": "lxc-de-10.protonvpn.com", - "entry_ip": "94.198.40.98", - "exit_ip": "94.198.40.102" + "exit_ip": [ + "94.198.40.100", + "94.198.40.101", + "94.198.40.102" + ] }, { "country": "Germany", @@ -91849,7 +90736,9 @@ "name": "DE#49", "hostname": "de-49.protonvpn.com", "entry_ip": "93.177.73.35", - "exit_ip": "93.177.73.35" + "exit_ip": [ + "93.177.73.35" + ] }, { "country": "Germany", @@ -91858,25 +90747,106 @@ "name": "DE#50", "hostname": "lxc-de-11.protonvpn.com", "entry_ip": "93.177.73.34", - "exit_ip": "93.177.73.36" + "exit_ip": [ + "93.177.73.36", + "93.177.73.37", + "93.177.73.38" + ] }, { "country": "Germany", "region": "", "city": "Frankfurt", - "name": "DE#51", - "hostname": "lxc-de-11.protonvpn.com", - "entry_ip": "93.177.73.34", - "exit_ip": "93.177.73.37" + "name": "DE#54", + "hostname": "de-54.protonvpn.net", + "entry_ip": "194.126.177.10", + "exit_ip": [ + "194.126.177.24", + "194.126.177.25", + "194.126.177.26", + "194.126.177.27" + ] }, { "country": "Germany", "region": "", "city": "Frankfurt", - "name": "DE#52", - "hostname": "lxc-de-11.protonvpn.com", - "entry_ip": "93.177.73.34", - "exit_ip": "93.177.73.38" + "name": "DE#58", + "hostname": "node-de-12.protonvpn.net", + "entry_ip": "194.126.177.6", + "exit_ip": [ + "194.126.177.16", + "194.126.177.17", + "194.126.177.18", + "194.126.177.19", + "194.126.177.21", + "194.126.177.22", + "194.126.177.23" + ] + }, + { + "country": "Germany", + "region": "", + "city": "Frankfurt", + "name": "DE#65", + "hostname": "de-65.protonvpn.net", + "entry_ip": "194.126.177.11", + "exit_ip": [ + "194.126.177.40", + "194.126.177.41", + "194.126.177.42", + "194.126.177.43" + ] + }, + { + "country": "Germany", + "region": "", + "city": "Frankfurt", + "name": "DE#69", + "hostname": "node-de-13.protonvpn.net", + "entry_ip": "194.126.177.7", + "exit_ip": [ + "194.126.177.32", + "194.126.177.33", + "194.126.177.34", + "194.126.177.35", + "194.126.177.36", + "194.126.177.37", + "194.126.177.38", + "194.126.177.39" + ] + }, + { + "country": "Germany", + "region": "", + "city": "Frankfurt", + "name": "DE#77", + "hostname": "de-77.protonvpn.net", + "entry_ip": "194.126.177.12", + "exit_ip": [ + "194.126.177.56", + "194.126.177.57", + "194.126.177.58", + "194.126.177.59" + ] + }, + { + "country": "Germany", + "region": "", + "city": "Frankfurt", + "name": "DE#81", + "hostname": "node-de-14.protonvpn.net", + "entry_ip": "194.126.177.8", + "exit_ip": [ + "194.126.177.48", + "194.126.177.49", + "194.126.177.50", + "194.126.177.51", + "194.126.177.52", + "194.126.177.53", + "194.126.177.54", + "194.126.177.55" + ] }, { "country": "Germany", @@ -91885,7 +90855,9 @@ "name": "DE#9", "hostname": "de-09.protonvpn.net", "entry_ip": "82.102.16.195", - "exit_ip": "82.102.16.195" + "exit_ip": [ + "82.102.16.195" + ] }, { "country": "Greece", @@ -91894,7 +90866,9 @@ "name": "CH-GR#1", "hostname": "ch-gr-01a.protonvpn.com", "entry_ip": "185.159.157.65", - "exit_ip": "185.51.134.198" + "exit_ip": [ + "185.51.134.198" + ] }, { "country": "Greece", @@ -91903,25 +90877,11 @@ "name": "GR#1", "hostname": "gr-01.protonvpn.net", "entry_ip": "185.51.134.195", - "exit_ip": "185.51.134.195" - }, - { - "country": "Greece", - "region": "", - "city": "Athens", - "name": "GR#2", - "hostname": "gr-01.protonvpn.net", - "entry_ip": "185.51.134.195", - "exit_ip": "185.51.134.196" - }, - { - "country": "Greece", - "region": "", - "city": "Athens", - "name": "GR#3", - "hostname": "gr-01.protonvpn.net", - "entry_ip": "185.51.134.195", - "exit_ip": "185.51.134.197" + "exit_ip": [ + "185.51.134.195", + "185.51.134.196", + "185.51.134.197" + ] }, { "country": "Greece", @@ -91930,43 +90890,13 @@ "name": "GR#4", "hostname": "node-gr-01.protonvpn.net", "entry_ip": "185.51.134.194", - "exit_ip": "185.51.134.198" - }, - { - "country": "Greece", - "region": "", - "city": "Athens", - "name": "GR#5", - "hostname": "node-gr-01.protonvpn.net", - "entry_ip": "185.51.134.194", - "exit_ip": "185.51.134.199" - }, - { - "country": "Greece", - "region": "", - "city": "Athens", - "name": "GR#6", - "hostname": "node-gr-01.protonvpn.net", - "entry_ip": "185.51.134.194", - "exit_ip": "185.51.134.200" - }, - { - "country": "Greece", - "region": "", - "city": "Athens", - "name": "GR#7", - "hostname": "node-gr-01.protonvpn.net", - "entry_ip": "185.51.134.194", - "exit_ip": "185.51.134.201" - }, - { - "country": "Greece", - "region": "", - "city": "Athens", - "name": "GR#8", - "hostname": "node-gr-01.protonvpn.net", - "entry_ip": "185.51.134.194", - "exit_ip": "185.51.134.202" + "exit_ip": [ + "185.51.134.198", + "185.51.134.199", + "185.51.134.200", + "185.51.134.201", + "185.51.134.202" + ] }, { "country": "Hong Kong", @@ -91975,7 +90905,9 @@ "name": "CH-HK#1", "hostname": "ch-hk-01a.protonvpn.com", "entry_ip": "185.159.157.108", - "exit_ip": "209.58.185.234" + "exit_ip": [ + "209.58.185.234" + ] }, { "country": "Hong Kong", @@ -91984,7 +90916,9 @@ "name": "HK#5-TOR", "hostname": "hk-05-tor.protonvpn.net", "entry_ip": "209.58.185.154", - "exit_ip": "209.58.185.154" + "exit_ip": [ + "209.58.185.154" + ] }, { "country": "Hong Kong", @@ -91993,7 +90927,9 @@ "name": "IS-HK#1", "hostname": "is-hk-01a.protonvpn.com", "entry_ip": "185.159.158.152", - "exit_ip": "45.133.181.252" + "exit_ip": [ + "45.133.181.252" + ] }, { "country": "Hong Kong", @@ -92002,7 +90938,9 @@ "name": "SE-HK#1", "hostname": "se-hk-01a.protonvpn.com", "entry_ip": "185.159.156.11", - "exit_ip": "209.58.185.234" + "exit_ip": [ + "209.58.185.234" + ] }, { "country": "Hong Kong", @@ -92011,43 +90949,21 @@ "name": "SE-HK#1", "hostname": "se-hk-01c.protonvpn.com", "entry_ip": "185.159.156.65", - "exit_ip": "193.239.86.6" + "exit_ip": [ + "193.239.86.6" + ] }, { "country": "Hong Kong", "region": "", "city": "Hong Kong", - "name": "HK#10", - "hostname": "node-hk-02.protonvpn.net", - "entry_ip": "193.239.86.2", - "exit_ip": "193.239.86.7" - }, - { - "country": "Hong Kong", - "region": "", - "city": "Hong Kong", - "name": "HK#11", - "hostname": "node-hk-02.protonvpn.net", - "entry_ip": "193.239.86.2", - "exit_ip": "193.239.86.8" - }, - { - "country": "Hong Kong", - "region": "", - "city": "Hong Kong", - "name": "HK#12", - "hostname": "node-hk-02.protonvpn.net", - "entry_ip": "193.239.86.2", - "exit_ip": "193.239.86.9" - }, - { - "country": "Hong Kong", - "region": "", - "city": "Hong Kong", - "name": "HK#13", - "hostname": "node-hk-02.protonvpn.net", - "entry_ip": "193.239.86.2", - "exit_ip": "193.239.86.10" + "name": "HK#1", + "hostname": "hk-01.protonvpn.net", + "entry_ip": "209.58.185.231", + "exit_ip": [ + "209.58.185.231", + "209.58.185.232" + ] }, { "country": "Hong Kong", @@ -92056,7 +90972,9 @@ "name": "HK#14", "hostname": "hk-14.protonvpn.net", "entry_ip": "45.133.181.251", - "exit_ip": "45.133.181.251" + "exit_ip": [ + "45.133.181.251" + ] }, { "country": "Hong Kong", @@ -92065,25 +90983,11 @@ "name": "HK#15", "hostname": "node-hk-03.protonvpn.net", "entry_ip": "45.133.181.250", - "exit_ip": "45.133.181.252" - }, - { - "country": "Hong Kong", - "region": "", - "city": "Hong Kong", - "name": "HK#16", - "hostname": "node-hk-03.protonvpn.net", - "entry_ip": "45.133.181.250", - "exit_ip": "45.133.181.253" - }, - { - "country": "Hong Kong", - "region": "", - "city": "Hong Kong", - "name": "HK#17", - "hostname": "node-hk-03.protonvpn.net", - "entry_ip": "45.133.181.250", - "exit_ip": "45.133.181.254" + "exit_ip": [ + "45.133.181.252", + "45.133.181.253", + "45.133.181.254" + ] }, { "country": "Hong Kong", @@ -92092,16 +90996,10 @@ "name": "HK#3", "hostname": "node-hk-01.protonvpn.net", "entry_ip": "209.58.185.229", - "exit_ip": "209.58.185.233" - }, - { - "country": "Hong Kong", - "region": "", - "city": "Hong Kong", - "name": "HK#4", - "hostname": "node-hk-01.protonvpn.net", - "entry_ip": "209.58.185.229", - "exit_ip": "209.58.185.234" + "exit_ip": [ + "209.58.185.233", + "209.58.185.234" + ] }, { "country": "Hong Kong", @@ -92110,25 +91008,11 @@ "name": "HK#6", "hostname": "hk-06.protonvpn.net", "entry_ip": "193.239.86.3", - "exit_ip": "193.239.86.3" - }, - { - "country": "Hong Kong", - "region": "", - "city": "Hong Kong", - "name": "HK#7", - "hostname": "hk-06.protonvpn.net", - "entry_ip": "193.239.86.3", - "exit_ip": "193.239.86.4" - }, - { - "country": "Hong Kong", - "region": "", - "city": "Hong Kong", - "name": "HK#8", - "hostname": "hk-06.protonvpn.net", - "entry_ip": "193.239.86.3", - "exit_ip": "193.239.86.5" + "exit_ip": [ + "193.239.86.3", + "193.239.86.4", + "193.239.86.5" + ] }, { "country": "Hong Kong", @@ -92137,7 +91021,13 @@ "name": "HK#9", "hostname": "node-hk-02.protonvpn.net", "entry_ip": "193.239.86.2", - "exit_ip": "193.239.86.6" + "exit_ip": [ + "193.239.86.6", + "193.239.86.7", + "193.239.86.8", + "193.239.86.9", + "193.239.86.10" + ] }, { "country": "Hungary", @@ -92146,7 +91036,9 @@ "name": "CH-HU#1", "hostname": "ch-hu-01a.protonvpn.com", "entry_ip": "185.159.157.105", - "exit_ip": "185.128.26.214" + "exit_ip": [ + "185.128.26.214" + ] }, { "country": "Hungary", @@ -92155,7 +91047,9 @@ "name": "IS-HU#1", "hostname": "is-hu-01a.protonvpn.com", "entry_ip": "185.159.158.155", - "exit_ip": "86.106.74.212" + "exit_ip": [ + "86.106.74.212" + ] }, { "country": "Hungary", @@ -92164,7 +91058,11 @@ "name": "HU#1", "hostname": "hu-01.protonvpn.net", "entry_ip": "185.128.26.211", - "exit_ip": "185.128.26.211" + "exit_ip": [ + "185.128.26.211", + "185.128.26.212", + "185.128.26.213" + ] }, { "country": "Hungary", @@ -92173,43 +91071,11 @@ "name": "HU#10", "hostname": "node-hu-02.protonvpn.net", "entry_ip": "86.106.74.210", - "exit_ip": "86.106.74.212" - }, - { - "country": "Hungary", - "region": "", - "city": "Budapest", - "name": "HU#11", - "hostname": "node-hu-02.protonvpn.net", - "entry_ip": "86.106.74.210", - "exit_ip": "86.106.74.213" - }, - { - "country": "Hungary", - "region": "", - "city": "Budapest", - "name": "HU#12", - "hostname": "node-hu-02.protonvpn.net", - "entry_ip": "86.106.74.210", - "exit_ip": "86.106.74.214" - }, - { - "country": "Hungary", - "region": "", - "city": "Budapest", - "name": "HU#2", - "hostname": "hu-01.protonvpn.net", - "entry_ip": "185.128.26.211", - "exit_ip": "185.128.26.212" - }, - { - "country": "Hungary", - "region": "", - "city": "Budapest", - "name": "HU#3", - "hostname": "hu-01.protonvpn.net", - "entry_ip": "185.128.26.211", - "exit_ip": "185.128.26.213" + "exit_ip": [ + "86.106.74.212", + "86.106.74.213", + "86.106.74.214" + ] }, { "country": "Hungary", @@ -92218,43 +91084,13 @@ "name": "HU#4", "hostname": "node-hu-01.protonvpn.net", "entry_ip": "185.128.26.210", - "exit_ip": "185.128.26.214" - }, - { - "country": "Hungary", - "region": "", - "city": "Budapest", - "name": "HU#5", - "hostname": "node-hu-01.protonvpn.net", - "entry_ip": "185.128.26.210", - "exit_ip": "185.128.26.215" - }, - { - "country": "Hungary", - "region": "", - "city": "Budapest", - "name": "HU#6", - "hostname": "node-hu-01.protonvpn.net", - "entry_ip": "185.128.26.210", - "exit_ip": "185.128.26.216" - }, - { - "country": "Hungary", - "region": "", - "city": "Budapest", - "name": "HU#7", - "hostname": "node-hu-01.protonvpn.net", - "entry_ip": "185.128.26.210", - "exit_ip": "185.128.26.217" - }, - { - "country": "Hungary", - "region": "", - "city": "Budapest", - "name": "HU#8", - "hostname": "node-hu-01.protonvpn.net", - "entry_ip": "185.128.26.210", - "exit_ip": "185.128.26.218" + "exit_ip": [ + "185.128.26.214", + "185.128.26.215", + "185.128.26.216", + "185.128.26.217", + "185.128.26.218" + ] }, { "country": "Hungary", @@ -92263,7 +91099,9 @@ "name": "HU#9", "hostname": "hu-09.protonvpn.net", "entry_ip": "86.106.74.211", - "exit_ip": "86.106.74.211" + "exit_ip": [ + "86.106.74.211" + ] }, { "country": "Iceland", @@ -92272,16 +91110,10 @@ "name": "IS#1", "hostname": "is-01.protonvpn.net", "entry_ip": "185.159.158.100", - "exit_ip": "185.159.158.100" - }, - { - "country": "Iceland", - "region": "", - "city": "Reykjavik", - "name": "IS#2", - "hostname": "is-01.protonvpn.net", - "entry_ip": "185.159.158.100", - "exit_ip": "185.159.158.101" + "exit_ip": [ + "185.159.158.100", + "185.159.158.101" + ] }, { "country": "Iceland", @@ -92290,16 +91122,10 @@ "name": "IS#3", "hostname": "node-is-02.protonvpn.net", "entry_ip": "185.159.158.2", - "exit_ip": "185.159.158.50" - }, - { - "country": "Iceland", - "region": "", - "city": "Reykjavik", - "name": "IS#4", - "hostname": "node-is-02.protonvpn.net", - "entry_ip": "185.159.158.2", - "exit_ip": "185.159.158.51" + "exit_ip": [ + "185.159.158.50", + "185.159.158.51" + ] }, { "country": "Iceland", @@ -92308,16 +91134,10 @@ "name": "IS#5", "hostname": "is-05.protonvpn.net", "entry_ip": "185.159.158.57", - "exit_ip": "185.159.158.57" - }, - { - "country": "Iceland", - "region": "", - "city": "Reykjavik", - "name": "IS#6", - "hostname": "is-05.protonvpn.net", - "entry_ip": "185.159.158.57", - "exit_ip": "185.159.158.58" + "exit_ip": [ + "185.159.158.57", + "185.159.158.58" + ] }, { "country": "Iceland", @@ -92326,16 +91146,10 @@ "name": "IS#7", "hostname": "node-is-01.protonvpn.net", "entry_ip": "185.159.158.1", - "exit_ip": "185.159.158.107" - }, - { - "country": "Iceland", - "region": "", - "city": "Reykjavik", - "name": "IS#8", - "hostname": "node-is-01.protonvpn.net", - "entry_ip": "185.159.158.1", - "exit_ip": "185.159.158.108" + "exit_ip": [ + "185.159.158.107", + "185.159.158.108" + ] }, { "country": "India", @@ -92344,7 +91158,9 @@ "name": "CH-IN#1", "hostname": "ch-in-01b.protonvpn.com", "entry_ip": "185.159.157.64", - "exit_ip": "103.224.240.75" + "exit_ip": [ + "103.224.240.75" + ] }, { "country": "India", @@ -92353,16 +91169,9 @@ "name": "CH-IN#1", "hostname": "ch-in-01c.protonvpn.com", "entry_ip": "185.159.157.40", - "exit_ip": "103.156.50.162" - }, - { - "country": "India", - "region": "", - "city": "Mumbai", - "name": "IN#10", - "hostname": "node-in-02.protonvpn.net", - "entry_ip": "103.224.240.71", - "exit_ip": "103.224.240.79" + "exit_ip": [ + "103.156.50.162" + ] }, { "country": "India", @@ -92371,25 +91180,11 @@ "name": "IN#3", "hostname": "in-03.protonvpn.net", "entry_ip": "103.224.240.72", - "exit_ip": "103.224.240.72" - }, - { - "country": "India", - "region": "", - "city": "Mumbai", - "name": "IN#4", - "hostname": "in-03.protonvpn.net", - "entry_ip": "103.224.240.72", - "exit_ip": "103.224.240.73" - }, - { - "country": "India", - "region": "", - "city": "Mumbai", - "name": "IN#5", - "hostname": "in-03.protonvpn.net", - "entry_ip": "103.224.240.72", - "exit_ip": "103.224.240.74" + "exit_ip": [ + "103.224.240.72", + "103.224.240.73", + "103.224.240.74" + ] }, { "country": "India", @@ -92398,34 +91193,13 @@ "name": "IN#6", "hostname": "node-in-02.protonvpn.net", "entry_ip": "103.224.240.71", - "exit_ip": "103.224.240.75" - }, - { - "country": "India", - "region": "", - "city": "Mumbai", - "name": "IN#7", - "hostname": "node-in-02.protonvpn.net", - "entry_ip": "103.224.240.71", - "exit_ip": "103.224.240.76" - }, - { - "country": "India", - "region": "", - "city": "Mumbai", - "name": "IN#8", - "hostname": "node-in-02.protonvpn.net", - "entry_ip": "103.224.240.71", - "exit_ip": "103.224.240.77" - }, - { - "country": "India", - "region": "", - "city": "Mumbai", - "name": "IN#9", - "hostname": "node-in-02.protonvpn.net", - "entry_ip": "103.224.240.71", - "exit_ip": "103.224.240.78" + "exit_ip": [ + "103.224.240.75", + "103.224.240.76", + "103.224.240.77", + "103.224.240.78", + "103.224.240.79" + ] }, { "country": "India", @@ -92434,7 +91208,9 @@ "name": "IN#1", "hostname": "in-01b.protonvpn.net", "entry_ip": "103.156.50.161", - "exit_ip": "103.156.50.161" + "exit_ip": [ + "103.156.50.161" + ] }, { "country": "India", @@ -92443,7 +91219,9 @@ "name": "IN#2", "hostname": "node-in-01b.protonvpn.net", "entry_ip": "103.156.50.7", - "exit_ip": "103.156.50.162" + "exit_ip": [ + "103.156.50.162" + ] }, { "country": "Ireland", @@ -92452,7 +91230,9 @@ "name": "CH-IE#1", "hostname": "ch-ie-01a.protonvpn.com", "entry_ip": "185.159.157.89", - "exit_ip": "84.247.48.166" + "exit_ip": [ + "84.247.48.166" + ] }, { "country": "Ireland", @@ -92461,7 +91241,9 @@ "name": "IS-IE#1", "hostname": "is-ie-01a.protonvpn.com", "entry_ip": "185.159.158.118", - "exit_ip": "5.157.13.4" + "exit_ip": [ + "5.157.13.4" + ] }, { "country": "Ireland", @@ -92470,7 +91252,9 @@ "name": "IS-IE#1", "hostname": "is-ie-01c.protonvpn.com", "entry_ip": "185.159.158.120", - "exit_ip": "5.157.13.6" + "exit_ip": [ + "5.157.13.6" + ] }, { "country": "Ireland", @@ -92479,34 +91263,9 @@ "name": "IE#1", "hostname": "ie-01.protonvpn.net", "entry_ip": "5.157.13.3", - "exit_ip": "5.157.13.3" - }, - { - "country": "Ireland", - "region": "", - "city": "Dublin", - "name": "IE#10", - "hostname": "node-ie-02.protonvpn.net", - "entry_ip": "84.247.48.162", - "exit_ip": "84.247.48.168" - }, - { - "country": "Ireland", - "region": "", - "city": "Dublin", - "name": "IE#11", - "hostname": "node-ie-02.protonvpn.net", - "entry_ip": "84.247.48.162", - "exit_ip": "84.247.48.169" - }, - { - "country": "Ireland", - "region": "", - "city": "Dublin", - "name": "IE#12", - "hostname": "node-ie-02.protonvpn.net", - "entry_ip": "84.247.48.162", - "exit_ip": "84.247.48.170" + "exit_ip": [ + "5.157.13.3" + ] }, { "country": "Ireland", @@ -92515,25 +91274,11 @@ "name": "IE#2", "hostname": "node-ie-01.protonvpn.net", "entry_ip": "5.157.13.2", - "exit_ip": "5.157.13.4" - }, - { - "country": "Ireland", - "region": "", - "city": "Dublin", - "name": "IE#3", - "hostname": "node-ie-01.protonvpn.net", - "entry_ip": "5.157.13.2", - "exit_ip": "5.157.13.5" - }, - { - "country": "Ireland", - "region": "", - "city": "Dublin", - "name": "IE#4", - "hostname": "node-ie-01.protonvpn.net", - "entry_ip": "5.157.13.2", - "exit_ip": "5.157.13.6" + "exit_ip": [ + "5.157.13.4", + "5.157.13.5", + "5.157.13.6" + ] }, { "country": "Ireland", @@ -92542,25 +91287,11 @@ "name": "IE#5", "hostname": "ie-05.protonvpn.net", "entry_ip": "84.247.48.163", - "exit_ip": "84.247.48.163" - }, - { - "country": "Ireland", - "region": "", - "city": "Dublin", - "name": "IE#6", - "hostname": "ie-05.protonvpn.net", - "entry_ip": "84.247.48.163", - "exit_ip": "84.247.48.164" - }, - { - "country": "Ireland", - "region": "", - "city": "Dublin", - "name": "IE#7", - "hostname": "ie-05.protonvpn.net", - "entry_ip": "84.247.48.163", - "exit_ip": "84.247.48.165" + "exit_ip": [ + "84.247.48.163", + "84.247.48.164", + "84.247.48.165" + ] }, { "country": "Ireland", @@ -92569,16 +91300,13 @@ "name": "IE#8", "hostname": "node-ie-02.protonvpn.net", "entry_ip": "84.247.48.162", - "exit_ip": "84.247.48.166" - }, - { - "country": "Ireland", - "region": "", - "city": "Dublin", - "name": "IE#9", - "hostname": "node-ie-02.protonvpn.net", - "entry_ip": "84.247.48.162", - "exit_ip": "84.247.48.167" + "exit_ip": [ + "84.247.48.166", + "84.247.48.167", + "84.247.48.168", + "84.247.48.169", + "84.247.48.170" + ] }, { "country": "Israel", @@ -92587,43 +91315,33 @@ "name": "IS-IL#1", "hostname": "is-il-01e.protonvpn.com", "entry_ip": "185.159.158.130", - "exit_ip": "87.239.255.102" + "exit_ip": [ + "87.239.255.102" + ] }, { "country": "Israel", "region": "", "city": "Tel Aviv", "name": "IL#1", - "hostname": "il-01c.protonvpn.net", + "hostname": "il-01d.protonvpn.net", "entry_ip": "87.239.255.101", - "exit_ip": "87.239.255.101" + "exit_ip": [ + "87.239.255.101" + ] }, { "country": "Israel", "region": "", "city": "Tel Aviv", "name": "IL#2", - "hostname": "node-il-01c.protonvpn.net", + "hostname": "node-il-01d.protonvpn.net", "entry_ip": "87.239.255.100", - "exit_ip": "87.239.255.102" - }, - { - "country": "Israel", - "region": "", - "city": "Tel Aviv", - "name": "IL#3", - "hostname": "node-il-01c.protonvpn.net", - "entry_ip": "87.239.255.100", - "exit_ip": "87.239.255.103" - }, - { - "country": "Israel", - "region": "", - "city": "Tel Aviv", - "name": "IL#4", - "hostname": "node-il-01c.protonvpn.net", - "entry_ip": "87.239.255.100", - "exit_ip": "87.239.255.104" + "exit_ip": [ + "87.239.255.102", + "87.239.255.103", + "87.239.255.104" + ] }, { "country": "Israel", @@ -92632,7 +91350,9 @@ "name": "CH-IL#1", "hostname": "ch-il-01a.protonvpn.com", "entry_ip": "185.159.157.168", - "exit_ip": "185.185.134.116" + "exit_ip": [ + "185.185.134.116" + ] }, { "country": "Israel", @@ -92641,7 +91361,9 @@ "name": "IL#5", "hostname": "il-05.protonvpn.com", "entry_ip": "185.185.134.115", - "exit_ip": "185.185.134.115" + "exit_ip": [ + "185.185.134.115" + ] }, { "country": "Israel", @@ -92650,25 +91372,11 @@ "name": "IL#6", "hostname": "lxc-il-02.protonvpn.com", "entry_ip": "185.185.134.114", - "exit_ip": "185.185.134.116" - }, - { - "country": "Israel", - "region": "South", - "city": "Petah Tikva", - "name": "IL#7", - "hostname": "lxc-il-02.protonvpn.com", - "entry_ip": "185.185.134.114", - "exit_ip": "185.185.134.117" - }, - { - "country": "Israel", - "region": "South", - "city": "Petah Tikva", - "name": "IL#8", - "hostname": "lxc-il-02.protonvpn.com", - "entry_ip": "185.185.134.114", - "exit_ip": "185.185.134.118" + "exit_ip": [ + "185.185.134.116", + "185.185.134.117", + "185.185.134.118" + ] }, { "country": "Italy", @@ -92677,7 +91385,9 @@ "name": "CH-IT#1", "hostname": "ch-it-01a.protonvpn.com", "entry_ip": "185.159.157.18", - "exit_ip": "185.128.27.102" + "exit_ip": [ + "185.128.27.102" + ] }, { "country": "Italy", @@ -92686,7 +91396,9 @@ "name": "CH-IT#1", "hostname": "ch-it-01b.protonvpn.com", "entry_ip": "185.159.157.87", - "exit_ip": "217.138.219.182" + "exit_ip": [ + "217.138.219.182" + ] }, { "country": "Italy", @@ -92695,7 +91407,9 @@ "name": "IS-IT#1", "hostname": "is-it-01a.protonvpn.com", "entry_ip": "185.159.158.154", - "exit_ip": "185.94.193.148" + "exit_ip": [ + "185.94.193.148" + ] }, { "country": "Italy", @@ -92704,34 +91418,10 @@ "name": "IT#1", "hostname": "it-01.protonvpn.com", "entry_ip": "185.128.27.99", - "exit_ip": "185.128.27.99" - }, - { - "country": "Italy", - "region": "", - "city": "Milan", - "name": "IT#10", - "hostname": "lxc-it-02.protonvpn.com", - "entry_ip": "217.138.219.178", - "exit_ip": "217.138.219.184" - }, - { - "country": "Italy", - "region": "", - "city": "Milan", - "name": "IT#11", - "hostname": "lxc-it-02.protonvpn.com", - "entry_ip": "217.138.219.178", - "exit_ip": "217.138.219.185" - }, - { - "country": "Italy", - "region": "", - "city": "Milan", - "name": "IT#12", - "hostname": "lxc-it-02.protonvpn.com", - "entry_ip": "217.138.219.178", - "exit_ip": "217.138.219.186" + "exit_ip": [ + "185.128.27.99", + "185.128.27.100" + ] }, { "country": "Italy", @@ -92740,7 +91430,9 @@ "name": "IT#13", "hostname": "it-13.protonvpn.com", "entry_ip": "185.94.193.147", - "exit_ip": "185.94.193.147" + "exit_ip": [ + "185.94.193.147" + ] }, { "country": "Italy", @@ -92749,34 +91441,11 @@ "name": "IT#14", "hostname": "lxc-it-03.protonvpn.com", "entry_ip": "185.94.193.146", - "exit_ip": "185.94.193.148" - }, - { - "country": "Italy", - "region": "", - "city": "Milan", - "name": "IT#15", - "hostname": "lxc-it-03.protonvpn.com", - "entry_ip": "185.94.193.146", - "exit_ip": "185.94.193.149" - }, - { - "country": "Italy", - "region": "", - "city": "Milan", - "name": "IT#16", - "hostname": "lxc-it-03.protonvpn.com", - "entry_ip": "185.94.193.146", - "exit_ip": "185.94.193.150" - }, - { - "country": "Italy", - "region": "", - "city": "Milan", - "name": "IT#2", - "hostname": "it-01.protonvpn.com", - "entry_ip": "185.128.27.99", - "exit_ip": "185.128.27.100" + "exit_ip": [ + "185.94.193.148", + "185.94.193.149", + "185.94.193.150" + ] }, { "country": "Italy", @@ -92785,16 +91454,10 @@ "name": "IT#3", "hostname": "lxc-it-01.protonvpn.com", "entry_ip": "185.128.27.98", - "exit_ip": "185.128.27.101" - }, - { - "country": "Italy", - "region": "", - "city": "Milan", - "name": "IT#4", - "hostname": "lxc-it-01.protonvpn.com", - "entry_ip": "185.128.27.98", - "exit_ip": "185.128.27.102" + "exit_ip": [ + "185.128.27.101", + "185.128.27.102" + ] }, { "country": "Italy", @@ -92803,25 +91466,11 @@ "name": "IT#5", "hostname": "it-05.protonvpn.com", "entry_ip": "217.138.219.179", - "exit_ip": "217.138.219.179" - }, - { - "country": "Italy", - "region": "", - "city": "Milan", - "name": "IT#6", - "hostname": "it-05.protonvpn.com", - "entry_ip": "217.138.219.179", - "exit_ip": "217.138.219.180" - }, - { - "country": "Italy", - "region": "", - "city": "Milan", - "name": "IT#7", - "hostname": "it-05.protonvpn.com", - "entry_ip": "217.138.219.179", - "exit_ip": "217.138.219.181" + "exit_ip": [ + "217.138.219.179", + "217.138.219.180", + "217.138.219.181" + ] }, { "country": "Italy", @@ -92830,16 +91479,13 @@ "name": "IT#8", "hostname": "lxc-it-02.protonvpn.com", "entry_ip": "217.138.219.178", - "exit_ip": "217.138.219.182" - }, - { - "country": "Italy", - "region": "", - "city": "Milan", - "name": "IT#9", - "hostname": "lxc-it-02.protonvpn.com", - "entry_ip": "217.138.219.178", - "exit_ip": "217.138.219.183" + "exit_ip": [ + "217.138.219.182", + "217.138.219.183", + "217.138.219.184", + "217.138.219.185", + "217.138.219.186" + ] }, { "country": "Japan", @@ -92848,7 +91494,9 @@ "name": "CH-JP#1", "hostname": "ch-jp-01a.protonvpn.com", "entry_ip": "185.159.157.80", - "exit_ip": "103.125.235.28" + "exit_ip": [ + "103.125.235.28" + ] }, { "country": "Japan", @@ -92857,70 +91505,37 @@ "name": "JP-FREE#1", "hostname": "lxc-jp-11.protonvpn.com", "entry_ip": "103.125.235.18", - "exit_ip": "103.125.235.24" - }, - { - "country": "Japan", - "region": "", - "city": "", - "name": "JP-FREE#1", - "hostname": "lxc-jp-11.protonvpn.com", - "entry_ip": "103.125.235.18", - "exit_ip": "103.125.235.21" - }, - { - "country": "Japan", - "region": "", - "city": "", - "name": "JP-FREE#1", - "hostname": "lxc-jp-11.protonvpn.com", - "entry_ip": "103.125.235.18", - "exit_ip": "103.125.235.23" - }, - { - "country": "Japan", - "region": "", - "city": "", - "name": "JP-FREE#1", - "hostname": "lxc-jp-11.protonvpn.com", - "entry_ip": "103.125.235.18", - "exit_ip": "103.125.235.22" + "exit_ip": [ + "103.125.235.21", + "103.125.235.22", + "103.125.235.23", + "103.125.235.24" + ] }, { "country": "Japan", "region": "", "city": "", "name": "JP-FREE#2", - "hostname": "lxc-jp-10.protonvpn.com", - "entry_ip": "103.208.220.194", - "exit_ip": "103.208.220.196" - }, - { - "country": "Japan", - "region": "", - "city": "", - "name": "JP-FREE#2", - "hostname": "lxc-jp-10.protonvpn.com", - "entry_ip": "103.208.220.194", - "exit_ip": "103.208.220.195" - }, - { - "country": "Japan", - "region": "", - "city": "", - "name": "JP-FREE#2", - "hostname": "lxc-jp-10.protonvpn.com", - "entry_ip": "103.208.220.194", - "exit_ip": "103.208.220.197" - }, - { - "country": "Japan", - "region": "", - "city": "", - "name": "JP-FREE#2", - "hostname": "lxc-jp-10.protonvpn.com", - "entry_ip": "103.208.220.194", - "exit_ip": "103.208.220.198" + "hostname": "node-jp-16.protonvpn.net", + "entry_ip": "138.199.22.102", + "exit_ip": [ + "37.19.205.208", + "37.19.205.209", + "37.19.205.210", + "37.19.205.211", + "37.19.205.212", + "37.19.205.213", + "37.19.205.214", + "37.19.205.215", + "37.19.205.216", + "37.19.205.217", + "37.19.205.218", + "37.19.205.219", + "37.19.205.220", + "37.19.205.221", + "37.19.205.222" + ] }, { "country": "Japan", @@ -92929,34 +91544,10 @@ "name": "JP-FREE#3", "hostname": "lxc-jp-13.protonvpn.com", "entry_ip": "45.14.71.5", - "exit_ip": "45.14.71.11" - }, - { - "country": "Japan", - "region": "", - "city": "", - "name": "JP-FREE#3", - "hostname": "lxc-jp-13.protonvpn.com", - "entry_ip": "45.14.71.5", - "exit_ip": "45.14.71.8" - }, - { - "country": "Japan", - "region": "", - "city": "", - "name": "JP-FREE#3", - "hostname": "lxc-jp-13.protonvpn.com", - "entry_ip": "45.14.71.5", - "exit_ip": "45.14.71.10" - }, - { - "country": "Japan", - "region": "", - "city": "", - "name": "JP-FREE#3", - "hostname": "lxc-jp-13.protonvpn.com", - "entry_ip": "45.14.71.5", - "exit_ip": "45.14.71.9" + "exit_ip": [ + "45.14.71.8", + "45.14.71.11" + ] }, { "country": "Japan", @@ -92965,34 +91556,12 @@ "name": "JP-FREE#3", "hostname": "lxc-jp-15.protonvpn.com", "entry_ip": "45.14.71.7", - "exit_ip": "45.14.71.22" - }, - { - "country": "Japan", - "region": "", - "city": "", - "name": "JP-FREE#3", - "hostname": "lxc-jp-15.protonvpn.com", - "entry_ip": "45.14.71.7", - "exit_ip": "45.14.71.20" - }, - { - "country": "Japan", - "region": "", - "city": "", - "name": "JP-FREE#3", - "hostname": "lxc-jp-15.protonvpn.com", - "entry_ip": "45.14.71.7", - "exit_ip": "45.14.71.21" - }, - { - "country": "Japan", - "region": "", - "city": "", - "name": "JP-FREE#3", - "hostname": "lxc-jp-15.protonvpn.com", - "entry_ip": "45.14.71.7", - "exit_ip": "45.14.71.23" + "exit_ip": [ + "45.14.71.20", + "45.14.71.21", + "45.14.71.22", + "45.14.71.23" + ] }, { "country": "Japan", @@ -93001,7 +91570,9 @@ "name": "SE-JP#1", "hostname": "se-jp-01a.protonvpn.com", "entry_ip": "185.159.156.56", - "exit_ip": "45.14.71.15" + "exit_ip": [ + "45.14.71.15" + ] }, { "country": "Japan", @@ -93010,7 +91581,9 @@ "name": "SE-JP#1", "hostname": "se-jp-01d.protonvpn.com", "entry_ip": "185.159.156.37", - "exit_ip": "103.125.235.27" + "exit_ip": [ + "103.125.235.27" + ] }, { "country": "Japan", @@ -93019,25 +91592,11 @@ "name": "JP#51", "hostname": "jp-51.protonvpn.net", "entry_ip": "45.14.71.12", - "exit_ip": "45.14.71.12" - }, - { - "country": "Japan", - "region": "", - "city": "Osaka", - "name": "JP#52", - "hostname": "jp-51.protonvpn.net", - "entry_ip": "45.14.71.12", - "exit_ip": "45.14.71.13" - }, - { - "country": "Japan", - "region": "", - "city": "Osaka", - "name": "JP#53", - "hostname": "jp-51.protonvpn.net", - "entry_ip": "45.14.71.12", - "exit_ip": "45.14.71.14" + "exit_ip": [ + "45.14.71.12", + "45.14.71.13", + "45.14.71.14" + ] }, { "country": "Japan", @@ -93046,70 +91605,13 @@ "name": "JP#54", "hostname": "node-jp-14.protonvpn.net", "entry_ip": "45.14.71.6", - "exit_ip": "45.14.71.15" - }, - { - "country": "Japan", - "region": "", - "city": "Osaka", - "name": "JP#55", - "hostname": "node-jp-14.protonvpn.net", - "entry_ip": "45.14.71.6", - "exit_ip": "45.14.71.16" - }, - { - "country": "Japan", - "region": "", - "city": "Osaka", - "name": "JP#56", - "hostname": "node-jp-14.protonvpn.net", - "entry_ip": "45.14.71.6", - "exit_ip": "45.14.71.17" - }, - { - "country": "Japan", - "region": "", - "city": "Osaka", - "name": "JP#57", - "hostname": "node-jp-14.protonvpn.net", - "entry_ip": "45.14.71.6", - "exit_ip": "45.14.71.18" - }, - { - "country": "Japan", - "region": "", - "city": "Osaka", - "name": "JP#58", - "hostname": "node-jp-14.protonvpn.net", - "entry_ip": "45.14.71.6", - "exit_ip": "45.14.71.19" - }, - { - "country": "Japan", - "region": "", - "city": "Tokyo", - "name": "JP#10", - "hostname": "lxc-jp-03.protonvpn.com", - "entry_ip": "185.242.4.202", - "exit_ip": "185.242.4.204" - }, - { - "country": "Japan", - "region": "", - "city": "Tokyo", - "name": "JP#11", - "hostname": "lxc-jp-03.protonvpn.com", - "entry_ip": "185.242.4.202", - "exit_ip": "185.242.4.205" - }, - { - "country": "Japan", - "region": "", - "city": "Tokyo", - "name": "JP#12", - "hostname": "lxc-jp-03.protonvpn.com", - "entry_ip": "185.242.4.202", - "exit_ip": "185.242.4.206" + "exit_ip": [ + "45.14.71.15", + "45.14.71.16", + "45.14.71.17", + "45.14.71.18", + "45.14.71.19" + ] }, { "country": "Japan", @@ -93118,16 +91620,10 @@ "name": "JP#43", "hostname": "jp-43.protonvpn.net", "entry_ip": "103.125.235.25", - "exit_ip": "103.125.235.25" - }, - { - "country": "Japan", - "region": "", - "city": "Tokyo", - "name": "JP#44", - "hostname": "jp-43.protonvpn.net", - "entry_ip": "103.125.235.25", - "exit_ip": "103.125.235.26" + "exit_ip": [ + "103.125.235.25", + "103.125.235.26" + ] }, { "country": "Japan", @@ -93136,61 +91632,62 @@ "name": "JP#45", "hostname": "node-jp-12.protonvpn.net", "entry_ip": "103.125.235.19", - "exit_ip": "103.125.235.27" + "exit_ip": [ + "103.125.235.27", + "103.125.235.28", + "103.125.235.29", + "103.125.235.30", + "103.125.235.31", + "103.125.235.32" + ] }, { "country": "Japan", "region": "", "city": "Tokyo", - "name": "JP#46", - "hostname": "node-jp-12.protonvpn.net", - "entry_ip": "103.125.235.19", - "exit_ip": "103.125.235.28" + "name": "JP#59", + "hostname": "jp-59.protonvpn.net", + "entry_ip": "37.19.205.242", + "exit_ip": [ + "37.19.205.242", + "37.19.205.243", + "37.19.205.244", + "37.19.205.245", + "37.19.205.246", + "37.19.205.247", + "37.19.205.248", + "37.19.205.249", + "37.19.205.250", + "37.19.205.251" + ] }, { "country": "Japan", "region": "", "city": "Tokyo", - "name": "JP#47", - "hostname": "node-jp-12.protonvpn.net", - "entry_ip": "103.125.235.19", - "exit_ip": "103.125.235.29" - }, - { - "country": "Japan", - "region": "", - "city": "Tokyo", - "name": "JP#48", - "hostname": "node-jp-12.protonvpn.net", - "entry_ip": "103.125.235.19", - "exit_ip": "103.125.235.30" - }, - { - "country": "Japan", - "region": "", - "city": "Tokyo", - "name": "JP#49", - "hostname": "node-jp-12.protonvpn.net", - "entry_ip": "103.125.235.19", - "exit_ip": "103.125.235.31" - }, - { - "country": "Japan", - "region": "", - "city": "Tokyo", - "name": "JP#50", - "hostname": "node-jp-12.protonvpn.net", - "entry_ip": "103.125.235.19", - "exit_ip": "103.125.235.32" - }, - { - "country": "Japan", - "region": "", - "city": "Tokyo", - "name": "JP#9", - "hostname": "lxc-jp-03.protonvpn.com", - "entry_ip": "185.242.4.202", - "exit_ip": "185.242.4.203" + "name": "JP#70", + "hostname": "node-jp-17.protonvpn.net", + "entry_ip": "138.199.22.97", + "exit_ip": [ + "37.19.205.224", + "37.19.205.225", + "37.19.205.226", + "37.19.205.227", + "37.19.205.228", + "37.19.205.229", + "37.19.205.230", + "37.19.205.231", + "37.19.205.232", + "37.19.205.233", + "37.19.205.234", + "37.19.205.235", + "37.19.205.236", + "37.19.205.237", + "37.19.205.238", + "37.19.205.239", + "37.19.205.240", + "37.19.205.241" + ] }, { "country": "Korea", @@ -93199,7 +91696,9 @@ "name": "CH-KR#1", "hostname": "ch-kr-01d.protonvpn.com", "entry_ip": "185.159.157.109", - "exit_ip": "113.29.230.198" + "exit_ip": [ + "113.29.230.198" + ] }, { "country": "Korea", @@ -93208,34 +91707,9 @@ "name": "SE-KR#1", "hostname": "se-kr-01d.protonvpn.com", "entry_ip": "185.159.156.38", - "exit_ip": "113.29.230.199" - }, - { - "country": "Korea", - "region": "", - "city": "Seoul", - "name": "KR#10", - "hostname": "node-kr-02.protonvpn.net", - "entry_ip": "113.29.230.194", - "exit_ip": "113.29.230.200" - }, - { - "country": "Korea", - "region": "", - "city": "Seoul", - "name": "KR#11", - "hostname": "node-kr-02.protonvpn.net", - "entry_ip": "113.29.230.194", - "exit_ip": "113.29.230.201" - }, - { - "country": "Korea", - "region": "", - "city": "Seoul", - "name": "KR#12", - "hostname": "node-kr-02.protonvpn.net", - "entry_ip": "113.29.230.194", - "exit_ip": "113.29.230.202" + "exit_ip": [ + "113.29.230.199" + ] }, { "country": "Korea", @@ -93244,25 +91718,11 @@ "name": "KR#5", "hostname": "kr-05.protonvpn.net", "entry_ip": "113.29.230.195", - "exit_ip": "113.29.230.195" - }, - { - "country": "Korea", - "region": "", - "city": "Seoul", - "name": "KR#6", - "hostname": "kr-05.protonvpn.net", - "entry_ip": "113.29.230.195", - "exit_ip": "113.29.230.196" - }, - { - "country": "Korea", - "region": "", - "city": "Seoul", - "name": "KR#7", - "hostname": "kr-05.protonvpn.net", - "entry_ip": "113.29.230.195", - "exit_ip": "113.29.230.197" + "exit_ip": [ + "113.29.230.195", + "113.29.230.196", + "113.29.230.197" + ] }, { "country": "Korea", @@ -93271,16 +91731,13 @@ "name": "KR#8", "hostname": "node-kr-02.protonvpn.net", "entry_ip": "113.29.230.194", - "exit_ip": "113.29.230.198" - }, - { - "country": "Korea", - "region": "", - "city": "Seoul", - "name": "KR#9", - "hostname": "node-kr-02.protonvpn.net", - "entry_ip": "113.29.230.194", - "exit_ip": "113.29.230.199" + "exit_ip": [ + "113.29.230.198", + "113.29.230.199", + "113.29.230.200", + "113.29.230.201", + "113.29.230.202" + ] }, { "country": "Latvia", @@ -93289,7 +91746,9 @@ "name": "CH-LV#1", "hostname": "ch-lv-01a.protonvpn.com", "entry_ip": "185.159.157.61", - "exit_ip": "196.240.54.119" + "exit_ip": [ + "196.240.54.119" + ] }, { "country": "Latvia", @@ -93298,7 +91757,9 @@ "name": "CH-LV#1", "hostname": "ch-lv-01b.protonvpn.com", "entry_ip": "185.159.157.81", - "exit_ip": "196.240.54.118" + "exit_ip": [ + "196.240.54.118" + ] }, { "country": "Latvia", @@ -93307,25 +91768,11 @@ "name": "LV#1", "hostname": "lv-01.protonvpn.net", "entry_ip": "196.240.54.115", - "exit_ip": "196.240.54.115" - }, - { - "country": "Latvia", - "region": "", - "city": "Riga", - "name": "LV#2", - "hostname": "lv-01.protonvpn.net", - "entry_ip": "196.240.54.115", - "exit_ip": "196.240.54.116" - }, - { - "country": "Latvia", - "region": "", - "city": "Riga", - "name": "LV#3", - "hostname": "lv-01.protonvpn.net", - "entry_ip": "196.240.54.115", - "exit_ip": "196.240.54.117" + "exit_ip": [ + "196.240.54.115", + "196.240.54.116", + "196.240.54.117" + ] }, { "country": "Latvia", @@ -93334,43 +91781,13 @@ "name": "LV#4", "hostname": "node-lv-01.protonvpn.net", "entry_ip": "196.240.54.114", - "exit_ip": "196.240.54.118" - }, - { - "country": "Latvia", - "region": "", - "city": "Riga", - "name": "LV#5", - "hostname": "node-lv-01.protonvpn.net", - "entry_ip": "196.240.54.114", - "exit_ip": "196.240.54.119" - }, - { - "country": "Latvia", - "region": "", - "city": "Riga", - "name": "LV#6", - "hostname": "node-lv-01.protonvpn.net", - "entry_ip": "196.240.54.114", - "exit_ip": "196.240.54.120" - }, - { - "country": "Latvia", - "region": "", - "city": "Riga", - "name": "LV#7", - "hostname": "node-lv-01.protonvpn.net", - "entry_ip": "196.240.54.114", - "exit_ip": "196.240.54.121" - }, - { - "country": "Latvia", - "region": "", - "city": "Riga", - "name": "LV#8", - "hostname": "node-lv-01.protonvpn.net", - "entry_ip": "196.240.54.114", - "exit_ip": "196.240.54.122" + "exit_ip": [ + "196.240.54.118", + "196.240.54.119", + "196.240.54.120", + "196.240.54.121", + "196.240.54.122" + ] }, { "country": "Lithuania", @@ -93379,7 +91796,9 @@ "name": "CH-LT#1", "hostname": "ch-lt-01a.protonvpn.com", "entry_ip": "185.159.157.110", - "exit_ip": "85.206.163.149" + "exit_ip": [ + "85.206.163.149" + ] }, { "country": "Lithuania", @@ -93388,7 +91807,9 @@ "name": "SE-LT#1", "hostname": "se-lt-01a.protonvpn.com", "entry_ip": "185.159.156.43", - "exit_ip": "85.206.163.148" + "exit_ip": [ + "85.206.163.148" + ] }, { "country": "Lithuania", @@ -93397,25 +91818,11 @@ "name": "LT#1", "hostname": "lt-01.protonvpn.net", "entry_ip": "85.206.163.145", - "exit_ip": "85.206.163.145" - }, - { - "country": "Lithuania", - "region": "", - "city": "Siauliai", - "name": "LT#2", - "hostname": "lt-01.protonvpn.net", - "entry_ip": "85.206.163.145", - "exit_ip": "85.206.163.146" - }, - { - "country": "Lithuania", - "region": "", - "city": "Siauliai", - "name": "LT#3", - "hostname": "lt-01.protonvpn.net", - "entry_ip": "85.206.163.145", - "exit_ip": "85.206.163.147" + "exit_ip": [ + "85.206.163.145", + "85.206.163.146", + "85.206.163.147" + ] }, { "country": "Lithuania", @@ -93424,43 +91831,13 @@ "name": "LT#4", "hostname": "node-lt-01.protonvpn.net", "entry_ip": "85.206.163.144", - "exit_ip": "85.206.163.148" - }, - { - "country": "Lithuania", - "region": "", - "city": "Siauliai", - "name": "LT#5", - "hostname": "node-lt-01.protonvpn.net", - "entry_ip": "85.206.163.144", - "exit_ip": "85.206.163.149" - }, - { - "country": "Lithuania", - "region": "", - "city": "Siauliai", - "name": "LT#6", - "hostname": "node-lt-01.protonvpn.net", - "entry_ip": "85.206.163.144", - "exit_ip": "85.206.163.150" - }, - { - "country": "Lithuania", - "region": "", - "city": "Siauliai", - "name": "LT#7", - "hostname": "node-lt-01.protonvpn.net", - "entry_ip": "85.206.163.144", - "exit_ip": "85.206.163.151" - }, - { - "country": "Lithuania", - "region": "", - "city": "Siauliai", - "name": "LT#8", - "hostname": "node-lt-01.protonvpn.net", - "entry_ip": "85.206.163.144", - "exit_ip": "85.206.163.152" + "exit_ip": [ + "85.206.163.148", + "85.206.163.149", + "85.206.163.150", + "85.206.163.151", + "85.206.163.152" + ] }, { "country": "Luxembourg", @@ -93469,7 +91846,9 @@ "name": "CH-LU#1", "hostname": "ch-lu-01d.protonvpn.com", "entry_ip": "185.159.157.66", - "exit_ip": "92.223.89.149" + "exit_ip": [ + "92.223.89.149" + ] }, { "country": "Luxembourg", @@ -93478,34 +91857,9 @@ "name": "IS-LU#1", "hostname": "is-lu-01a.protonvpn.com", "entry_ip": "185.159.158.147", - "exit_ip": "92.223.89.135" - }, - { - "country": "Luxembourg", - "region": "", - "city": "Luxembourg City", - "name": "LU#10", - "hostname": "lxc-lu-02.protonvpn.com", - "entry_ip": "92.223.89.141", - "exit_ip": "92.223.89.150" - }, - { - "country": "Luxembourg", - "region": "", - "city": "Luxembourg City", - "name": "LU#11", - "hostname": "lxc-lu-02.protonvpn.com", - "entry_ip": "92.223.89.141", - "exit_ip": "92.223.89.151" - }, - { - "country": "Luxembourg", - "region": "", - "city": "Luxembourg City", - "name": "LU#12", - "hostname": "lxc-lu-02.protonvpn.com", - "entry_ip": "92.223.89.141", - "exit_ip": "92.223.89.152" + "exit_ip": [ + "92.223.89.135" + ] }, { "country": "Luxembourg", @@ -93514,7 +91868,9 @@ "name": "LU#13", "hostname": "lu-13.protonvpn.net", "entry_ip": "92.223.89.134", - "exit_ip": "92.223.89.134" + "exit_ip": [ + "92.223.89.134" + ] }, { "country": "Luxembourg", @@ -93523,25 +91879,11 @@ "name": "LU#14", "hostname": "node-lu-03.protonvpn.net", "entry_ip": "92.223.89.133", - "exit_ip": "92.223.89.135" - }, - { - "country": "Luxembourg", - "region": "", - "city": "Luxembourg City", - "name": "LU#15", - "hostname": "node-lu-03.protonvpn.net", - "entry_ip": "92.223.89.133", - "exit_ip": "92.223.89.136" - }, - { - "country": "Luxembourg", - "region": "", - "city": "Luxembourg City", - "name": "LU#16", - "hostname": "node-lu-03.protonvpn.net", - "entry_ip": "92.223.89.133", - "exit_ip": "92.223.89.137" + "exit_ip": [ + "92.223.89.135", + "92.223.89.136", + "92.223.89.137" + ] }, { "country": "Luxembourg", @@ -93550,25 +91892,11 @@ "name": "LU#5", "hostname": "lu-05.protonvpn.com", "entry_ip": "92.223.89.145", - "exit_ip": "92.223.89.145" - }, - { - "country": "Luxembourg", - "region": "", - "city": "Luxembourg City", - "name": "LU#6", - "hostname": "lu-05.protonvpn.com", - "entry_ip": "92.223.89.145", - "exit_ip": "92.223.89.146" - }, - { - "country": "Luxembourg", - "region": "", - "city": "Luxembourg City", - "name": "LU#7", - "hostname": "lu-05.protonvpn.com", - "entry_ip": "92.223.89.145", - "exit_ip": "92.223.89.147" + "exit_ip": [ + "92.223.89.145", + "92.223.89.146", + "92.223.89.147" + ] }, { "country": "Luxembourg", @@ -93577,16 +91905,13 @@ "name": "LU#8", "hostname": "lxc-lu-02.protonvpn.com", "entry_ip": "92.223.89.141", - "exit_ip": "92.223.89.148" - }, - { - "country": "Luxembourg", - "region": "", - "city": "Luxembourg City", - "name": "LU#9", - "hostname": "lxc-lu-02.protonvpn.com", - "entry_ip": "92.223.89.141", - "exit_ip": "92.223.89.149" + "exit_ip": [ + "92.223.89.148", + "92.223.89.149", + "92.223.89.150", + "92.223.89.151", + "92.223.89.152" + ] }, { "country": "Malaysia", @@ -93595,7 +91920,9 @@ "name": "CH-MY#1", "hostname": "ch-my-01a.protonvpn.com", "entry_ip": "185.159.157.95", - "exit_ip": "103.230.142.230" + "exit_ip": [ + "103.230.142.230" + ] }, { "country": "Malaysia", @@ -93604,25 +91931,11 @@ "name": "MY#1", "hostname": "my-01.protonvpn.net", "entry_ip": "103.230.142.227", - "exit_ip": "103.230.142.227" - }, - { - "country": "Malaysia", - "region": "", - "city": "Johor Bahru", - "name": "MY#2", - "hostname": "my-01.protonvpn.net", - "entry_ip": "103.230.142.227", - "exit_ip": "103.230.142.228" - }, - { - "country": "Malaysia", - "region": "", - "city": "Johor Bahru", - "name": "MY#3", - "hostname": "my-01.protonvpn.net", - "entry_ip": "103.230.142.227", - "exit_ip": "103.230.142.229" + "exit_ip": [ + "103.230.142.227", + "103.230.142.228", + "103.230.142.229" + ] }, { "country": "Malaysia", @@ -93631,43 +91944,13 @@ "name": "MY#4", "hostname": "node-my-01.protonvpn.net", "entry_ip": "103.230.142.226", - "exit_ip": "103.230.142.230" - }, - { - "country": "Malaysia", - "region": "", - "city": "Johor Bahru", - "name": "MY#5", - "hostname": "node-my-01.protonvpn.net", - "entry_ip": "103.230.142.226", - "exit_ip": "103.230.142.231" - }, - { - "country": "Malaysia", - "region": "", - "city": "Johor Bahru", - "name": "MY#6", - "hostname": "node-my-01.protonvpn.net", - "entry_ip": "103.230.142.226", - "exit_ip": "103.230.142.232" - }, - { - "country": "Malaysia", - "region": "", - "city": "Johor Bahru", - "name": "MY#7", - "hostname": "node-my-01.protonvpn.net", - "entry_ip": "103.230.142.226", - "exit_ip": "103.230.142.233" - }, - { - "country": "Malaysia", - "region": "", - "city": "Johor Bahru", - "name": "MY#8", - "hostname": "node-my-01.protonvpn.net", - "entry_ip": "103.230.142.226", - "exit_ip": "103.230.142.234" + "exit_ip": [ + "103.230.142.230", + "103.230.142.231", + "103.230.142.232", + "103.230.142.233", + "103.230.142.234" + ] }, { "country": "Mexico", @@ -93676,7 +91959,9 @@ "name": "CH-MX#1", "hostname": "ch-mx-01a.protonvpn.com", "entry_ip": "185.159.157.91", - "exit_ip": "191.96.145.242" + "exit_ip": [ + "191.96.145.242" + ] }, { "country": "Mexico", @@ -93685,25 +91970,11 @@ "name": "MX#1", "hostname": "mx-01.protonvpn.net", "entry_ip": "191.96.145.239", - "exit_ip": "191.96.145.239" - }, - { - "country": "Mexico", - "region": "", - "city": "Chiapas", - "name": "MX#2", - "hostname": "mx-01.protonvpn.net", - "entry_ip": "191.96.145.239", - "exit_ip": "191.96.145.240" - }, - { - "country": "Mexico", - "region": "", - "city": "Chiapas", - "name": "MX#3", - "hostname": "mx-01.protonvpn.net", - "entry_ip": "191.96.145.239", - "exit_ip": "191.96.145.241" + "exit_ip": [ + "191.96.145.239", + "191.96.145.240", + "191.96.145.241" + ] }, { "country": "Mexico", @@ -93712,43 +91983,13 @@ "name": "MX#4", "hostname": "node-mx-01.protonvpn.net", "entry_ip": "191.96.145.238", - "exit_ip": "191.96.145.242" - }, - { - "country": "Mexico", - "region": "", - "city": "Chiapas", - "name": "MX#5", - "hostname": "node-mx-01.protonvpn.net", - "entry_ip": "191.96.145.238", - "exit_ip": "191.96.145.243" - }, - { - "country": "Mexico", - "region": "", - "city": "Chiapas", - "name": "MX#6", - "hostname": "node-mx-01.protonvpn.net", - "entry_ip": "191.96.145.238", - "exit_ip": "191.96.145.244" - }, - { - "country": "Mexico", - "region": "", - "city": "Chiapas", - "name": "MX#7", - "hostname": "node-mx-01.protonvpn.net", - "entry_ip": "191.96.145.238", - "exit_ip": "191.96.145.245" - }, - { - "country": "Mexico", - "region": "", - "city": "Chiapas", - "name": "MX#8", - "hostname": "node-mx-01.protonvpn.net", - "entry_ip": "191.96.145.238", - "exit_ip": "191.96.145.246" + "exit_ip": [ + "191.96.145.242", + "191.96.145.243", + "191.96.145.244", + "191.96.145.245", + "191.96.145.246" + ] }, { "country": "Moldova", @@ -93757,7 +91998,9 @@ "name": "CH-MD#1", "hostname": "ch-md-01a.protonvpn.com", "entry_ip": "185.159.157.111", - "exit_ip": "178.17.168.168" + "exit_ip": [ + "178.17.168.168" + ] }, { "country": "Moldova", @@ -93766,7 +92009,9 @@ "name": "SE-MD#1", "hostname": "se-md-01a.protonvpn.com", "entry_ip": "185.159.156.45", - "exit_ip": "178.17.168.166" + "exit_ip": [ + "178.17.168.166" + ] }, { "country": "Moldova", @@ -93775,25 +92020,11 @@ "name": "MD#1", "hostname": "md-01.protonvpn.net", "entry_ip": "178.17.168.163", - "exit_ip": "178.17.168.163" - }, - { - "country": "Moldova", - "region": "", - "city": "Chisinau", - "name": "MD#2", - "hostname": "md-01.protonvpn.net", - "entry_ip": "178.17.168.163", - "exit_ip": "178.17.168.164" - }, - { - "country": "Moldova", - "region": "", - "city": "Chisinau", - "name": "MD#3", - "hostname": "md-01.protonvpn.net", - "entry_ip": "178.17.168.163", - "exit_ip": "178.17.168.165" + "exit_ip": [ + "178.17.168.163", + "178.17.168.164", + "178.17.168.165" + ] }, { "country": "Moldova", @@ -93802,43 +92033,13 @@ "name": "MD#4", "hostname": "node-md-01.protonvpn.net", "entry_ip": "178.17.168.162", - "exit_ip": "178.17.168.166" - }, - { - "country": "Moldova", - "region": "", - "city": "Chisinau", - "name": "MD#5", - "hostname": "node-md-01.protonvpn.net", - "entry_ip": "178.17.168.162", - "exit_ip": "178.17.168.167" - }, - { - "country": "Moldova", - "region": "", - "city": "Chisinau", - "name": "MD#6", - "hostname": "node-md-01.protonvpn.net", - "entry_ip": "178.17.168.162", - "exit_ip": "178.17.168.168" - }, - { - "country": "Moldova", - "region": "", - "city": "Chisinau", - "name": "MD#7", - "hostname": "node-md-01.protonvpn.net", - "entry_ip": "178.17.168.162", - "exit_ip": "178.17.168.169" - }, - { - "country": "Moldova", - "region": "", - "city": "Chisinau", - "name": "MD#8", - "hostname": "node-md-01.protonvpn.net", - "entry_ip": "178.17.168.162", - "exit_ip": "178.17.168.170" + "exit_ip": [ + "178.17.168.166", + "178.17.168.167", + "178.17.168.168", + "178.17.168.169", + "178.17.168.170" + ] }, { "country": "Netherlands", @@ -93847,7 +92048,9 @@ "name": "CH-NL#1", "hostname": "ch-nl-01a.protonvpn.com", "entry_ip": "185.159.157.28", - "exit_ip": "185.107.95.214" + "exit_ip": [ + "185.107.95.214" + ] }, { "country": "Netherlands", @@ -93856,7 +92059,9 @@ "name": "CH-NL#1", "hostname": "ch-nl-01b.protonvpn.com", "entry_ip": "185.159.157.83", - "exit_ip": "185.107.95.213" + "exit_ip": [ + "185.107.95.213" + ] }, { "country": "Netherlands", @@ -93865,7 +92070,9 @@ "name": "IS-NL#1", "hostname": "is-nl-01a.protonvpn.com", "entry_ip": "185.159.158.105", - "exit_ip": "77.247.178.186" + "exit_ip": [ + "77.247.178.186" + ] }, { "country": "Netherlands", @@ -93874,7 +92081,9 @@ "name": "IS-NL#1", "hostname": "is-nl-01b.protonvpn.com", "entry_ip": "185.159.158.55", - "exit_ip": "62.112.9.237" + "exit_ip": [ + "62.112.9.237" + ] }, { "country": "Netherlands", @@ -93883,7 +92092,9 @@ "name": "IS-NL#1", "hostname": "is-nl-01c.protonvpn.com", "entry_ip": "185.159.158.134", - "exit_ip": "192.40.57.51" + "exit_ip": [ + "192.40.57.51" + ] }, { "country": "Netherlands", @@ -93892,7 +92103,9 @@ "name": "IS-NL#1", "hostname": "is-nl-01d.protonvpn.com", "entry_ip": "185.159.158.135", - "exit_ip": "192.40.57.238" + "exit_ip": [ + "192.40.57.238" + ] }, { "country": "Netherlands", @@ -93901,7 +92114,9 @@ "name": "IS-NL#1", "hostname": "is-nl-01e.protonvpn.com", "entry_ip": "185.159.158.146", - "exit_ip": "107.181.180.174" + "exit_ip": [ + "107.181.180.174" + ] }, { "country": "Netherlands", @@ -93910,7 +92125,9 @@ "name": "IS-NL#1", "hostname": "is-nl-01f.protonvpn.com", "entry_ip": "185.159.158.173", - "exit_ip": "46.166.182.115" + "exit_ip": [ + "46.166.182.115" + ] }, { "country": "Netherlands", @@ -93919,7 +92136,9 @@ "name": "IS-NL#1", "hostname": "is-nl-01g.protonvpn.com", "entry_ip": "185.159.158.174", - "exit_ip": "46.166.187.72" + "exit_ip": [ + "46.166.187.72" + ] }, { "country": "Netherlands", @@ -93928,7 +92147,9 @@ "name": "IS-NL#1", "hostname": "is-nl-01h.protonvpn.com", "entry_ip": "185.159.158.175", - "exit_ip": "46.166.187.145" + "exit_ip": [ + "46.166.187.145" + ] }, { "country": "Netherlands", @@ -93937,7 +92158,9 @@ "name": "IS-NL#1", "hostname": "is-nl-01i.protonvpn.com", "entry_ip": "185.159.158.176", - "exit_ip": "185.107.57.3" + "exit_ip": [ + "185.107.57.3" + ] }, { "country": "Netherlands", @@ -93946,34 +92169,12 @@ "name": "NL-FREE#1", "hostname": "lxc-nl-02.protonvpn.com", "entry_ip": "217.23.3.76", - "exit_ip": "217.23.3.171" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#1", - "hostname": "lxc-nl-02.protonvpn.com", - "entry_ip": "217.23.3.76", - "exit_ip": "217.23.3.96" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#1", - "hostname": "lxc-nl-02.protonvpn.com", - "entry_ip": "217.23.3.76", - "exit_ip": "217.23.3.92" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#1", - "hostname": "lxc-nl-02.protonvpn.com", - "entry_ip": "217.23.3.76", - "exit_ip": "217.23.3.91" + "exit_ip": [ + "217.23.3.91", + "217.23.3.92", + "217.23.3.96", + "217.23.3.171" + ] }, { "country": "Netherlands", @@ -93982,34 +92183,12 @@ "name": "NL-FREE#1", "hostname": "lxc-nl-03.protonvpn.com", "entry_ip": "89.39.107.188", - "exit_ip": "89.39.107.203" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#1", - "hostname": "lxc-nl-03.protonvpn.com", - "entry_ip": "89.39.107.188", - "exit_ip": "89.39.107.202" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#1", - "hostname": "lxc-nl-03.protonvpn.com", - "entry_ip": "89.39.107.188", - "exit_ip": "89.39.107.204" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#1", - "hostname": "lxc-nl-03.protonvpn.com", - "entry_ip": "89.39.107.188", - "exit_ip": "89.39.107.205" + "exit_ip": [ + "89.39.107.202", + "89.39.107.203", + "89.39.107.204", + "89.39.107.205" + ] }, { "country": "Netherlands", @@ -94018,34 +92197,12 @@ "name": "NL-FREE#1", "hostname": "lxc-nl-04.protonvpn.com", "entry_ip": "89.39.107.109", - "exit_ip": "89.39.107.200" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#1", - "hostname": "lxc-nl-04.protonvpn.com", - "entry_ip": "89.39.107.109", - "exit_ip": "89.39.107.198" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#1", - "hostname": "lxc-nl-04.protonvpn.com", - "entry_ip": "89.39.107.109", - "exit_ip": "89.39.107.199" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#1", - "hostname": "lxc-nl-04.protonvpn.com", - "entry_ip": "89.39.107.109", - "exit_ip": "89.39.107.201" + "exit_ip": [ + "89.39.107.198", + "89.39.107.199", + "89.39.107.200", + "89.39.107.201" + ] }, { "country": "Netherlands", @@ -94054,34 +92211,12 @@ "name": "NL-FREE#1", "hostname": "lxc-nl-05.protonvpn.com", "entry_ip": "89.39.107.113", - "exit_ip": "89.39.107.196" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#1", - "hostname": "lxc-nl-05.protonvpn.com", - "entry_ip": "89.39.107.113", - "exit_ip": "89.39.107.195" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#1", - "hostname": "lxc-nl-05.protonvpn.com", - "entry_ip": "89.39.107.113", - "exit_ip": "89.39.107.194" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#1", - "hostname": "lxc-nl-05.protonvpn.com", - "entry_ip": "89.39.107.113", - "exit_ip": "89.39.107.197" + "exit_ip": [ + "89.39.107.194", + "89.39.107.195", + "89.39.107.196", + "89.39.107.197" + ] }, { "country": "Netherlands", @@ -94090,34 +92225,12 @@ "name": "NL-FREE#1", "hostname": "lxc-nl-06.protonvpn.com", "entry_ip": "89.39.107.185", - "exit_ip": "89.39.107.190" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#1", - "hostname": "lxc-nl-06.protonvpn.com", - "entry_ip": "89.39.107.185", - "exit_ip": "89.39.107.191" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#1", - "hostname": "lxc-nl-06.protonvpn.com", - "entry_ip": "89.39.107.185", - "exit_ip": "89.39.107.192" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#1", - "hostname": "lxc-nl-06.protonvpn.com", - "entry_ip": "89.39.107.185", - "exit_ip": "89.39.107.193" + "exit_ip": [ + "89.39.107.190", + "89.39.107.191", + "89.39.107.192", + "89.39.107.193" + ] }, { "country": "Netherlands", @@ -94126,34 +92239,12 @@ "name": "NL-FREE#1", "hostname": "lxc-nl-09.protonvpn.com", "entry_ip": "109.201.133.20", - "exit_ip": "109.201.133.30" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#1", - "hostname": "lxc-nl-09.protonvpn.com", - "entry_ip": "109.201.133.20", - "exit_ip": "109.201.133.26" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#1", - "hostname": "lxc-nl-09.protonvpn.com", - "entry_ip": "109.201.133.20", - "exit_ip": "109.201.133.24" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#1", - "hostname": "lxc-nl-09.protonvpn.com", - "entry_ip": "109.201.133.20", - "exit_ip": "109.201.133.22" + "exit_ip": [ + "109.201.133.22", + "109.201.133.24", + "109.201.133.26", + "109.201.133.30" + ] }, { "country": "Netherlands", @@ -94162,34 +92253,12 @@ "name": "NL-FREE#10", "hostname": "lxc-nl-10.protonvpn.com", "entry_ip": "46.166.142.213", - "exit_ip": "46.166.142.214" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#10", - "hostname": "lxc-nl-10.protonvpn.com", - "entry_ip": "46.166.142.213", - "exit_ip": "46.166.142.215" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#10", - "hostname": "lxc-nl-10.protonvpn.com", - "entry_ip": "46.166.142.213", - "exit_ip": "46.166.142.216" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#10", - "hostname": "lxc-nl-10.protonvpn.com", - "entry_ip": "46.166.142.213", - "exit_ip": "46.166.142.217" + "exit_ip": [ + "46.166.142.214", + "46.166.142.215", + "46.166.142.216", + "46.166.142.217" + ] }, { "country": "Netherlands", @@ -94198,34 +92267,12 @@ "name": "NL-FREE#11", "hostname": "lxc-nl-21.protonvpn.com", "entry_ip": "185.107.95.225", - "exit_ip": "185.107.95.229" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#11", - "hostname": "lxc-nl-21.protonvpn.com", - "entry_ip": "185.107.95.225", - "exit_ip": "185.107.95.227" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#11", - "hostname": "lxc-nl-21.protonvpn.com", - "entry_ip": "185.107.95.225", - "exit_ip": "185.107.95.228" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#11", - "hostname": "lxc-nl-21.protonvpn.com", - "entry_ip": "185.107.95.225", - "exit_ip": "185.107.95.226" + "exit_ip": [ + "185.107.95.226", + "185.107.95.227", + "185.107.95.228", + "185.107.95.229" + ] }, { "country": "Netherlands", @@ -94234,34 +92281,12 @@ "name": "NL-FREE#11", "hostname": "lxc-nl-36.protonvpn.com", "entry_ip": "185.107.80.216", - "exit_ip": "185.107.80.217" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#11", - "hostname": "lxc-nl-36.protonvpn.com", - "entry_ip": "185.107.80.216", - "exit_ip": "185.107.80.219" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#11", - "hostname": "lxc-nl-36.protonvpn.com", - "entry_ip": "185.107.80.216", - "exit_ip": "185.107.80.218" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#11", - "hostname": "lxc-nl-36.protonvpn.com", - "entry_ip": "185.107.80.216", - "exit_ip": "185.107.80.220" + "exit_ip": [ + "185.107.80.217", + "185.107.80.218", + "185.107.80.219", + "185.107.80.220" + ] }, { "country": "Netherlands", @@ -94270,34 +92295,12 @@ "name": "NL-FREE#2", "hostname": "lxc-nl-11.protonvpn.com", "entry_ip": "46.166.142.218", - "exit_ip": "46.166.142.222" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#2", - "hostname": "lxc-nl-11.protonvpn.com", - "entry_ip": "46.166.142.218", - "exit_ip": "46.166.142.219" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#2", - "hostname": "lxc-nl-11.protonvpn.com", - "entry_ip": "46.166.142.218", - "exit_ip": "46.166.142.220" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#2", - "hostname": "lxc-nl-11.protonvpn.com", - "entry_ip": "46.166.142.218", - "exit_ip": "46.166.142.221" + "exit_ip": [ + "46.166.142.219", + "46.166.142.220", + "46.166.142.221", + "46.166.142.222" + ] }, { "country": "Netherlands", @@ -94306,34 +92309,12 @@ "name": "NL-FREE#3", "hostname": "lxc-nl-12.protonvpn.com", "entry_ip": "185.165.241.34", - "exit_ip": "185.165.241.36" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#3", - "hostname": "lxc-nl-12.protonvpn.com", - "entry_ip": "185.165.241.34", - "exit_ip": "185.165.241.35" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#3", - "hostname": "lxc-nl-12.protonvpn.com", - "entry_ip": "185.165.241.34", - "exit_ip": "185.165.241.37" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#3", - "hostname": "lxc-nl-12.protonvpn.com", - "entry_ip": "185.165.241.34", - "exit_ip": "185.165.241.38" + "exit_ip": [ + "185.165.241.35", + "185.165.241.36", + "185.165.241.37", + "185.165.241.38" + ] }, { "country": "Netherlands", @@ -94342,34 +92323,12 @@ "name": "NL-FREE#3", "hostname": "lxc-nl-16.protonvpn.com", "entry_ip": "192.40.57.226", - "exit_ip": "192.40.57.230" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#3", - "hostname": "lxc-nl-16.protonvpn.com", - "entry_ip": "192.40.57.226", - "exit_ip": "192.40.57.228" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#3", - "hostname": "lxc-nl-16.protonvpn.com", - "entry_ip": "192.40.57.226", - "exit_ip": "192.40.57.227" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#3", - "hostname": "lxc-nl-16.protonvpn.com", - "entry_ip": "192.40.57.226", - "exit_ip": "192.40.57.229" + "exit_ip": [ + "192.40.57.227", + "192.40.57.228", + "192.40.57.229", + "192.40.57.230" + ] }, { "country": "Netherlands", @@ -94378,34 +92337,12 @@ "name": "NL-FREE#3", "hostname": "lxc-nl-17.protonvpn.com", "entry_ip": "192.40.57.231", - "exit_ip": "192.40.57.233" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#3", - "hostname": "lxc-nl-17.protonvpn.com", - "entry_ip": "192.40.57.231", - "exit_ip": "192.40.57.234" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#3", - "hostname": "lxc-nl-17.protonvpn.com", - "entry_ip": "192.40.57.231", - "exit_ip": "192.40.57.235" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#3", - "hostname": "lxc-nl-17.protonvpn.com", - "entry_ip": "192.40.57.231", - "exit_ip": "192.40.57.232" + "exit_ip": [ + "192.40.57.232", + "192.40.57.233", + "192.40.57.234", + "192.40.57.235" + ] }, { "country": "Netherlands", @@ -94414,34 +92351,12 @@ "name": "NL-FREE#4", "hostname": "lxc-nl-22.protonvpn.com", "entry_ip": "190.2.132.198", - "exit_ip": "190.2.132.224" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#4", - "hostname": "lxc-nl-22.protonvpn.com", - "entry_ip": "190.2.132.198", - "exit_ip": "190.2.132.213" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#4", - "hostname": "lxc-nl-22.protonvpn.com", - "entry_ip": "190.2.132.198", - "exit_ip": "190.2.132.207" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#4", - "hostname": "lxc-nl-22.protonvpn.com", - "entry_ip": "190.2.132.198", - "exit_ip": "190.2.132.214" + "exit_ip": [ + "190.2.132.207", + "190.2.132.213", + "190.2.132.214", + "190.2.132.224" + ] }, { "country": "Netherlands", @@ -94450,34 +92365,12 @@ "name": "NL-FREE#4", "hostname": "lxc-nl-23.protonvpn.com", "entry_ip": "89.38.97.115", - "exit_ip": "89.38.97.116" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#4", - "hostname": "lxc-nl-23.protonvpn.com", - "entry_ip": "89.38.97.115", - "exit_ip": "89.38.97.132" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#4", - "hostname": "lxc-nl-23.protonvpn.com", - "entry_ip": "89.38.97.115", - "exit_ip": "89.38.97.125" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#4", - "hostname": "lxc-nl-23.protonvpn.com", - "entry_ip": "89.38.97.115", - "exit_ip": "89.38.97.144" + "exit_ip": [ + "89.38.97.116", + "89.38.97.125", + "89.38.97.132", + "89.38.97.144" + ] }, { "country": "Netherlands", @@ -94486,34 +92379,12 @@ "name": "NL-FREE#4", "hostname": "lxc-nl-24.protonvpn.com", "entry_ip": "190.2.131.198", - "exit_ip": "190.2.131.206" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#4", - "hostname": "lxc-nl-24.protonvpn.com", - "entry_ip": "190.2.131.198", - "exit_ip": "190.2.131.208" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#4", - "hostname": "lxc-nl-24.protonvpn.com", - "entry_ip": "190.2.131.198", - "exit_ip": "190.2.131.209" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#4", - "hostname": "lxc-nl-24.protonvpn.com", - "entry_ip": "190.2.131.198", - "exit_ip": "190.2.131.207" + "exit_ip": [ + "190.2.131.206", + "190.2.131.207", + "190.2.131.208", + "190.2.131.209" + ] }, { "country": "Netherlands", @@ -94522,34 +92393,12 @@ "name": "NL-FREE#5", "hostname": "lxc-nl-25.protonvpn.com", "entry_ip": "190.2.133.223", - "exit_ip": "190.2.133.224" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#5", - "hostname": "lxc-nl-25.protonvpn.com", - "entry_ip": "190.2.133.223", - "exit_ip": "190.2.133.225" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#5", - "hostname": "lxc-nl-25.protonvpn.com", - "entry_ip": "190.2.133.223", - "exit_ip": "190.2.133.229" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#5", - "hostname": "lxc-nl-25.protonvpn.com", - "entry_ip": "190.2.133.223", - "exit_ip": "190.2.133.230" + "exit_ip": [ + "190.2.133.224", + "190.2.133.225", + "190.2.133.229", + "190.2.133.230" + ] }, { "country": "Netherlands", @@ -94558,34 +92407,12 @@ "name": "NL-FREE#5", "hostname": "lxc-nl-26.protonvpn.com", "entry_ip": "190.2.131.200", - "exit_ip": "190.2.131.204" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#5", - "hostname": "lxc-nl-26.protonvpn.com", - "entry_ip": "190.2.131.200", - "exit_ip": "190.2.131.205" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#5", - "hostname": "lxc-nl-26.protonvpn.com", - "entry_ip": "190.2.131.200", - "exit_ip": "190.2.131.201" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#5", - "hostname": "lxc-nl-26.protonvpn.com", - "entry_ip": "190.2.131.200", - "exit_ip": "190.2.131.202" + "exit_ip": [ + "190.2.131.201", + "190.2.131.202", + "190.2.131.204", + "190.2.131.205" + ] }, { "country": "Netherlands", @@ -94594,34 +92421,12 @@ "name": "NL-FREE#5", "hostname": "lxc-nl-27.protonvpn.com", "entry_ip": "190.2.130.161", - "exit_ip": "190.2.130.164" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#5", - "hostname": "lxc-nl-27.protonvpn.com", - "entry_ip": "190.2.130.161", - "exit_ip": "190.2.130.167" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#5", - "hostname": "lxc-nl-27.protonvpn.com", - "entry_ip": "190.2.130.161", - "exit_ip": "190.2.130.177" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#5", - "hostname": "lxc-nl-27.protonvpn.com", - "entry_ip": "190.2.130.161", - "exit_ip": "190.2.130.168" + "exit_ip": [ + "190.2.130.164", + "190.2.130.167", + "190.2.130.168", + "190.2.130.177" + ] }, { "country": "Netherlands", @@ -94630,34 +92435,12 @@ "name": "NL-FREE#6", "hostname": "lxc-nl-33.protonvpn.com", "entry_ip": "46.166.182.69", - "exit_ip": "46.166.182.72" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#6", - "hostname": "lxc-nl-33.protonvpn.com", - "entry_ip": "46.166.182.69", - "exit_ip": "46.166.182.71" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#6", - "hostname": "lxc-nl-33.protonvpn.com", - "entry_ip": "46.166.182.69", - "exit_ip": "46.166.182.73" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#6", - "hostname": "lxc-nl-33.protonvpn.com", - "entry_ip": "46.166.182.69", - "exit_ip": "46.166.182.70" + "exit_ip": [ + "46.166.182.70", + "46.166.182.71", + "46.166.182.72", + "46.166.182.73" + ] }, { "country": "Netherlands", @@ -94666,34 +92449,12 @@ "name": "NL-FREE#6", "hostname": "lxc-nl-34.protonvpn.com", "entry_ip": "46.166.182.59", - "exit_ip": "46.166.182.68" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#6", - "hostname": "lxc-nl-34.protonvpn.com", - "entry_ip": "46.166.182.59", - "exit_ip": "46.166.182.65" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#6", - "hostname": "lxc-nl-34.protonvpn.com", - "entry_ip": "46.166.182.59", - "exit_ip": "46.166.182.67" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#6", - "hostname": "lxc-nl-34.protonvpn.com", - "entry_ip": "46.166.182.59", - "exit_ip": "46.166.182.66" + "exit_ip": [ + "46.166.182.65", + "46.166.182.66", + "46.166.182.67", + "46.166.182.68" + ] }, { "country": "Netherlands", @@ -94702,34 +92463,12 @@ "name": "NL-FREE#6", "hostname": "lxc-nl-35.protonvpn.com", "entry_ip": "46.166.182.31", - "exit_ip": "46.166.182.57" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#6", - "hostname": "lxc-nl-35.protonvpn.com", - "entry_ip": "46.166.182.31", - "exit_ip": "46.166.182.32" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#6", - "hostname": "lxc-nl-35.protonvpn.com", - "entry_ip": "46.166.182.31", - "exit_ip": "46.166.182.33" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#6", - "hostname": "lxc-nl-35.protonvpn.com", - "entry_ip": "46.166.182.31", - "exit_ip": "46.166.182.34" + "exit_ip": [ + "46.166.182.32", + "46.166.182.33", + "46.166.182.34", + "46.166.182.57" + ] }, { "country": "Netherlands", @@ -94738,34 +92477,12 @@ "name": "NL-FREE#7", "hostname": "lxc-nl-37.protonvpn.com", "entry_ip": "107.181.180.162", - "exit_ip": "107.181.180.166" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#7", - "hostname": "lxc-nl-37.protonvpn.com", - "entry_ip": "107.181.180.162", - "exit_ip": "107.181.180.164" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#7", - "hostname": "lxc-nl-37.protonvpn.com", - "entry_ip": "107.181.180.162", - "exit_ip": "107.181.180.163" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#7", - "hostname": "lxc-nl-37.protonvpn.com", - "entry_ip": "107.181.180.162", - "exit_ip": "107.181.180.165" + "exit_ip": [ + "107.181.180.163", + "107.181.180.164", + "107.181.180.165", + "107.181.180.166" + ] }, { "country": "Netherlands", @@ -94774,34 +92491,12 @@ "name": "NL-FREE#7", "hostname": "lxc-nl-38.protonvpn.com", "entry_ip": "107.181.180.167", - "exit_ip": "107.181.180.170" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#7", - "hostname": "lxc-nl-38.protonvpn.com", - "entry_ip": "107.181.180.167", - "exit_ip": "107.181.180.171" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#7", - "hostname": "lxc-nl-38.protonvpn.com", - "entry_ip": "107.181.180.167", - "exit_ip": "107.181.180.168" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#7", - "hostname": "lxc-nl-38.protonvpn.com", - "entry_ip": "107.181.180.167", - "exit_ip": "107.181.180.169" + "exit_ip": [ + "107.181.180.168", + "107.181.180.169", + "107.181.180.170", + "107.181.180.171" + ] }, { "country": "Netherlands", @@ -94810,7 +92505,9 @@ "name": "NL-FREE#8", "hostname": "nl-208.protonvpn.com", "entry_ip": "89.38.99.188", - "exit_ip": "89.38.99.188" + "exit_ip": [ + "89.38.99.188" + ] }, { "country": "Netherlands", @@ -94819,34 +92516,12 @@ "name": "NL-FREE#9", "hostname": "nl-218.protonvpn.com", "entry_ip": "190.2.138.15", - "exit_ip": "190.2.138.12" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#9", - "hostname": "nl-218.protonvpn.com", - "entry_ip": "190.2.138.15", - "exit_ip": "190.2.138.16" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#9", - "hostname": "nl-218.protonvpn.com", - "entry_ip": "190.2.138.15", - "exit_ip": "190.2.138.17" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "NL-FREE#9", - "hostname": "nl-218.protonvpn.com", - "entry_ip": "190.2.138.15", - "exit_ip": "190.2.138.14" + "exit_ip": [ + "190.2.138.12", + "190.2.138.14", + "190.2.138.16", + "190.2.138.17" + ] }, { "country": "Netherlands", @@ -94855,7 +92530,9 @@ "name": "SE-NL#1", "hostname": "se-nl-01a.protonvpn.com", "entry_ip": "185.159.156.72", - "exit_ip": "190.2.132.155" + "exit_ip": [ + "190.2.132.155" + ] }, { "country": "Netherlands", @@ -94864,16 +92541,9 @@ "name": "SE-NL#1", "hostname": "se-nl-01b.protonvpn.com", "entry_ip": "185.159.156.73", - "exit_ip": "190.2.132.125" - }, - { - "country": "Netherlands", - "region": "", - "city": "", - "name": "SE-NL#1", - "hostname": "se-nl-01c.protonvpn.com", - "entry_ip": "185.159.156.74", - "exit_ip": "190.2.131.159" + "exit_ip": [ + "190.2.132.125" + ] }, { "country": "Netherlands", @@ -94882,7 +92552,9 @@ "name": "SE-NL#1", "hostname": "se-nl-01d.protonvpn.com", "entry_ip": "185.159.156.75", - "exit_ip": "85.159.237.73" + "exit_ip": [ + "85.159.237.73" + ] }, { "country": "Netherlands", @@ -94891,7 +92563,9 @@ "name": "SE-NL#1", "hostname": "se-nl-01e.protonvpn.com", "entry_ip": "185.159.156.76", - "exit_ip": "185.107.80.192" + "exit_ip": [ + "185.107.80.192" + ] }, { "country": "Netherlands", @@ -94900,34 +92574,10 @@ "name": "NL#1", "hostname": "nl-01.protonvpn.net", "entry_ip": "62.112.9.165", - "exit_ip": "62.112.9.165" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#10", - "hostname": "lxc-nl-07.protonvpn.com", - "entry_ip": "89.39.107.207", - "exit_ip": "89.39.107.209" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#11", - "hostname": "lxc-nl-07.protonvpn.com", - "entry_ip": "89.39.107.207", - "exit_ip": "89.39.107.210" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#12", - "hostname": "lxc-nl-07.protonvpn.com", - "entry_ip": "89.39.107.207", - "exit_ip": "89.39.107.211" + "exit_ip": [ + "62.112.9.165", + "62.112.9.166" + ] }, { "country": "Netherlands", @@ -94936,7 +92586,9 @@ "name": "NL#13", "hostname": "nl-13.protonvpn.com", "entry_ip": "190.2.146.228", - "exit_ip": "190.2.146.228" + "exit_ip": [ + "190.2.146.228" + ] }, { "country": "Netherlands", @@ -94945,25 +92597,11 @@ "name": "NL#14", "hostname": "lxc-nl-13.protonvpn.com", "entry_ip": "190.2.146.180", - "exit_ip": "190.2.146.230" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#15", - "hostname": "lxc-nl-13.protonvpn.com", - "entry_ip": "190.2.146.180", - "exit_ip": "190.2.146.231" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#16", - "hostname": "lxc-nl-13.protonvpn.com", - "entry_ip": "190.2.146.180", - "exit_ip": "190.2.146.232" + "exit_ip": [ + "190.2.146.230", + "190.2.146.231", + "190.2.146.232" + ] }, { "country": "Netherlands", @@ -94972,43 +92610,12 @@ "name": "NL#17", "hostname": "lxc-nl-14.protonvpn.com", "entry_ip": "192.40.57.50", - "exit_ip": "192.40.57.51" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#18", - "hostname": "lxc-nl-14.protonvpn.com", - "entry_ip": "192.40.57.50", - "exit_ip": "192.40.57.52" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#19", - "hostname": "lxc-nl-14.protonvpn.com", - "entry_ip": "192.40.57.50", - "exit_ip": "192.40.57.53" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#2", - "hostname": "nl-01.protonvpn.net", - "entry_ip": "62.112.9.165", - "exit_ip": "62.112.9.166" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#20", - "hostname": "lxc-nl-14.protonvpn.com", - "entry_ip": "192.40.57.50", - "exit_ip": "192.40.57.54" + "exit_ip": [ + "192.40.57.51", + "192.40.57.52", + "192.40.57.53", + "192.40.57.54" + ] }, { "country": "Netherlands", @@ -95017,34 +92624,12 @@ "name": "NL#21", "hostname": "lxc-nl-15.protonvpn.com", "entry_ip": "192.40.57.55", - "exit_ip": "192.40.57.56" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#22", - "hostname": "lxc-nl-15.protonvpn.com", - "entry_ip": "192.40.57.55", - "exit_ip": "192.40.57.57" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#23", - "hostname": "lxc-nl-15.protonvpn.com", - "entry_ip": "192.40.57.55", - "exit_ip": "192.40.57.58" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#24", - "hostname": "lxc-nl-15.protonvpn.com", - "entry_ip": "192.40.57.55", - "exit_ip": "192.40.57.59" + "exit_ip": [ + "192.40.57.56", + "192.40.57.57", + "192.40.57.58", + "192.40.57.59" + ] }, { "country": "Netherlands", @@ -95053,7 +92638,9 @@ "name": "NL#25", "hostname": "nl-25.protonvpn.net", "entry_ip": "192.40.57.237", - "exit_ip": "192.40.57.237" + "exit_ip": [ + "192.40.57.237" + ] }, { "country": "Netherlands", @@ -95062,25 +92649,11 @@ "name": "NL#26", "hostname": "node-nl-18.protonvpn.net", "entry_ip": "192.40.57.236", - "exit_ip": "192.40.57.238" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#27", - "hostname": "node-nl-18.protonvpn.net", - "entry_ip": "192.40.57.236", - "exit_ip": "192.40.57.239" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#28", - "hostname": "node-nl-18.protonvpn.net", - "entry_ip": "192.40.57.236", - "exit_ip": "192.40.57.240" + "exit_ip": [ + "192.40.57.238", + "192.40.57.239", + "192.40.57.240" + ] }, { "country": "Netherlands", @@ -95089,7 +92662,10 @@ "name": "NL#3", "hostname": "node-nl-01.protonvpn.net", "entry_ip": "62.112.9.164", - "exit_ip": "62.112.9.167" + "exit_ip": [ + "62.112.9.167", + "62.112.9.237" + ] }, { "country": "Netherlands", @@ -95098,16 +92674,10 @@ "name": "NL#37", "hostname": "nl-37.protonvpn.com", "entry_ip": "190.2.132.141", - "exit_ip": "190.2.132.141" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#38", - "hostname": "nl-37.protonvpn.com", - "entry_ip": "190.2.132.141", - "exit_ip": "190.2.132.148" + "exit_ip": [ + "190.2.132.141", + "190.2.132.148" + ] }, { "country": "Netherlands", @@ -95116,25 +92686,10 @@ "name": "NL#39", "hostname": "lxc-nl-28.protonvpn.com", "entry_ip": "190.2.132.139", - "exit_ip": "190.2.132.155" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#4", - "hostname": "node-nl-01.protonvpn.net", - "entry_ip": "62.112.9.164", - "exit_ip": "62.112.9.237" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#40", - "hostname": "lxc-nl-28.protonvpn.com", - "entry_ip": "190.2.132.139", - "exit_ip": "190.2.132.157" + "exit_ip": [ + "190.2.132.155", + "190.2.132.157" + ] }, { "country": "Netherlands", @@ -95143,70 +92698,12 @@ "name": "NL#41", "hostname": "lxc-nl-29.protonvpn.com", "entry_ip": "190.2.132.124", - "exit_ip": "190.2.132.125" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#42", - "hostname": "lxc-nl-29.protonvpn.com", - "entry_ip": "190.2.132.124", - "exit_ip": "190.2.132.127" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#43", - "hostname": "lxc-nl-29.protonvpn.com", - "entry_ip": "190.2.132.124", - "exit_ip": "190.2.132.128" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#44", - "hostname": "lxc-nl-29.protonvpn.com", - "entry_ip": "190.2.132.124", - "exit_ip": "190.2.132.136" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#45", - "hostname": "nl-45.protonvpn.com", - "entry_ip": "190.2.131.157", - "exit_ip": "190.2.131.157" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#46", - "hostname": "lxc-nl-30.protonvpn.com", - "entry_ip": "190.2.131.156", - "exit_ip": "190.2.131.159" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#47", - "hostname": "lxc-nl-30.protonvpn.com", - "entry_ip": "190.2.131.156", - "exit_ip": "190.2.131.167" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#48", - "hostname": "lxc-nl-30.protonvpn.com", - "entry_ip": "190.2.131.156", - "exit_ip": "190.2.131.175" + "exit_ip": [ + "190.2.132.125", + "190.2.132.127", + "190.2.132.128", + "190.2.132.136" + ] }, { "country": "Netherlands", @@ -95215,7 +92712,12 @@ "name": "NL#49", "hostname": "lxc-nl-31.protonvpn.com", "entry_ip": "85.159.237.72", - "exit_ip": "85.159.237.73" + "exit_ip": [ + "85.159.237.73", + "85.159.237.74", + "85.159.237.75", + "85.159.237.76" + ] }, { "country": "Netherlands", @@ -95224,34 +92726,12 @@ "name": "NL#5", "hostname": "lxc-nl-08.protonvpn.com", "entry_ip": "77.247.178.180", - "exit_ip": "77.247.178.182" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#50", - "hostname": "lxc-nl-31.protonvpn.com", - "entry_ip": "85.159.237.72", - "exit_ip": "85.159.237.74" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#51", - "hostname": "lxc-nl-31.protonvpn.com", - "entry_ip": "85.159.237.72", - "exit_ip": "85.159.237.75" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#52", - "hostname": "lxc-nl-31.protonvpn.com", - "entry_ip": "85.159.237.72", - "exit_ip": "85.159.237.76" + "exit_ip": [ + "77.247.178.182", + "77.247.178.183", + "77.247.178.185", + "77.247.178.186" + ] }, { "country": "Netherlands", @@ -95260,7 +92740,9 @@ "name": "NL#57", "hostname": "nl-57.protonvpn.net", "entry_ip": "107.181.180.173", - "exit_ip": "107.181.180.173" + "exit_ip": [ + "107.181.180.173" + ] }, { "country": "Netherlands", @@ -95269,34 +92751,11 @@ "name": "NL#58", "hostname": "node-nl-39.protonvpn.net", "entry_ip": "107.181.180.172", - "exit_ip": "107.181.180.174" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#59", - "hostname": "node-nl-39.protonvpn.net", - "entry_ip": "107.181.180.172", - "exit_ip": "107.181.180.175" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#6", - "hostname": "lxc-nl-08.protonvpn.com", - "entry_ip": "77.247.178.180", - "exit_ip": "77.247.178.183" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#60", - "hostname": "node-nl-39.protonvpn.net", - "entry_ip": "107.181.180.172", - "exit_ip": "107.181.180.176" + "exit_ip": [ + "107.181.180.174", + "107.181.180.175", + "107.181.180.176" + ] }, { "country": "Netherlands", @@ -95305,16 +92764,9 @@ "name": "NL#69", "hostname": "nl-69.protonvpn.net", "entry_ip": "46.166.182.101", - "exit_ip": "46.166.182.101" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#7", - "hostname": "lxc-nl-08.protonvpn.com", - "entry_ip": "77.247.178.180", - "exit_ip": "77.247.178.185" + "exit_ip": [ + "46.166.182.101" + ] }, { "country": "Netherlands", @@ -95323,43 +92775,50 @@ "name": "NL#70", "hostname": "node-nl-43.protonvpn.net", "entry_ip": "46.166.182.100", - "exit_ip": "46.166.182.115" + "exit_ip": [ + "46.166.182.115", + "46.166.182.116", + "46.166.182.117" + ] }, { "country": "Netherlands", "region": "", "city": "Amsterdam", - "name": "NL#71", - "hostname": "node-nl-43.protonvpn.net", - "entry_ip": "46.166.182.100", - "exit_ip": "46.166.182.116" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#72", - "hostname": "node-nl-43.protonvpn.net", - "entry_ip": "46.166.182.100", - "exit_ip": "46.166.182.117" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#8", - "hostname": "lxc-nl-08.protonvpn.com", - "entry_ip": "77.247.178.180", - "exit_ip": "77.247.178.186" - }, - { - "country": "Netherlands", - "region": "", - "city": "Amsterdam", - "name": "NL#9", - "hostname": "lxc-nl-07.protonvpn.com", - "entry_ip": "89.39.107.207", - "exit_ip": "89.39.107.208" + "name": "NL#85", + "hostname": "node-nl-47.protonvpn.net", + "entry_ip": "138.199.7.129", + "exit_ip": [ + "138.199.7.130", + "138.199.7.131", + "138.199.7.132", + "138.199.7.133", + "138.199.7.134", + "138.199.7.135", + "138.199.7.136", + "138.199.7.137", + "138.199.7.138", + "138.199.7.139", + "138.199.7.140", + "138.199.7.141", + "138.199.7.142", + "138.199.7.143", + "138.199.7.144", + "138.199.7.145", + "138.199.7.146", + "138.199.7.147", + "138.199.7.148", + "138.199.7.149", + "138.199.7.150", + "138.199.7.151", + "138.199.7.152", + "138.199.7.153", + "138.199.7.154", + "138.199.7.155", + "138.199.7.156", + "138.199.7.157", + "138.199.7.158" + ] }, { "country": "Netherlands", @@ -95368,7 +92827,9 @@ "name": "NL#73", "hostname": "nl-73.protonvpn.com", "entry_ip": "46.166.187.56", - "exit_ip": "46.166.187.56" + "exit_ip": [ + "46.166.187.56" + ] }, { "country": "Netherlands", @@ -95377,25 +92838,11 @@ "name": "NL#74", "hostname": "lxc-nl-44.protonvpn.com", "entry_ip": "46.166.187.55", - "exit_ip": "46.166.187.72" - }, - { - "country": "Netherlands", - "region": "", - "city": "Rotterdam", - "name": "NL#75", - "hostname": "lxc-nl-44.protonvpn.com", - "entry_ip": "46.166.187.55", - "exit_ip": "46.166.187.81" - }, - { - "country": "Netherlands", - "region": "", - "city": "Rotterdam", - "name": "NL#76", - "hostname": "lxc-nl-44.protonvpn.com", - "entry_ip": "46.166.187.55", - "exit_ip": "46.166.187.97" + "exit_ip": [ + "46.166.187.72", + "46.166.187.81", + "46.166.187.97" + ] }, { "country": "Netherlands", @@ -95404,7 +92851,9 @@ "name": "NL#77", "hostname": "nl-77.protonvpn.net", "entry_ip": "46.166.187.117", - "exit_ip": "46.166.187.117" + "exit_ip": [ + "46.166.187.117" + ] }, { "country": "Netherlands", @@ -95413,25 +92862,11 @@ "name": "NL#78", "hostname": "node-nl-45.protonvpn.net", "entry_ip": "46.166.187.48", - "exit_ip": "46.166.187.145" - }, - { - "country": "Netherlands", - "region": "", - "city": "Rotterdam", - "name": "NL#79", - "hostname": "node-nl-45.protonvpn.net", - "entry_ip": "46.166.187.48", - "exit_ip": "46.166.187.167" - }, - { - "country": "Netherlands", - "region": "", - "city": "Rotterdam", - "name": "NL#80", - "hostname": "node-nl-45.protonvpn.net", - "entry_ip": "46.166.187.48", - "exit_ip": "46.166.187.171" + "exit_ip": [ + "46.166.187.145", + "46.166.187.167", + "46.166.187.171" + ] }, { "country": "Netherlands", @@ -95440,25 +92875,11 @@ "name": "NL#29", "hostname": "nl-29.protonvpn.net", "entry_ip": "185.107.95.210", - "exit_ip": "185.107.95.210" - }, - { - "country": "Netherlands", - "region": "", - "city": "Steenbergen", - "name": "NL#30", - "hostname": "nl-29.protonvpn.net", - "entry_ip": "185.107.95.210", - "exit_ip": "185.107.95.211" - }, - { - "country": "Netherlands", - "region": "", - "city": "Steenbergen", - "name": "NL#31", - "hostname": "nl-29.protonvpn.net", - "entry_ip": "185.107.95.210", - "exit_ip": "185.107.95.212" + "exit_ip": [ + "185.107.95.210", + "185.107.95.211", + "185.107.95.212" + ] }, { "country": "Netherlands", @@ -95467,43 +92888,13 @@ "name": "NL#32", "hostname": "node-nl-20.protonvpn.net", "entry_ip": "185.107.95.209", - "exit_ip": "185.107.95.213" - }, - { - "country": "Netherlands", - "region": "", - "city": "Steenbergen", - "name": "NL#33", - "hostname": "node-nl-20.protonvpn.net", - "entry_ip": "185.107.95.209", - "exit_ip": "185.107.95.214" - }, - { - "country": "Netherlands", - "region": "", - "city": "Steenbergen", - "name": "NL#34", - "hostname": "node-nl-20.protonvpn.net", - "entry_ip": "185.107.95.209", - "exit_ip": "185.107.95.215" - }, - { - "country": "Netherlands", - "region": "", - "city": "Steenbergen", - "name": "NL#35", - "hostname": "node-nl-20.protonvpn.net", - "entry_ip": "185.107.95.209", - "exit_ip": "185.107.95.216" - }, - { - "country": "Netherlands", - "region": "", - "city": "Steenbergen", - "name": "NL#36", - "hostname": "node-nl-20.protonvpn.net", - "entry_ip": "185.107.95.209", - "exit_ip": "185.107.95.217" + "exit_ip": [ + "185.107.95.213", + "185.107.95.214", + "185.107.95.215", + "185.107.95.216", + "185.107.95.217" + ] }, { "country": "Netherlands", @@ -95512,7 +92903,9 @@ "name": "NL#53", "hostname": "nl-53.protonvpn.com", "entry_ip": "185.107.80.191", - "exit_ip": "185.107.80.191" + "exit_ip": [ + "185.107.80.191" + ] }, { "country": "Netherlands", @@ -95521,25 +92914,11 @@ "name": "NL#54", "hostname": "lxc-nl-32.protonvpn.com", "entry_ip": "185.107.80.190", - "exit_ip": "185.107.80.192" - }, - { - "country": "Netherlands", - "region": "", - "city": "Steenbergen", - "name": "NL#55", - "hostname": "lxc-nl-32.protonvpn.com", - "entry_ip": "185.107.80.190", - "exit_ip": "185.107.80.193" - }, - { - "country": "Netherlands", - "region": "", - "city": "Steenbergen", - "name": "NL#56", - "hostname": "lxc-nl-32.protonvpn.com", - "entry_ip": "185.107.80.190", - "exit_ip": "185.107.80.195" + "exit_ip": [ + "185.107.80.192", + "185.107.80.193", + "185.107.80.195" + ] }, { "country": "Netherlands", @@ -95548,7 +92927,9 @@ "name": "NL#81", "hostname": "nl-81.protonvpn.net", "entry_ip": "185.107.57.2", - "exit_ip": "185.107.57.2" + "exit_ip": [ + "185.107.57.2" + ] }, { "country": "Netherlands", @@ -95557,25 +92938,11 @@ "name": "NL#82", "hostname": "node-nl-46.protonvpn.net", "entry_ip": "185.107.57.1", - "exit_ip": "185.107.57.3" - }, - { - "country": "Netherlands", - "region": "", - "city": "Steenbergen", - "name": "NL#83", - "hostname": "node-nl-46.protonvpn.net", - "entry_ip": "185.107.57.1", - "exit_ip": "185.107.57.4" - }, - { - "country": "Netherlands", - "region": "", - "city": "Steenbergen", - "name": "NL#84", - "hostname": "node-nl-46.protonvpn.net", - "entry_ip": "185.107.57.1", - "exit_ip": "185.107.57.5" + "exit_ip": [ + "185.107.57.3", + "185.107.57.4", + "185.107.57.5" + ] }, { "country": "New Zealand", @@ -95584,7 +92951,9 @@ "name": "CH-NZ#1", "hostname": "ch-nz-01a.protonvpn.com", "entry_ip": "185.159.157.97", - "exit_ip": "116.90.74.182" + "exit_ip": [ + "116.90.74.182" + ] }, { "country": "New Zealand", @@ -95593,34 +92962,9 @@ "name": "SE-NZ#1", "hostname": "se-nz-01b.protonvpn.com", "entry_ip": "185.159.156.41", - "exit_ip": "116.90.74.243" - }, - { - "country": "New Zealand", - "region": "", - "city": "Auckland", - "name": "NZ#10", - "hostname": "node-nz-02.protonvpn.net", - "entry_ip": "116.90.74.242", - "exit_ip": "116.90.74.248" - }, - { - "country": "New Zealand", - "region": "", - "city": "Auckland", - "name": "NZ#11", - "hostname": "node-nz-02.protonvpn.net", - "entry_ip": "116.90.74.242", - "exit_ip": "116.90.74.249" - }, - { - "country": "New Zealand", - "region": "", - "city": "Auckland", - "name": "NZ#12", - "hostname": "node-nz-02.protonvpn.net", - "entry_ip": "116.90.74.242", - "exit_ip": "116.90.74.250" + "exit_ip": [ + "116.90.74.243" + ] }, { "country": "New Zealand", @@ -95629,25 +92973,11 @@ "name": "NZ#13", "hostname": "nz-13.protonvpn.net", "entry_ip": "116.90.74.179", - "exit_ip": "116.90.74.179" - }, - { - "country": "New Zealand", - "region": "", - "city": "Auckland", - "name": "NZ#14", - "hostname": "nz-13.protonvpn.net", - "entry_ip": "116.90.74.179", - "exit_ip": "116.90.74.180" - }, - { - "country": "New Zealand", - "region": "", - "city": "Auckland", - "name": "NZ#15", - "hostname": "nz-13.protonvpn.net", - "entry_ip": "116.90.74.179", - "exit_ip": "116.90.74.181" + "exit_ip": [ + "116.90.74.179", + "116.90.74.180", + "116.90.74.181" + ] }, { "country": "New Zealand", @@ -95656,43 +92986,13 @@ "name": "NZ#16", "hostname": "node-nz-03.protonvpn.net", "entry_ip": "116.90.74.178", - "exit_ip": "116.90.74.182" - }, - { - "country": "New Zealand", - "region": "", - "city": "Auckland", - "name": "NZ#17", - "hostname": "node-nz-03.protonvpn.net", - "entry_ip": "116.90.74.178", - "exit_ip": "116.90.74.183" - }, - { - "country": "New Zealand", - "region": "", - "city": "Auckland", - "name": "NZ#18", - "hostname": "node-nz-03.protonvpn.net", - "entry_ip": "116.90.74.178", - "exit_ip": "116.90.74.184" - }, - { - "country": "New Zealand", - "region": "", - "city": "Auckland", - "name": "NZ#19", - "hostname": "node-nz-03.protonvpn.net", - "entry_ip": "116.90.74.178", - "exit_ip": "116.90.74.185" - }, - { - "country": "New Zealand", - "region": "", - "city": "Auckland", - "name": "NZ#20", - "hostname": "node-nz-03.protonvpn.net", - "entry_ip": "116.90.74.178", - "exit_ip": "116.90.74.186" + "exit_ip": [ + "116.90.74.182", + "116.90.74.183", + "116.90.74.184", + "116.90.74.185", + "116.90.74.186" + ] }, { "country": "New Zealand", @@ -95701,25 +93001,11 @@ "name": "NZ#5", "hostname": "nz-05.protonvpn.net", "entry_ip": "116.90.74.243", - "exit_ip": "116.90.74.243" - }, - { - "country": "New Zealand", - "region": "", - "city": "Auckland", - "name": "NZ#6", - "hostname": "nz-05.protonvpn.net", - "entry_ip": "116.90.74.243", - "exit_ip": "116.90.74.244" - }, - { - "country": "New Zealand", - "region": "", - "city": "Auckland", - "name": "NZ#7", - "hostname": "nz-05.protonvpn.net", - "entry_ip": "116.90.74.243", - "exit_ip": "116.90.74.245" + "exit_ip": [ + "116.90.74.243", + "116.90.74.244", + "116.90.74.245" + ] }, { "country": "New Zealand", @@ -95728,16 +93014,13 @@ "name": "NZ#8", "hostname": "node-nz-02.protonvpn.net", "entry_ip": "116.90.74.242", - "exit_ip": "116.90.74.246" - }, - { - "country": "New Zealand", - "region": "", - "city": "Auckland", - "name": "NZ#9", - "hostname": "node-nz-02.protonvpn.net", - "entry_ip": "116.90.74.242", - "exit_ip": "116.90.74.247" + "exit_ip": [ + "116.90.74.246", + "116.90.74.247", + "116.90.74.248", + "116.90.74.249", + "116.90.74.250" + ] }, { "country": "Norway", @@ -95746,7 +93029,9 @@ "name": "CH-NO#1", "hostname": "ch-no-01a.protonvpn.com", "entry_ip": "185.159.157.156", - "exit_ip": "91.219.215.156" + "exit_ip": [ + "91.219.215.156" + ] }, { "country": "Norway", @@ -95755,7 +93040,9 @@ "name": "IS-NO#1", "hostname": "is-no-01b.protonvpn.com", "entry_ip": "185.159.158.122", - "exit_ip": "95.174.66.61" + "exit_ip": [ + "95.174.66.61" + ] }, { "country": "Norway", @@ -95764,7 +93051,9 @@ "name": "IS-NO#1", "hostname": "is-no-01d.protonvpn.com", "entry_ip": "185.159.158.145", - "exit_ip": "84.247.50.180" + "exit_ip": [ + "84.247.50.180" + ] }, { "country": "Norway", @@ -95773,7 +93062,9 @@ "name": "SE-NO#1", "hostname": "se-no-01a.protonvpn.com", "entry_ip": "185.159.156.48", - "exit_ip": "37.120.203.86" + "exit_ip": [ + "37.120.203.86" + ] }, { "country": "Norway", @@ -95782,34 +93073,9 @@ "name": "NO#1", "hostname": "no-01.protonvpn.com", "entry_ip": "95.174.66.59", - "exit_ip": "95.174.66.59" - }, - { - "country": "Norway", - "region": "", - "city": "Oslo", - "name": "NO#10", - "hostname": "node-no-02.protonvpn.net", - "entry_ip": "37.120.203.82", - "exit_ip": "37.120.203.88" - }, - { - "country": "Norway", - "region": "", - "city": "Oslo", - "name": "NO#11", - "hostname": "node-no-02.protonvpn.net", - "entry_ip": "37.120.203.82", - "exit_ip": "37.120.203.89" - }, - { - "country": "Norway", - "region": "", - "city": "Oslo", - "name": "NO#12", - "hostname": "node-no-02.protonvpn.net", - "entry_ip": "37.120.203.82", - "exit_ip": "37.120.203.90" + "exit_ip": [ + "95.174.66.59" + ] }, { "country": "Norway", @@ -95818,7 +93084,9 @@ "name": "NO#13", "hostname": "no-13.protonvpn.net", "entry_ip": "84.247.50.179", - "exit_ip": "84.247.50.179" + "exit_ip": [ + "84.247.50.179" + ] }, { "country": "Norway", @@ -95827,25 +93095,11 @@ "name": "NO#14", "hostname": "node-no-03.protonvpn.net", "entry_ip": "84.247.50.178", - "exit_ip": "84.247.50.180" - }, - { - "country": "Norway", - "region": "", - "city": "Oslo", - "name": "NO#15", - "hostname": "node-no-03.protonvpn.net", - "entry_ip": "84.247.50.178", - "exit_ip": "84.247.50.181" - }, - { - "country": "Norway", - "region": "", - "city": "Oslo", - "name": "NO#16", - "hostname": "node-no-03.protonvpn.net", - "entry_ip": "84.247.50.178", - "exit_ip": "84.247.50.182" + "exit_ip": [ + "84.247.50.180", + "84.247.50.181", + "84.247.50.182" + ] }, { "country": "Norway", @@ -95854,7 +93108,9 @@ "name": "NO#17", "hostname": "no-17.protonvpn.net", "entry_ip": "91.219.215.155", - "exit_ip": "91.219.215.155" + "exit_ip": [ + "91.219.215.155" + ] }, { "country": "Norway", @@ -95863,16 +93119,11 @@ "name": "NO#18", "hostname": "node-no-04.protonvpn.net", "entry_ip": "91.219.215.154", - "exit_ip": "91.219.215.156" - }, - { - "country": "Norway", - "region": "", - "city": "Oslo", - "name": "NO#19", - "hostname": "node-no-04.protonvpn.net", - "entry_ip": "91.219.215.154", - "exit_ip": "91.219.215.157" + "exit_ip": [ + "91.219.215.156", + "91.219.215.157", + "91.219.215.158" + ] }, { "country": "Norway", @@ -95881,34 +93132,11 @@ "name": "NO#2", "hostname": "lxc-no-01.protonvpn.com", "entry_ip": "95.174.66.58", - "exit_ip": "95.174.66.60" - }, - { - "country": "Norway", - "region": "", - "city": "Oslo", - "name": "NO#20", - "hostname": "node-no-04.protonvpn.net", - "entry_ip": "91.219.215.154", - "exit_ip": "91.219.215.158" - }, - { - "country": "Norway", - "region": "", - "city": "Oslo", - "name": "NO#3", - "hostname": "lxc-no-01.protonvpn.com", - "entry_ip": "95.174.66.58", - "exit_ip": "95.174.66.61" - }, - { - "country": "Norway", - "region": "", - "city": "Oslo", - "name": "NO#4", - "hostname": "lxc-no-01.protonvpn.com", - "entry_ip": "95.174.66.58", - "exit_ip": "95.174.66.62" + "exit_ip": [ + "95.174.66.60", + "95.174.66.61", + "95.174.66.62" + ] }, { "country": "Norway", @@ -95917,25 +93145,11 @@ "name": "NO#5", "hostname": "no-05.protonvpn.net", "entry_ip": "37.120.203.83", - "exit_ip": "37.120.203.83" - }, - { - "country": "Norway", - "region": "", - "city": "Oslo", - "name": "NO#6", - "hostname": "no-05.protonvpn.net", - "entry_ip": "37.120.203.83", - "exit_ip": "37.120.203.84" - }, - { - "country": "Norway", - "region": "", - "city": "Oslo", - "name": "NO#7", - "hostname": "no-05.protonvpn.net", - "entry_ip": "37.120.203.83", - "exit_ip": "37.120.203.85" + "exit_ip": [ + "37.120.203.83", + "37.120.203.84", + "37.120.203.85" + ] }, { "country": "Norway", @@ -95944,16 +93158,13 @@ "name": "NO#8", "hostname": "node-no-02.protonvpn.net", "entry_ip": "37.120.203.82", - "exit_ip": "37.120.203.86" - }, - { - "country": "Norway", - "region": "", - "city": "Oslo", - "name": "NO#9", - "hostname": "node-no-02.protonvpn.net", - "entry_ip": "37.120.203.82", - "exit_ip": "37.120.203.87" + "exit_ip": [ + "37.120.203.86", + "37.120.203.87", + "37.120.203.88", + "37.120.203.89", + "37.120.203.90" + ] }, { "country": "Peru", @@ -95962,7 +93173,9 @@ "name": "CH-PE#1", "hostname": "ch-pe-01a.protonvpn.com", "entry_ip": "185.159.157.135", - "exit_ip": "194.99.44.8" + "exit_ip": [ + "194.99.44.8" + ] }, { "country": "Peru", @@ -95971,25 +93184,11 @@ "name": "PE#1", "hostname": "pe-01.protonvpn.net", "entry_ip": "194.99.44.5", - "exit_ip": "194.99.44.5" - }, - { - "country": "Peru", - "region": "", - "city": "Lima", - "name": "PE#2", - "hostname": "pe-01.protonvpn.net", - "entry_ip": "194.99.44.5", - "exit_ip": "194.99.44.6" - }, - { - "country": "Peru", - "region": "", - "city": "Lima", - "name": "PE#3", - "hostname": "pe-01.protonvpn.net", - "entry_ip": "194.99.44.5", - "exit_ip": "194.99.44.7" + "exit_ip": [ + "194.99.44.5", + "194.99.44.6", + "194.99.44.7" + ] }, { "country": "Peru", @@ -95998,43 +93197,13 @@ "name": "PE#4", "hostname": "node-pe-01.protonvpn.net", "entry_ip": "194.99.44.4", - "exit_ip": "194.99.44.8" - }, - { - "country": "Peru", - "region": "", - "city": "Lima", - "name": "PE#5", - "hostname": "node-pe-01.protonvpn.net", - "entry_ip": "194.99.44.4", - "exit_ip": "194.99.44.9" - }, - { - "country": "Peru", - "region": "", - "city": "Lima", - "name": "PE#6", - "hostname": "node-pe-01.protonvpn.net", - "entry_ip": "194.99.44.4", - "exit_ip": "194.99.44.10" - }, - { - "country": "Peru", - "region": "", - "city": "Lima", - "name": "PE#7", - "hostname": "node-pe-01.protonvpn.net", - "entry_ip": "194.99.44.4", - "exit_ip": "194.99.44.11" - }, - { - "country": "Peru", - "region": "", - "city": "Lima", - "name": "PE#8", - "hostname": "node-pe-01.protonvpn.net", - "entry_ip": "194.99.44.4", - "exit_ip": "194.99.44.12" + "exit_ip": [ + "194.99.44.8", + "194.99.44.9", + "194.99.44.10", + "194.99.44.11", + "194.99.44.12" + ] }, { "country": "Poland", @@ -96043,7 +93212,9 @@ "name": "CH-PL#1", "hostname": "ch-pl-01a.protonvpn.com", "entry_ip": "185.159.157.32", - "exit_ip": "194.99.105.77" + "exit_ip": [ + "194.99.105.77" + ] }, { "country": "Poland", @@ -96052,7 +93223,9 @@ "name": "CH-PL#1", "hostname": "ch-pl-01b.protonvpn.com", "entry_ip": "185.159.157.33", - "exit_ip": "194.99.105.78" + "exit_ip": [ + "194.99.105.78" + ] }, { "country": "Poland", @@ -96061,7 +93234,9 @@ "name": "CH-PL#1", "hostname": "ch-pl-01c.protonvpn.com", "entry_ip": "185.159.157.96", - "exit_ip": "217.138.209.150" + "exit_ip": [ + "217.138.209.150" + ] }, { "country": "Poland", @@ -96070,7 +93245,9 @@ "name": "CH-PL#1", "hostname": "ch-pl-01d.protonvpn.com", "entry_ip": "185.159.157.151", - "exit_ip": "193.56.254.36" + "exit_ip": [ + "193.56.254.36" + ] }, { "country": "Poland", @@ -96079,7 +93256,10 @@ "name": "PL#1", "hostname": "pl-01.protonvpn.net", "entry_ip": "194.99.105.75", - "exit_ip": "194.99.105.75" + "exit_ip": [ + "194.99.105.75", + "194.99.105.76" + ] }, { "country": "Poland", @@ -96088,25 +93268,11 @@ "name": "PL#13", "hostname": "pl-13.protonvpn.net", "entry_ip": "217.138.209.147", - "exit_ip": "217.138.209.147" - }, - { - "country": "Poland", - "region": "", - "city": "Warsaw", - "name": "PL#14", - "hostname": "pl-13.protonvpn.net", - "entry_ip": "217.138.209.147", - "exit_ip": "217.138.209.148" - }, - { - "country": "Poland", - "region": "", - "city": "Warsaw", - "name": "PL#15", - "hostname": "pl-13.protonvpn.net", - "entry_ip": "217.138.209.147", - "exit_ip": "217.138.209.149" + "exit_ip": [ + "217.138.209.147", + "217.138.209.148", + "217.138.209.149" + ] }, { "country": "Poland", @@ -96115,52 +93281,13 @@ "name": "PL#16", "hostname": "node-pl-03.protonvpn.net", "entry_ip": "217.138.209.146", - "exit_ip": "217.138.209.150" - }, - { - "country": "Poland", - "region": "", - "city": "Warsaw", - "name": "PL#17", - "hostname": "node-pl-03.protonvpn.net", - "entry_ip": "217.138.209.146", - "exit_ip": "217.138.209.151" - }, - { - "country": "Poland", - "region": "", - "city": "Warsaw", - "name": "PL#18", - "hostname": "node-pl-03.protonvpn.net", - "entry_ip": "217.138.209.146", - "exit_ip": "217.138.209.152" - }, - { - "country": "Poland", - "region": "", - "city": "Warsaw", - "name": "PL#19", - "hostname": "node-pl-03.protonvpn.net", - "entry_ip": "217.138.209.146", - "exit_ip": "217.138.209.153" - }, - { - "country": "Poland", - "region": "", - "city": "Warsaw", - "name": "PL#2", - "hostname": "pl-01.protonvpn.net", - "entry_ip": "194.99.105.75", - "exit_ip": "194.99.105.76" - }, - { - "country": "Poland", - "region": "", - "city": "Warsaw", - "name": "PL#20", - "hostname": "node-pl-03.protonvpn.net", - "entry_ip": "217.138.209.146", - "exit_ip": "217.138.209.154" + "exit_ip": [ + "217.138.209.150", + "217.138.209.151", + "217.138.209.152", + "217.138.209.153", + "217.138.209.154" + ] }, { "country": "Poland", @@ -96169,7 +93296,9 @@ "name": "PL#21", "hostname": "pl-21.protonvpn.com", "entry_ip": "193.56.254.35", - "exit_ip": "193.56.254.35" + "exit_ip": [ + "193.56.254.35" + ] }, { "country": "Poland", @@ -96178,25 +93307,11 @@ "name": "PL#22", "hostname": "lxc-pl-04.protonvpn.com", "entry_ip": "193.56.254.34", - "exit_ip": "193.56.254.36" - }, - { - "country": "Poland", - "region": "", - "city": "Warsaw", - "name": "PL#23", - "hostname": "lxc-pl-04.protonvpn.com", - "entry_ip": "193.56.254.34", - "exit_ip": "193.56.254.37" - }, - { - "country": "Poland", - "region": "", - "city": "Warsaw", - "name": "PL#24", - "hostname": "lxc-pl-04.protonvpn.com", - "entry_ip": "193.56.254.34", - "exit_ip": "193.56.254.38" + "exit_ip": [ + "193.56.254.36", + "193.56.254.37", + "193.56.254.38" + ] }, { "country": "Poland", @@ -96205,16 +93320,10 @@ "name": "PL#3", "hostname": "node-pl-01.protonvpn.net", "entry_ip": "194.99.105.74", - "exit_ip": "194.99.105.77" - }, - { - "country": "Poland", - "region": "", - "city": "Warsaw", - "name": "PL#4", - "hostname": "node-pl-01.protonvpn.net", - "entry_ip": "194.99.105.74", - "exit_ip": "194.99.105.78" + "exit_ip": [ + "194.99.105.77", + "194.99.105.78" + ] }, { "country": "Portugal", @@ -96223,7 +93332,9 @@ "name": "CH-PT#1", "hostname": "ch-pt-01d.protonvpn.com", "entry_ip": "185.159.157.113", - "exit_ip": "195.158.248.231" + "exit_ip": [ + "195.158.248.231" + ] }, { "country": "Portugal", @@ -96232,34 +93343,9 @@ "name": "SE-PT#1", "hostname": "se-pt-01d.protonvpn.com", "entry_ip": "185.159.156.58", - "exit_ip": "195.158.248.230" - }, - { - "country": "Portugal", - "region": "", - "city": "Lisbon", - "name": "PT#10", - "hostname": "node-pt-02b.protonvpn.net", - "entry_ip": "195.158.248.226", - "exit_ip": "195.158.248.232" - }, - { - "country": "Portugal", - "region": "", - "city": "Lisbon", - "name": "PT#11", - "hostname": "node-pt-02b.protonvpn.net", - "entry_ip": "195.158.248.226", - "exit_ip": "195.158.248.233" - }, - { - "country": "Portugal", - "region": "", - "city": "Lisbon", - "name": "PT#12", - "hostname": "node-pt-02b.protonvpn.net", - "entry_ip": "195.158.248.226", - "exit_ip": "195.158.248.234" + "exit_ip": [ + "195.158.248.230" + ] }, { "country": "Portugal", @@ -96268,25 +93354,11 @@ "name": "PT#5", "hostname": "pt-05b.protonvpn.net", "entry_ip": "195.158.248.227", - "exit_ip": "195.158.248.227" - }, - { - "country": "Portugal", - "region": "", - "city": "Lisbon", - "name": "PT#6", - "hostname": "pt-05b.protonvpn.net", - "entry_ip": "195.158.248.227", - "exit_ip": "195.158.248.228" - }, - { - "country": "Portugal", - "region": "", - "city": "Lisbon", - "name": "PT#7", - "hostname": "pt-05b.protonvpn.net", - "entry_ip": "195.158.248.227", - "exit_ip": "195.158.248.229" + "exit_ip": [ + "195.158.248.227", + "195.158.248.228", + "195.158.248.229" + ] }, { "country": "Portugal", @@ -96295,106 +93367,54 @@ "name": "PT#8", "hostname": "node-pt-02b.protonvpn.net", "entry_ip": "195.158.248.226", - "exit_ip": "195.158.248.230" - }, - { - "country": "Portugal", - "region": "", - "city": "Lisbon", - "name": "PT#9", - "hostname": "node-pt-02b.protonvpn.net", - "entry_ip": "195.158.248.226", - "exit_ip": "195.158.248.231" + "exit_ip": [ + "195.158.248.230", + "195.158.248.231", + "195.158.248.232", + "195.158.248.233", + "195.158.248.234" + ] }, { "country": "Romania", "region": "", "city": "", - "name": "CH-RO#1", - "hostname": "ch-ro-01a.protonvpn.com", - "entry_ip": "185.159.157.59", - "exit_ip": "109.163.233.87" - }, - { - "country": "Romania", - "region": "", - "city": "", - "name": "CH-RO#1", - "hostname": "ch-ro-01b.protonvpn.com", - "entry_ip": "185.159.157.84", - "exit_ip": "109.163.233.86" + "name": "SE-RO#1", + "hostname": "se-ro-01a.protonvpn.com", + "entry_ip": "185.159.156.81", + "exit_ip": [ + "138.199.53.226" + ] }, { "country": "Romania", "region": "", "city": "Bucharest", - "name": "RO#1", - "hostname": "ro-01.protonvpn.net", - "entry_ip": "109.163.233.83", - "exit_ip": "109.163.233.83" + "name": "RO#16", + "hostname": "ro-16.protonvpn.net", + "entry_ip": "138.199.53.233", + "exit_ip": [ + "138.199.53.233", + "138.199.53.234", + "138.199.53.235" + ] }, { "country": "Romania", "region": "", "city": "Bucharest", - "name": "RO#2", - "hostname": "ro-01.protonvpn.net", - "entry_ip": "109.163.233.83", - "exit_ip": "109.163.233.84" - }, - { - "country": "Romania", - "region": "", - "city": "Bucharest", - "name": "RO#3", - "hostname": "ro-01.protonvpn.net", - "entry_ip": "109.163.233.83", - "exit_ip": "109.163.233.85" - }, - { - "country": "Romania", - "region": "", - "city": "Bucharest", - "name": "RO#4", - "hostname": "node-ro-01.protonvpn.net", - "entry_ip": "109.163.233.82", - "exit_ip": "109.163.233.86" - }, - { - "country": "Romania", - "region": "", - "city": "Bucharest", - "name": "RO#5", - "hostname": "node-ro-01.protonvpn.net", - "entry_ip": "109.163.233.82", - "exit_ip": "109.163.233.87" - }, - { - "country": "Romania", - "region": "", - "city": "Bucharest", - "name": "RO#6", - "hostname": "node-ro-01.protonvpn.net", - "entry_ip": "109.163.233.82", - "exit_ip": "109.163.233.88" - }, - { - "country": "Romania", - "region": "", - "city": "Bucharest", - "name": "RO#7", - "hostname": "node-ro-01.protonvpn.net", - "entry_ip": "109.163.233.82", - "exit_ip": "109.163.233.89" - }, - { - "country": "Romania", - "region": "", - "city": "Bucharest", - "name": "RO#8", - "hostname": "node-ro-01.protonvpn.net", - "entry_ip": "109.163.233.82", - "exit_ip": "109.163.233.90" + "name": "RO#9", + "hostname": "node-ro-02.protonvpn.net", + "entry_ip": "138.199.53.225", + "exit_ip": [ + "138.199.53.226", + "138.199.53.227", + "138.199.53.228", + "138.199.53.229", + "138.199.53.230", + "138.199.53.231", + "138.199.53.232" + ] }, { "country": "Russian Federation", @@ -96403,7 +93423,9 @@ "name": "IS-RU#1", "hostname": "is-ru-01a.protonvpn.com", "entry_ip": "185.159.158.132", - "exit_ip": "5.8.16.238" + "exit_ip": [ + "5.8.16.238" + ] }, { "country": "Russian Federation", @@ -96412,7 +93434,9 @@ "name": "IS-RU#1", "hostname": "is-ru-01b.protonvpn.com", "entry_ip": "185.159.158.140", - "exit_ip": "5.8.16.166" + "exit_ip": [ + "5.8.16.166" + ] }, { "country": "Russian Federation", @@ -96421,7 +93445,9 @@ "name": "IS-RU#1", "hostname": "is-ru-01c.protonvpn.com", "entry_ip": "185.159.158.59", - "exit_ip": "5.8.16.149" + "exit_ip": [ + "5.8.16.149" + ] }, { "country": "Russian Federation", @@ -96430,7 +93456,9 @@ "name": "SE-RU#1", "hostname": "se-ru-01a.protonvpn.com", "entry_ip": "185.159.156.35", - "exit_ip": "5.8.16.237" + "exit_ip": [ + "5.8.16.237" + ] }, { "country": "Russian Federation", @@ -96439,34 +93467,10 @@ "name": "RU#1", "hostname": "ru-01.protonvpn.com", "entry_ip": "5.8.16.235", - "exit_ip": "5.8.16.235" - }, - { - "country": "Russian Federation", - "region": "", - "city": "Saint Petersburg", - "name": "RU#10", - "hostname": "lxc-ru-02.protonvpn.com", - "entry_ip": "5.8.16.162", - "exit_ip": "5.8.16.168" - }, - { - "country": "Russian Federation", - "region": "", - "city": "Saint Petersburg", - "name": "RU#11", - "hostname": "lxc-ru-02.protonvpn.com", - "entry_ip": "5.8.16.162", - "exit_ip": "5.8.16.169" - }, - { - "country": "Russian Federation", - "region": "", - "city": "Saint Petersburg", - "name": "RU#12", - "hostname": "lxc-ru-02.protonvpn.com", - "entry_ip": "5.8.16.162", - "exit_ip": "5.8.16.170" + "exit_ip": [ + "5.8.16.235", + "5.8.16.236" + ] }, { "country": "Russian Federation", @@ -96475,16 +93479,10 @@ "name": "RU#13", "hostname": "ru-13.protonvpn.net", "entry_ip": "5.8.16.147", - "exit_ip": "5.8.16.147" - }, - { - "country": "Russian Federation", - "region": "", - "city": "Saint Petersburg", - "name": "RU#14", - "hostname": "ru-13.protonvpn.net", - "entry_ip": "5.8.16.147", - "exit_ip": "5.8.16.148" + "exit_ip": [ + "5.8.16.147", + "5.8.16.148" + ] }, { "country": "Russian Federation", @@ -96493,25 +93491,10 @@ "name": "RU#15", "hostname": "node-ru-03.protonvpn.net", "entry_ip": "5.8.16.146", - "exit_ip": "5.8.16.149" - }, - { - "country": "Russian Federation", - "region": "", - "city": "Saint Petersburg", - "name": "RU#16", - "hostname": "node-ru-03.protonvpn.net", - "entry_ip": "5.8.16.146", - "exit_ip": "5.8.16.150" - }, - { - "country": "Russian Federation", - "region": "", - "city": "Saint Petersburg", - "name": "RU#2", - "hostname": "ru-01.protonvpn.com", - "entry_ip": "5.8.16.235", - "exit_ip": "5.8.16.236" + "exit_ip": [ + "5.8.16.149", + "5.8.16.150" + ] }, { "country": "Russian Federation", @@ -96520,16 +93503,10 @@ "name": "RU#3", "hostname": "lxc-ru-01.protonvpn.com", "entry_ip": "5.8.16.234", - "exit_ip": "5.8.16.237" - }, - { - "country": "Russian Federation", - "region": "", - "city": "Saint Petersburg", - "name": "RU#4", - "hostname": "lxc-ru-01.protonvpn.com", - "entry_ip": "5.8.16.234", - "exit_ip": "5.8.16.238" + "exit_ip": [ + "5.8.16.237", + "5.8.16.238" + ] }, { "country": "Russian Federation", @@ -96538,25 +93515,11 @@ "name": "RU#5", "hostname": "ru-05.protonvpn.com", "entry_ip": "5.8.16.163", - "exit_ip": "5.8.16.163" - }, - { - "country": "Russian Federation", - "region": "", - "city": "Saint Petersburg", - "name": "RU#6", - "hostname": "ru-05.protonvpn.com", - "entry_ip": "5.8.16.163", - "exit_ip": "5.8.16.164" - }, - { - "country": "Russian Federation", - "region": "", - "city": "Saint Petersburg", - "name": "RU#7", - "hostname": "ru-05.protonvpn.com", - "entry_ip": "5.8.16.163", - "exit_ip": "5.8.16.165" + "exit_ip": [ + "5.8.16.163", + "5.8.16.164", + "5.8.16.165" + ] }, { "country": "Russian Federation", @@ -96565,16 +93528,13 @@ "name": "RU#8", "hostname": "lxc-ru-02.protonvpn.com", "entry_ip": "5.8.16.162", - "exit_ip": "5.8.16.166" - }, - { - "country": "Russian Federation", - "region": "", - "city": "Saint Petersburg", - "name": "RU#9", - "hostname": "lxc-ru-02.protonvpn.com", - "entry_ip": "5.8.16.162", - "exit_ip": "5.8.16.167" + "exit_ip": [ + "5.8.16.166", + "5.8.16.167", + "5.8.16.168", + "5.8.16.169", + "5.8.16.170" + ] }, { "country": "Serbia", @@ -96583,7 +93543,9 @@ "name": "CH-RS#1", "hostname": "ch-rs-01a.protonvpn.com", "entry_ip": "185.159.157.27", - "exit_ip": "37.46.115.9" + "exit_ip": [ + "37.46.115.9" + ] }, { "country": "Serbia", @@ -96592,25 +93554,11 @@ "name": "RS#1", "hostname": "rs-01.protonvpn.com", "entry_ip": "37.46.115.6", - "exit_ip": "37.46.115.6" - }, - { - "country": "Serbia", - "region": "", - "city": "Belgrade", - "name": "RS#2", - "hostname": "rs-01.protonvpn.com", - "entry_ip": "37.46.115.6", - "exit_ip": "37.46.115.7" - }, - { - "country": "Serbia", - "region": "", - "city": "Belgrade", - "name": "RS#3", - "hostname": "rs-01.protonvpn.com", - "entry_ip": "37.46.115.6", - "exit_ip": "37.46.115.8" + "exit_ip": [ + "37.46.115.6", + "37.46.115.7", + "37.46.115.8" + ] }, { "country": "Serbia", @@ -96619,43 +93567,13 @@ "name": "RS#4", "hostname": "lxc-rs-01.protonvpn.com", "entry_ip": "37.46.115.5", - "exit_ip": "37.46.115.9" - }, - { - "country": "Serbia", - "region": "", - "city": "Belgrade", - "name": "RS#5", - "hostname": "lxc-rs-01.protonvpn.com", - "entry_ip": "37.46.115.5", - "exit_ip": "37.46.115.10" - }, - { - "country": "Serbia", - "region": "", - "city": "Belgrade", - "name": "RS#6", - "hostname": "lxc-rs-01.protonvpn.com", - "entry_ip": "37.46.115.5", - "exit_ip": "37.46.115.11" - }, - { - "country": "Serbia", - "region": "", - "city": "Belgrade", - "name": "RS#7", - "hostname": "lxc-rs-01.protonvpn.com", - "entry_ip": "37.46.115.5", - "exit_ip": "37.46.115.12" - }, - { - "country": "Serbia", - "region": "", - "city": "Belgrade", - "name": "RS#8", - "hostname": "lxc-rs-01.protonvpn.com", - "entry_ip": "37.46.115.5", - "exit_ip": "37.46.115.13" + "exit_ip": [ + "37.46.115.9", + "37.46.115.10", + "37.46.115.11", + "37.46.115.12", + "37.46.115.13" + ] }, { "country": "Singapore", @@ -96664,7 +93582,9 @@ "name": "CH-SG#1", "hostname": "ch-sg-01b.protonvpn.com", "entry_ip": "185.159.157.138", - "exit_ip": "103.107.199.195" + "exit_ip": [ + "103.107.199.195" + ] }, { "country": "Singapore", @@ -96673,7 +93593,9 @@ "name": "CH-SG#1", "hostname": "ch-sg-01c.protonvpn.com", "entry_ip": "185.159.157.139", - "exit_ip": "103.107.199.213" + "exit_ip": [ + "103.107.199.213" + ] }, { "country": "Singapore", @@ -96682,7 +93604,9 @@ "name": "CH-SG#1", "hostname": "ch-sg-01d.protonvpn.com", "entry_ip": "185.159.157.56", - "exit_ip": "103.107.198.195" + "exit_ip": [ + "103.107.198.195" + ] }, { "country": "Singapore", @@ -96691,7 +93615,9 @@ "name": "CH-SG#1", "hostname": "ch-sg-01e.protonvpn.com", "entry_ip": "185.159.157.57", - "exit_ip": "103.107.198.196" + "exit_ip": [ + "103.107.198.196" + ] }, { "country": "Singapore", @@ -96700,7 +93626,9 @@ "name": "CH-SG#1", "hostname": "ch-sg-01f.protonvpn.com", "entry_ip": "185.159.157.58", - "exit_ip": "103.107.199.167" + "exit_ip": [ + "103.107.199.167" + ] }, { "country": "Singapore", @@ -96709,7 +93637,9 @@ "name": "CH-SG#1", "hostname": "ch-sg-01g.protonvpn.com", "entry_ip": "185.159.157.140", - "exit_ip": "103.107.198.244" + "exit_ip": [ + "103.107.198.244" + ] }, { "country": "Singapore", @@ -96718,7 +93648,9 @@ "name": "SE-SG#1", "hostname": "se-sg-01a.protonvpn.com", "entry_ip": "185.159.156.53", - "exit_ip": "103.107.198.214" + "exit_ip": [ + "103.107.198.214" + ] }, { "country": "Singapore", @@ -96727,16 +93659,10 @@ "name": "SG#21", "hostname": "sg-21.protonvpn.net", "entry_ip": "209.58.163.227", - "exit_ip": "209.58.163.227" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#22", - "hostname": "sg-21.protonvpn.net", - "entry_ip": "209.58.163.227", - "exit_ip": "209.58.163.228" + "exit_ip": [ + "209.58.163.227", + "209.58.163.228" + ] }, { "country": "Singapore", @@ -96745,52 +93671,14 @@ "name": "SG#23", "hostname": "node-sg-06.protonvpn.net", "entry_ip": "209.58.163.226", - "exit_ip": "209.58.163.229" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#24", - "hostname": "node-sg-06.protonvpn.net", - "entry_ip": "209.58.163.226", - "exit_ip": "209.58.163.230" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#25", - "hostname": "node-sg-06.protonvpn.net", - "entry_ip": "209.58.163.226", - "exit_ip": "209.58.163.231" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#26", - "hostname": "node-sg-06.protonvpn.net", - "entry_ip": "209.58.163.226", - "exit_ip": "209.58.163.232" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#27", - "hostname": "node-sg-06.protonvpn.net", - "entry_ip": "209.58.163.226", - "exit_ip": "209.58.163.233" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#28", - "hostname": "node-sg-06.protonvpn.net", - "entry_ip": "209.58.163.226", - "exit_ip": "209.58.163.234" + "exit_ip": [ + "209.58.163.229", + "209.58.163.230", + "209.58.163.231", + "209.58.163.232", + "209.58.163.233", + "209.58.163.234" + ] }, { "country": "Singapore", @@ -96799,70 +93687,16 @@ "name": "SG#29", "hostname": "lxc-sg-07.protonvpn.com", "entry_ip": "103.107.198.194", - "exit_ip": "103.107.198.195" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#30", - "hostname": "lxc-sg-07.protonvpn.com", - "entry_ip": "103.107.198.194", - "exit_ip": "103.107.198.196" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#31", - "hostname": "lxc-sg-07.protonvpn.com", - "entry_ip": "103.107.198.194", - "exit_ip": "103.107.198.197" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#32", - "hostname": "lxc-sg-07.protonvpn.com", - "entry_ip": "103.107.198.194", - "exit_ip": "103.107.198.198" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#33", - "hostname": "lxc-sg-07.protonvpn.com", - "entry_ip": "103.107.198.194", - "exit_ip": "103.107.198.199" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#34", - "hostname": "lxc-sg-07.protonvpn.com", - "entry_ip": "103.107.198.194", - "exit_ip": "103.107.198.200" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#35", - "hostname": "lxc-sg-07.protonvpn.com", - "entry_ip": "103.107.198.194", - "exit_ip": "103.107.198.201" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#36", - "hostname": "lxc-sg-07.protonvpn.com", - "entry_ip": "103.107.198.194", - "exit_ip": "103.107.198.202" + "exit_ip": [ + "103.107.198.195", + "103.107.198.196", + "103.107.198.197", + "103.107.198.198", + "103.107.198.199", + "103.107.198.200", + "103.107.198.201", + "103.107.198.202" + ] }, { "country": "Singapore", @@ -96871,34 +93705,12 @@ "name": "SG#37", "hostname": "sg-37.protonvpn.net", "entry_ip": "103.107.199.163", - "exit_ip": "103.107.199.163" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#38", - "hostname": "sg-37.protonvpn.net", - "entry_ip": "103.107.199.163", - "exit_ip": "103.107.199.164" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#39", - "hostname": "sg-37.protonvpn.net", - "entry_ip": "103.107.199.163", - "exit_ip": "103.107.199.165" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#40", - "hostname": "sg-37.protonvpn.net", - "entry_ip": "103.107.199.163", - "exit_ip": "103.107.199.166" + "exit_ip": [ + "103.107.199.163", + "103.107.199.164", + "103.107.199.165", + "103.107.199.166" + ] }, { "country": "Singapore", @@ -96907,34 +93719,12 @@ "name": "SG#41", "hostname": "node-sg-08.protonvpn.net", "entry_ip": "103.107.199.162", - "exit_ip": "103.107.199.167" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#42", - "hostname": "node-sg-08.protonvpn.net", - "entry_ip": "103.107.199.162", - "exit_ip": "103.107.199.168" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#43", - "hostname": "node-sg-08.protonvpn.net", - "entry_ip": "103.107.199.162", - "exit_ip": "103.107.199.169" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#44", - "hostname": "node-sg-08.protonvpn.net", - "entry_ip": "103.107.199.162", - "exit_ip": "103.107.199.170" + "exit_ip": [ + "103.107.199.167", + "103.107.199.168", + "103.107.199.169", + "103.107.199.170" + ] }, { "country": "Singapore", @@ -96943,25 +93733,11 @@ "name": "SG#45", "hostname": "sg-45.protonvpn.net", "entry_ip": "103.107.198.211", - "exit_ip": "103.107.198.211" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#46", - "hostname": "sg-45.protonvpn.net", - "entry_ip": "103.107.198.211", - "exit_ip": "103.107.198.212" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#47", - "hostname": "sg-45.protonvpn.net", - "entry_ip": "103.107.198.211", - "exit_ip": "103.107.198.213" + "exit_ip": [ + "103.107.198.211", + "103.107.198.212", + "103.107.198.213" + ] }, { "country": "Singapore", @@ -96970,43 +93746,13 @@ "name": "SG#48", "hostname": "node-sg-09.protonvpn.net", "entry_ip": "103.107.198.210", - "exit_ip": "103.107.198.214" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#49", - "hostname": "node-sg-09.protonvpn.net", - "entry_ip": "103.107.198.210", - "exit_ip": "103.107.198.215" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#50", - "hostname": "node-sg-09.protonvpn.net", - "entry_ip": "103.107.198.210", - "exit_ip": "103.107.198.216" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#51", - "hostname": "node-sg-09.protonvpn.net", - "entry_ip": "103.107.198.210", - "exit_ip": "103.107.198.217" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#52", - "hostname": "node-sg-09.protonvpn.net", - "entry_ip": "103.107.198.210", - "exit_ip": "103.107.198.218" + "exit_ip": [ + "103.107.198.214", + "103.107.198.215", + "103.107.198.216", + "103.107.198.217", + "103.107.198.218" + ] }, { "country": "Singapore", @@ -97015,34 +93761,12 @@ "name": "SG#57", "hostname": "lxc-sg-11.protonvpn.com", "entry_ip": "103.107.199.194", - "exit_ip": "103.107.199.195" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#58", - "hostname": "lxc-sg-11.protonvpn.com", - "entry_ip": "103.107.199.194", - "exit_ip": "103.107.199.196" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#59", - "hostname": "lxc-sg-11.protonvpn.com", - "entry_ip": "103.107.199.194", - "exit_ip": "103.107.199.197" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#60", - "hostname": "lxc-sg-11.protonvpn.com", - "entry_ip": "103.107.199.194", - "exit_ip": "103.107.199.198" + "exit_ip": [ + "103.107.199.195", + "103.107.199.196", + "103.107.199.197", + "103.107.199.198" + ] }, { "country": "Singapore", @@ -97051,16 +93775,10 @@ "name": "SG#61", "hostname": "sg-61.protonvpn.net", "entry_ip": "103.107.199.211", - "exit_ip": "103.107.199.211" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#62", - "hostname": "sg-61.protonvpn.net", - "entry_ip": "103.107.199.211", - "exit_ip": "103.107.199.212" + "exit_ip": [ + "103.107.199.211", + "103.107.199.212" + ] }, { "country": "Singapore", @@ -97069,16 +93787,10 @@ "name": "SG#63", "hostname": "node-sg-12.protonvpn.net", "entry_ip": "103.107.199.210", - "exit_ip": "103.107.199.213" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#64", - "hostname": "node-sg-12.protonvpn.net", - "entry_ip": "103.107.199.210", - "exit_ip": "103.107.199.214" + "exit_ip": [ + "103.107.199.213", + "103.107.199.214" + ] }, { "country": "Singapore", @@ -97087,7 +93799,9 @@ "name": "SG#65", "hostname": "sg-65.protonvpn.com", "entry_ip": "103.107.198.243", - "exit_ip": "103.107.198.243" + "exit_ip": [ + "103.107.198.243" + ] }, { "country": "Singapore", @@ -97096,25 +93810,11 @@ "name": "SG#66", "hostname": "lxc-sg-13.protonvpn.com", "entry_ip": "103.107.198.242", - "exit_ip": "103.107.198.244" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#67", - "hostname": "lxc-sg-13.protonvpn.com", - "entry_ip": "103.107.198.242", - "exit_ip": "103.107.198.245" - }, - { - "country": "Singapore", - "region": "", - "city": "Singapore", - "name": "SG#68", - "hostname": "lxc-sg-13.protonvpn.com", - "entry_ip": "103.107.198.242", - "exit_ip": "103.107.198.246" + "exit_ip": [ + "103.107.198.244", + "103.107.198.245", + "103.107.198.246" + ] }, { "country": "Slovakia", @@ -97123,7 +93823,9 @@ "name": "CH-SK#1", "hostname": "ch-sk-01a.protonvpn.com", "entry_ip": "185.159.157.62", - "exit_ip": "196.245.151.215" + "exit_ip": [ + "196.245.151.215" + ] }, { "country": "Slovakia", @@ -97132,7 +93834,9 @@ "name": "CH-SK#1", "hostname": "ch-sk-01b.protonvpn.com", "entry_ip": "185.159.157.85", - "exit_ip": "196.245.151.214" + "exit_ip": [ + "196.245.151.214" + ] }, { "country": "Slovakia", @@ -97141,25 +93845,11 @@ "name": "SK#1", "hostname": "sk-01.protonvpn.com", "entry_ip": "196.245.151.211", - "exit_ip": "196.245.151.211" - }, - { - "country": "Slovakia", - "region": "", - "city": "Bratislava", - "name": "SK#2", - "hostname": "sk-01.protonvpn.com", - "entry_ip": "196.245.151.211", - "exit_ip": "196.245.151.212" - }, - { - "country": "Slovakia", - "region": "", - "city": "Bratislava", - "name": "SK#3", - "hostname": "sk-01.protonvpn.com", - "entry_ip": "196.245.151.211", - "exit_ip": "196.245.151.213" + "exit_ip": [ + "196.245.151.211", + "196.245.151.212", + "196.245.151.213" + ] }, { "country": "Slovakia", @@ -97168,43 +93858,13 @@ "name": "SK#4", "hostname": "lxc-sk-01.protonvpn.com", "entry_ip": "196.245.151.210", - "exit_ip": "196.245.151.214" - }, - { - "country": "Slovakia", - "region": "", - "city": "Bratislava", - "name": "SK#5", - "hostname": "lxc-sk-01.protonvpn.com", - "entry_ip": "196.245.151.210", - "exit_ip": "196.245.151.215" - }, - { - "country": "Slovakia", - "region": "", - "city": "Bratislava", - "name": "SK#6", - "hostname": "lxc-sk-01.protonvpn.com", - "entry_ip": "196.245.151.210", - "exit_ip": "196.245.151.216" - }, - { - "country": "Slovakia", - "region": "", - "city": "Bratislava", - "name": "SK#7", - "hostname": "lxc-sk-01.protonvpn.com", - "entry_ip": "196.245.151.210", - "exit_ip": "196.245.151.217" - }, - { - "country": "Slovakia", - "region": "", - "city": "Bratislava", - "name": "SK#8", - "hostname": "lxc-sk-01.protonvpn.com", - "entry_ip": "196.245.151.210", - "exit_ip": "196.245.151.218" + "exit_ip": [ + "196.245.151.214", + "196.245.151.215", + "196.245.151.216", + "196.245.151.217", + "196.245.151.218" + ] }, { "country": "Slovenia", @@ -97213,7 +93873,9 @@ "name": "CH-SI#1", "hostname": "ch-si-01a.protonvpn.com", "entry_ip": "185.159.157.93", - "exit_ip": "195.80.150.230" + "exit_ip": [ + "195.80.150.230" + ] }, { "country": "Slovenia", @@ -97222,25 +93884,11 @@ "name": "SI#1", "hostname": "si-01.protonvpn.net", "entry_ip": "195.80.150.227", - "exit_ip": "195.80.150.227" - }, - { - "country": "Slovenia", - "region": "", - "city": "Ljubljana", - "name": "SI#2", - "hostname": "si-01.protonvpn.net", - "entry_ip": "195.80.150.227", - "exit_ip": "195.80.150.228" - }, - { - "country": "Slovenia", - "region": "", - "city": "Ljubljana", - "name": "SI#3", - "hostname": "si-01.protonvpn.net", - "entry_ip": "195.80.150.227", - "exit_ip": "195.80.150.229" + "exit_ip": [ + "195.80.150.227", + "195.80.150.228", + "195.80.150.229" + ] }, { "country": "Slovenia", @@ -97249,43 +93897,13 @@ "name": "SI#4", "hostname": "node-si-01.protonvpn.net", "entry_ip": "195.80.150.226", - "exit_ip": "195.80.150.230" - }, - { - "country": "Slovenia", - "region": "", - "city": "Ljubljana", - "name": "SI#5", - "hostname": "node-si-01.protonvpn.net", - "entry_ip": "195.80.150.226", - "exit_ip": "195.80.150.231" - }, - { - "country": "Slovenia", - "region": "", - "city": "Ljubljana", - "name": "SI#6", - "hostname": "node-si-01.protonvpn.net", - "entry_ip": "195.80.150.226", - "exit_ip": "195.80.150.232" - }, - { - "country": "Slovenia", - "region": "", - "city": "Ljubljana", - "name": "SI#7", - "hostname": "node-si-01.protonvpn.net", - "entry_ip": "195.80.150.226", - "exit_ip": "195.80.150.233" - }, - { - "country": "Slovenia", - "region": "", - "city": "Ljubljana", - "name": "SI#8", - "hostname": "node-si-01.protonvpn.net", - "entry_ip": "195.80.150.226", - "exit_ip": "195.80.150.234" + "exit_ip": [ + "195.80.150.230", + "195.80.150.231", + "195.80.150.232", + "195.80.150.233", + "195.80.150.234" + ] }, { "country": "South Africa", @@ -97294,7 +93912,9 @@ "name": "CH-ZA#1", "hostname": "ch-za-01d.protonvpn.com", "entry_ip": "185.159.157.112", - "exit_ip": "172.107.93.214" + "exit_ip": [ + "172.107.93.214" + ] }, { "country": "South Africa", @@ -97303,34 +93923,9 @@ "name": "SE-ZA#1", "hostname": "se-za-01d.protonvpn.com", "entry_ip": "185.159.156.44", - "exit_ip": "172.107.93.213" - }, - { - "country": "South Africa", - "region": "", - "city": "Johannesburg", - "name": "ZA#10", - "hostname": "lxc-za-02.protonvpn.com", - "entry_ip": "172.107.93.118", - "exit_ip": "172.107.93.215" - }, - { - "country": "South Africa", - "region": "", - "city": "Johannesburg", - "name": "ZA#11", - "hostname": "lxc-za-02.protonvpn.com", - "entry_ip": "172.107.93.118", - "exit_ip": "172.107.93.216" - }, - { - "country": "South Africa", - "region": "", - "city": "Johannesburg", - "name": "ZA#12", - "hostname": "lxc-za-02.protonvpn.com", - "entry_ip": "172.107.93.118", - "exit_ip": "172.107.93.217" + "exit_ip": [ + "172.107.93.213" + ] }, { "country": "South Africa", @@ -97339,25 +93934,11 @@ "name": "ZA#5", "hostname": "za-05.protonvpn.com", "entry_ip": "172.107.93.210", - "exit_ip": "172.107.93.210" - }, - { - "country": "South Africa", - "region": "", - "city": "Johannesburg", - "name": "ZA#6", - "hostname": "za-05.protonvpn.com", - "entry_ip": "172.107.93.210", - "exit_ip": "172.107.93.211" - }, - { - "country": "South Africa", - "region": "", - "city": "Johannesburg", - "name": "ZA#7", - "hostname": "za-05.protonvpn.com", - "entry_ip": "172.107.93.210", - "exit_ip": "172.107.93.212" + "exit_ip": [ + "172.107.93.210", + "172.107.93.211", + "172.107.93.212" + ] }, { "country": "South Africa", @@ -97366,16 +93947,13 @@ "name": "ZA#8", "hostname": "lxc-za-02.protonvpn.com", "entry_ip": "172.107.93.118", - "exit_ip": "172.107.93.213" - }, - { - "country": "South Africa", - "region": "", - "city": "Johannesburg", - "name": "ZA#9", - "hostname": "lxc-za-02.protonvpn.com", - "entry_ip": "172.107.93.118", - "exit_ip": "172.107.93.214" + "exit_ip": [ + "172.107.93.213", + "172.107.93.214", + "172.107.93.215", + "172.107.93.216", + "172.107.93.217" + ] }, { "country": "Spain", @@ -97384,16 +93962,9 @@ "name": "CH-ES#1", "hostname": "ch-es-01a.protonvpn.com", "entry_ip": "185.159.157.43", - "exit_ip": "195.181.167.197" - }, - { - "country": "Spain", - "region": "", - "city": "", - "name": "IS-ES#1", - "hostname": "is-es-01a.protonvpn.com", - "entry_ip": "185.159.158.104", - "exit_ip": "195.181.167.149" + "exit_ip": [ + "195.181.167.197" + ] }, { "country": "Spain", @@ -97402,7 +93973,9 @@ "name": "IS-ES#1", "hostname": "is-es-01c.protonvpn.com", "entry_ip": "185.159.158.148", - "exit_ip": "185.76.11.19" + "exit_ip": [ + "185.76.11.19" + ] }, { "country": "Spain", @@ -97411,25 +93984,9 @@ "name": "IS-ES#1", "hostname": "is-es-01d.protonvpn.com", "entry_ip": "185.159.158.149", - "exit_ip": "185.76.11.24" - }, - { - "country": "Spain", - "region": "", - "city": "Madrid", - "name": "ES#10", - "hostname": "es-09.protonvpn.net", - "entry_ip": "195.181.167.194", - "exit_ip": "195.181.167.195" - }, - { - "country": "Spain", - "region": "", - "city": "Madrid", - "name": "ES#11", - "hostname": "es-09.protonvpn.net", - "entry_ip": "195.181.167.194", - "exit_ip": "195.181.167.196" + "exit_ip": [ + "185.76.11.24" + ] }, { "country": "Spain", @@ -97438,43 +93995,13 @@ "name": "ES#12", "hostname": "node-es-03.protonvpn.net", "entry_ip": "195.181.167.193", - "exit_ip": "195.181.167.197" - }, - { - "country": "Spain", - "region": "", - "city": "Madrid", - "name": "ES#13", - "hostname": "node-es-03.protonvpn.net", - "entry_ip": "195.181.167.193", - "exit_ip": "195.181.167.198" - }, - { - "country": "Spain", - "region": "", - "city": "Madrid", - "name": "ES#14", - "hostname": "node-es-03.protonvpn.net", - "entry_ip": "195.181.167.193", - "exit_ip": "195.181.167.199" - }, - { - "country": "Spain", - "region": "", - "city": "Madrid", - "name": "ES#15", - "hostname": "node-es-03.protonvpn.net", - "entry_ip": "195.181.167.193", - "exit_ip": "195.181.167.200" - }, - { - "country": "Spain", - "region": "", - "city": "Madrid", - "name": "ES#16", - "hostname": "node-es-03.protonvpn.net", - "entry_ip": "195.181.167.193", - "exit_ip": "195.181.167.201" + "exit_ip": [ + "195.181.167.197", + "195.181.167.198", + "195.181.167.199", + "195.181.167.200", + "195.181.167.201" + ] }, { "country": "Spain", @@ -97483,7 +94010,9 @@ "name": "ES#17", "hostname": "es-17.protonvpn.com", "entry_ip": "185.76.11.18", - "exit_ip": "185.76.11.18" + "exit_ip": [ + "185.76.11.18" + ] }, { "country": "Spain", @@ -97492,25 +94021,11 @@ "name": "ES#18", "hostname": "lxc-es-04.protonvpn.com", "entry_ip": "185.76.11.17", - "exit_ip": "185.76.11.19" - }, - { - "country": "Spain", - "region": "", - "city": "Madrid", - "name": "ES#19", - "hostname": "lxc-es-04.protonvpn.com", - "entry_ip": "185.76.11.17", - "exit_ip": "185.76.11.20" - }, - { - "country": "Spain", - "region": "", - "city": "Madrid", - "name": "ES#20", - "hostname": "lxc-es-04.protonvpn.com", - "entry_ip": "185.76.11.17", - "exit_ip": "185.76.11.21" + "exit_ip": [ + "185.76.11.19", + "185.76.11.20", + "185.76.11.21" + ] }, { "country": "Spain", @@ -97519,7 +94034,9 @@ "name": "ES#21", "hostname": "es-21.protonvpn.net", "entry_ip": "185.76.11.23", - "exit_ip": "185.76.11.23" + "exit_ip": [ + "185.76.11.23" + ] }, { "country": "Spain", @@ -97528,61 +94045,26 @@ "name": "ES#22", "hostname": "node-es-05.protonvpn.net", "entry_ip": "185.76.11.22", - "exit_ip": "185.76.11.24" + "exit_ip": [ + "185.76.11.24", + "185.76.11.25", + "185.76.11.26" + ] }, { "country": "Spain", "region": "", "city": "Madrid", - "name": "ES#23", - "hostname": "node-es-05.protonvpn.net", - "entry_ip": "185.76.11.22", - "exit_ip": "185.76.11.25" - }, - { - "country": "Spain", - "region": "", - "city": "Madrid", - "name": "ES#24", - "hostname": "node-es-05.protonvpn.net", - "entry_ip": "185.76.11.22", - "exit_ip": "185.76.11.26" - }, - { - "country": "Spain", - "region": "", - "city": "Madrid", - "name": "ES#5", - "hostname": "es-05.protonvpn.net", - "entry_ip": "195.181.167.147", - "exit_ip": "195.181.167.147" - }, - { - "country": "Spain", - "region": "", - "city": "Madrid", - "name": "ES#6", - "hostname": "es-05.protonvpn.net", - "entry_ip": "195.181.167.147", - "exit_ip": "195.181.167.148" - }, - { - "country": "Spain", - "region": "", - "city": "Madrid", - "name": "ES#7", - "hostname": "node-es-02.protonvpn.net", - "entry_ip": "195.181.167.137", - "exit_ip": "195.181.167.149" - }, - { - "country": "Spain", - "region": "", - "city": "Madrid", - "name": "ES#8", - "hostname": "node-es-02.protonvpn.net", - "entry_ip": "195.181.167.137", - "exit_ip": "195.181.167.150" + "name": "ES#25", + "hostname": "node-es-06.protonvpn.net", + "entry_ip": "37.19.214.1", + "exit_ip": [ + "37.19.214.2", + "37.19.214.3", + "37.19.214.4", + "37.19.214.5", + "37.19.214.6" + ] }, { "country": "Spain", @@ -97591,7 +94073,11 @@ "name": "ES#9", "hostname": "es-09.protonvpn.net", "entry_ip": "195.181.167.194", - "exit_ip": "195.181.167.194" + "exit_ip": [ + "195.181.167.194", + "195.181.167.195", + "195.181.167.196" + ] }, { "country": "Sweden", @@ -97600,7 +94086,10 @@ "name": "SE#09", "hostname": "se-09.protonvpn.net", "entry_ip": "79.142.76.71", - "exit_ip": "79.142.76.71" + "exit_ip": [ + "79.142.76.71", + "79.142.76.72" + ] }, { "country": "Sweden", @@ -97609,16 +94098,12 @@ "name": "SE#1", "hostname": "node-se-01.protonvpn.net", "entry_ip": "195.178.172.188", - "exit_ip": "185.159.156.3" - }, - { - "country": "Sweden", - "region": "", - "city": "Stockholm", - "name": "SE#10", - "hostname": "se-09.protonvpn.net", - "entry_ip": "79.142.76.71", - "exit_ip": "79.142.76.72" + "exit_ip": [ + "185.159.156.3", + "185.159.156.4", + "185.159.156.17", + "185.159.156.18" + ] }, { "country": "Sweden", @@ -97627,16 +94112,10 @@ "name": "SE#11", "hostname": "node-se-03.protonvpn.net", "entry_ip": "79.142.76.49", - "exit_ip": "79.142.76.73" - }, - { - "country": "Sweden", - "region": "", - "city": "Stockholm", - "name": "SE#12", - "hostname": "node-se-03.protonvpn.net", - "entry_ip": "79.142.76.49", - "exit_ip": "79.142.76.74" + "exit_ip": [ + "79.142.76.73", + "79.142.76.74" + ] }, { "country": "Sweden", @@ -97645,16 +94124,10 @@ "name": "SE#13", "hostname": "se-13.protonvpn.net", "entry_ip": "185.246.128.82", - "exit_ip": "185.246.128.82" - }, - { - "country": "Sweden", - "region": "", - "city": "Stockholm", - "name": "SE#14", - "hostname": "se-13.protonvpn.net", - "entry_ip": "185.246.128.82", - "exit_ip": "185.246.128.83" + "exit_ip": [ + "185.246.128.82", + "185.246.128.83" + ] }, { "country": "Sweden", @@ -97663,25 +94136,10 @@ "name": "SE#15", "hostname": "node-se-04.protonvpn.net", "entry_ip": "185.246.128.178", - "exit_ip": "185.246.128.84" - }, - { - "country": "Sweden", - "region": "", - "city": "Stockholm", - "name": "SE#16", - "hostname": "node-se-04.protonvpn.net", - "entry_ip": "185.246.128.178", - "exit_ip": "185.246.128.85" - }, - { - "country": "Sweden", - "region": "", - "city": "Stockholm", - "name": "SE#2", - "hostname": "node-se-01.protonvpn.net", - "entry_ip": "195.178.172.188", - "exit_ip": "185.159.156.4" + "exit_ip": [ + "185.246.128.84", + "185.246.128.85" + ] }, { "country": "Sweden", @@ -97690,52 +94148,12 @@ "name": "SE#3", "hostname": "node-se-02.protonvpn.net", "entry_ip": "195.178.172.189", - "exit_ip": "185.159.156.5" - }, - { - "country": "Sweden", - "region": "", - "city": "Stockholm", - "name": "SE#4", - "hostname": "node-se-02.protonvpn.net", - "entry_ip": "195.178.172.189", - "exit_ip": "185.159.156.6" - }, - { - "country": "Sweden", - "region": "", - "city": "Stockholm", - "name": "SE#5", - "hostname": "node-se-01.protonvpn.net", - "entry_ip": "195.178.172.188", - "exit_ip": "185.159.156.17" - }, - { - "country": "Sweden", - "region": "", - "city": "Stockholm", - "name": "SE#6", - "hostname": "node-se-01.protonvpn.net", - "entry_ip": "195.178.172.188", - "exit_ip": "185.159.156.18" - }, - { - "country": "Sweden", - "region": "", - "city": "Stockholm", - "name": "SE#7", - "hostname": "node-se-02.protonvpn.net", - "entry_ip": "195.178.172.189", - "exit_ip": "185.159.156.19" - }, - { - "country": "Sweden", - "region": "", - "city": "Stockholm", - "name": "SE#8", - "hostname": "node-se-02.protonvpn.net", - "entry_ip": "195.178.172.189", - "exit_ip": "185.159.156.20" + "exit_ip": [ + "185.159.156.5", + "185.159.156.6", + "185.159.156.19", + "185.159.156.20" + ] }, { "country": "Switzerland", @@ -97744,16 +94162,10 @@ "name": "CH#10", "hostname": "node-ch-05.protonvpn.net", "entry_ip": "185.159.157.128", - "exit_ip": "185.159.157.19" - }, - { - "country": "Switzerland", - "region": "", - "city": "Zurich", - "name": "CH#11", - "hostname": "node-ch-05.protonvpn.net", - "entry_ip": "185.159.157.128", - "exit_ip": "185.159.157.20" + "exit_ip": [ + "185.159.157.19", + "185.159.157.20" + ] }, { "country": "Switzerland", @@ -97762,16 +94174,10 @@ "name": "CH#12", "hostname": "node-ch-06.protonvpn.net", "entry_ip": "185.159.157.129", - "exit_ip": "185.159.157.21" - }, - { - "country": "Switzerland", - "region": "", - "city": "Zurich", - "name": "CH#13", - "hostname": "node-ch-06.protonvpn.net", - "entry_ip": "185.159.157.129", - "exit_ip": "185.159.157.22" + "exit_ip": [ + "185.159.157.21", + "185.159.157.22" + ] }, { "country": "Switzerland", @@ -97780,16 +94186,10 @@ "name": "CH#14", "hostname": "node-ch-07.protonvpn.net", "entry_ip": "185.159.157.24", - "exit_ip": "185.159.157.25" - }, - { - "country": "Switzerland", - "region": "", - "city": "Zurich", - "name": "CH#15", - "hostname": "node-ch-07.protonvpn.net", - "entry_ip": "185.159.157.24", - "exit_ip": "185.159.157.26" + "exit_ip": [ + "185.159.157.25", + "185.159.157.26" + ] }, { "country": "Switzerland", @@ -97798,16 +94198,10 @@ "name": "CH#16", "hostname": "node-ch-08.protonvpn.net", "entry_ip": "185.159.157.23", - "exit_ip": "185.159.157.44" - }, - { - "country": "Switzerland", - "region": "", - "city": "Zurich", - "name": "CH#17", - "hostname": "node-ch-08.protonvpn.net", - "entry_ip": "185.159.157.23", - "exit_ip": "185.159.157.45" + "exit_ip": [ + "185.159.157.44", + "185.159.157.45" + ] }, { "country": "Switzerland", @@ -97816,16 +94210,10 @@ "name": "CH#5", "hostname": "node-ch-02.protonvpn.net", "entry_ip": "185.159.157.6", - "exit_ip": "185.159.157.8" - }, - { - "country": "Switzerland", - "region": "", - "city": "Zurich", - "name": "CH#6", - "hostname": "node-ch-02.protonvpn.net", - "entry_ip": "185.159.157.6", - "exit_ip": "185.159.157.9" + "exit_ip": [ + "185.159.157.8", + "185.159.157.9" + ] }, { "country": "Switzerland", @@ -97834,16 +94222,10 @@ "name": "CH#7", "hostname": "node-ch-03.protonvpn.net", "entry_ip": "185.159.157.7", - "exit_ip": "185.159.157.10" - }, - { - "country": "Switzerland", - "region": "", - "city": "Zurich", - "name": "CH#8", - "hostname": "node-ch-03.protonvpn.net", - "entry_ip": "185.159.157.7", - "exit_ip": "185.159.157.11" + "exit_ip": [ + "185.159.157.10", + "185.159.157.11" + ] }, { "country": "Taiwan", @@ -97852,7 +94234,9 @@ "name": "CH-TW#1", "hostname": "ch-tw-01a.protonvpn.com", "entry_ip": "185.159.157.141", - "exit_ip": "2.58.241.70" + "exit_ip": [ + "2.58.241.70" + ] }, { "country": "Taiwan", @@ -97861,25 +94245,11 @@ "name": "TW#13", "hostname": "tw-13.protonvpn.net", "entry_ip": "2.58.241.67", - "exit_ip": "2.58.241.67" - }, - { - "country": "Taiwan", - "region": "", - "city": "Taichung City", - "name": "TW#14", - "hostname": "tw-13.protonvpn.net", - "entry_ip": "2.58.241.67", - "exit_ip": "2.58.241.68" - }, - { - "country": "Taiwan", - "region": "", - "city": "Taichung City", - "name": "TW#15", - "hostname": "tw-13.protonvpn.net", - "entry_ip": "2.58.241.67", - "exit_ip": "2.58.241.69" + "exit_ip": [ + "2.58.241.67", + "2.58.241.68", + "2.58.241.69" + ] }, { "country": "Taiwan", @@ -97888,43 +94258,13 @@ "name": "TW#16", "hostname": "node-tw-03.protonvpn.net", "entry_ip": "2.58.241.66", - "exit_ip": "2.58.241.70" - }, - { - "country": "Taiwan", - "region": "", - "city": "Taichung City", - "name": "TW#17", - "hostname": "node-tw-03.protonvpn.net", - "entry_ip": "2.58.241.66", - "exit_ip": "2.58.241.71" - }, - { - "country": "Taiwan", - "region": "", - "city": "Taichung City", - "name": "TW#18", - "hostname": "node-tw-03.protonvpn.net", - "entry_ip": "2.58.241.66", - "exit_ip": "2.58.241.72" - }, - { - "country": "Taiwan", - "region": "", - "city": "Taichung City", - "name": "TW#19", - "hostname": "node-tw-03.protonvpn.net", - "entry_ip": "2.58.241.66", - "exit_ip": "2.58.241.73" - }, - { - "country": "Taiwan", - "region": "", - "city": "Taichung City", - "name": "TW#20", - "hostname": "node-tw-03.protonvpn.net", - "entry_ip": "2.58.241.66", - "exit_ip": "2.58.241.74" + "exit_ip": [ + "2.58.241.70", + "2.58.241.71", + "2.58.241.72", + "2.58.241.73", + "2.58.241.74" + ] }, { "country": "Turkey", @@ -97933,25 +94273,9 @@ "name": "CH-TR#1", "hostname": "ch-tr-01a.protonvpn.com", "entry_ip": "185.159.157.72", - "exit_ip": "46.20.152.119" - }, - { - "country": "Turkey", - "region": "", - "city": "Istanbul", - "name": "TR#10", - "hostname": "tr-09.protonvpn.com", - "entry_ip": "46.20.152.116", - "exit_ip": "46.20.152.117" - }, - { - "country": "Turkey", - "region": "", - "city": "Istanbul", - "name": "TR#11", - "hostname": "tr-09.protonvpn.com", - "entry_ip": "46.20.152.116", - "exit_ip": "46.20.152.118" + "exit_ip": [ + "46.20.152.119" + ] }, { "country": "Turkey", @@ -97960,43 +94284,13 @@ "name": "TR#12", "hostname": "lxc-tr-02.protonvpn.com", "entry_ip": "46.20.152.115", - "exit_ip": "46.20.152.119" - }, - { - "country": "Turkey", - "region": "", - "city": "Istanbul", - "name": "TR#13", - "hostname": "lxc-tr-02.protonvpn.com", - "entry_ip": "46.20.152.115", - "exit_ip": "46.20.152.120" - }, - { - "country": "Turkey", - "region": "", - "city": "Istanbul", - "name": "TR#14", - "hostname": "lxc-tr-02.protonvpn.com", - "entry_ip": "46.20.152.115", - "exit_ip": "46.20.152.121" - }, - { - "country": "Turkey", - "region": "", - "city": "Istanbul", - "name": "TR#15", - "hostname": "lxc-tr-02.protonvpn.com", - "entry_ip": "46.20.152.115", - "exit_ip": "46.20.152.122" - }, - { - "country": "Turkey", - "region": "", - "city": "Istanbul", - "name": "TR#16", - "hostname": "lxc-tr-02.protonvpn.com", - "entry_ip": "46.20.152.115", - "exit_ip": "46.20.152.123" + "exit_ip": [ + "46.20.152.119", + "46.20.152.120", + "46.20.152.121", + "46.20.152.122", + "46.20.152.123" + ] }, { "country": "Turkey", @@ -98005,7 +94299,11 @@ "name": "TR#9", "hostname": "tr-09.protonvpn.com", "entry_ip": "46.20.152.116", - "exit_ip": "46.20.152.116" + "exit_ip": [ + "46.20.152.116", + "46.20.152.117", + "46.20.152.118" + ] }, { "country": "Ukraine", @@ -98014,25 +94312,9 @@ "name": "CH-UA#1", "hostname": "ch-ua-01a.protonvpn.com", "entry_ip": "185.159.157.60", - "exit_ip": "156.146.50.4" - }, - { - "country": "Ukraine", - "region": "", - "city": "Kyiv", - "name": "UA#10", - "hostname": "ua-09.protonvpn.net", - "entry_ip": "156.146.50.1", - "exit_ip": "156.146.50.2" - }, - { - "country": "Ukraine", - "region": "", - "city": "Kyiv", - "name": "UA#11", - "hostname": "ua-09.protonvpn.net", - "entry_ip": "156.146.50.1", - "exit_ip": "156.146.50.3" + "exit_ip": [ + "156.146.50.4" + ] }, { "country": "Ukraine", @@ -98041,43 +94323,13 @@ "name": "UA#12", "hostname": "node-ua-02.protonvpn.net", "entry_ip": "156.146.50.5", - "exit_ip": "156.146.50.4" - }, - { - "country": "Ukraine", - "region": "", - "city": "Kyiv", - "name": "UA#13", - "hostname": "node-ua-02.protonvpn.net", - "entry_ip": "156.146.50.5", - "exit_ip": "156.146.50.6" - }, - { - "country": "Ukraine", - "region": "", - "city": "Kyiv", - "name": "UA#14", - "hostname": "node-ua-02.protonvpn.net", - "entry_ip": "156.146.50.5", - "exit_ip": "156.146.50.7" - }, - { - "country": "Ukraine", - "region": "", - "city": "Kyiv", - "name": "UA#15", - "hostname": "node-ua-02.protonvpn.net", - "entry_ip": "156.146.50.5", - "exit_ip": "156.146.50.8" - }, - { - "country": "Ukraine", - "region": "", - "city": "Kyiv", - "name": "UA#16", - "hostname": "node-ua-02.protonvpn.net", - "entry_ip": "156.146.50.5", - "exit_ip": "156.146.50.9" + "exit_ip": [ + "156.146.50.4", + "156.146.50.6", + "156.146.50.7", + "156.146.50.8", + "156.146.50.9" + ] }, { "country": "Ukraine", @@ -98086,7 +94338,11 @@ "name": "UA#9", "hostname": "ua-09.protonvpn.net", "entry_ip": "156.146.50.1", - "exit_ip": "156.146.50.1" + "exit_ip": [ + "156.146.50.1", + "156.146.50.2", + "156.146.50.3" + ] }, { "country": "United Arab Emirates", @@ -98095,7 +94351,9 @@ "name": "CH-AE#1", "hostname": "ch-ae-01a.protonvpn.com", "entry_ip": "185.159.157.161", - "exit_ip": "176.125.231.84" + "exit_ip": [ + "176.125.231.84" + ] }, { "country": "United Arab Emirates", @@ -98104,25 +94362,9 @@ "name": "CH-AE#1", "hostname": "ch-ae-01b.protonvpn.com", "entry_ip": "185.159.157.104", - "exit_ip": "217.138.193.102" - }, - { - "country": "United Arab Emirates", - "region": "", - "city": "Dubai", - "name": "AE#10", - "hostname": "ae-09.protonvpn.net", - "entry_ip": "217.138.193.99", - "exit_ip": "217.138.193.100" - }, - { - "country": "United Arab Emirates", - "region": "", - "city": "Dubai", - "name": "AE#11", - "hostname": "ae-09.protonvpn.net", - "entry_ip": "217.138.193.99", - "exit_ip": "217.138.193.101" + "exit_ip": [ + "217.138.193.102" + ] }, { "country": "United Arab Emirates", @@ -98131,43 +94373,13 @@ "name": "AE#12", "hostname": "node-ae-02.protonvpn.net", "entry_ip": "217.138.193.98", - "exit_ip": "217.138.193.102" - }, - { - "country": "United Arab Emirates", - "region": "", - "city": "Dubai", - "name": "AE#13", - "hostname": "node-ae-02.protonvpn.net", - "entry_ip": "217.138.193.98", - "exit_ip": "217.138.193.103" - }, - { - "country": "United Arab Emirates", - "region": "", - "city": "Dubai", - "name": "AE#14", - "hostname": "node-ae-02.protonvpn.net", - "entry_ip": "217.138.193.98", - "exit_ip": "217.138.193.104" - }, - { - "country": "United Arab Emirates", - "region": "", - "city": "Dubai", - "name": "AE#15", - "hostname": "node-ae-02.protonvpn.net", - "entry_ip": "217.138.193.98", - "exit_ip": "217.138.193.105" - }, - { - "country": "United Arab Emirates", - "region": "", - "city": "Dubai", - "name": "AE#16", - "hostname": "node-ae-02.protonvpn.net", - "entry_ip": "217.138.193.98", - "exit_ip": "217.138.193.106" + "exit_ip": [ + "217.138.193.102", + "217.138.193.103", + "217.138.193.104", + "217.138.193.105", + "217.138.193.106" + ] }, { "country": "United Arab Emirates", @@ -98176,7 +94388,9 @@ "name": "AE#17", "hostname": "ae-17.protonvpn.net", "entry_ip": "176.125.231.83", - "exit_ip": "176.125.231.83" + "exit_ip": [ + "176.125.231.83" + ] }, { "country": "United Arab Emirates", @@ -98185,25 +94399,11 @@ "name": "AE#18", "hostname": "node-ae-03.protonvpn.net", "entry_ip": "176.125.231.82", - "exit_ip": "176.125.231.84" - }, - { - "country": "United Arab Emirates", - "region": "", - "city": "Dubai", - "name": "AE#19", - "hostname": "node-ae-03.protonvpn.net", - "entry_ip": "176.125.231.82", - "exit_ip": "176.125.231.85" - }, - { - "country": "United Arab Emirates", - "region": "", - "city": "Dubai", - "name": "AE#20", - "hostname": "node-ae-03.protonvpn.net", - "entry_ip": "176.125.231.82", - "exit_ip": "176.125.231.86" + "exit_ip": [ + "176.125.231.84", + "176.125.231.85", + "176.125.231.86" + ] }, { "country": "United Arab Emirates", @@ -98212,7 +94412,11 @@ "name": "AE#9", "hostname": "ae-09.protonvpn.net", "entry_ip": "217.138.193.99", - "exit_ip": "217.138.193.99" + "exit_ip": [ + "217.138.193.99", + "217.138.193.100", + "217.138.193.101" + ] }, { "country": "United Kingdom", @@ -98221,7 +94425,9 @@ "name": "CH-UK#1", "hostname": "ch-uk-01a.protonvpn.com", "entry_ip": "185.159.157.152", - "exit_ip": "81.92.200.52" + "exit_ip": [ + "81.92.200.52" + ] }, { "country": "United Kingdom", @@ -98230,7 +94436,9 @@ "name": "CH-UK#1", "hostname": "ch-uk-01b.protonvpn.com", "entry_ip": "185.159.157.103", - "exit_ip": "89.238.150.172" + "exit_ip": [ + "89.238.150.172" + ] }, { "country": "United Kingdom", @@ -98239,7 +94447,9 @@ "name": "CH-UK#1", "hostname": "ch-uk-01c.protonvpn.com", "entry_ip": "185.159.157.117", - "exit_ip": "89.44.201.164" + "exit_ip": [ + "89.44.201.164" + ] }, { "country": "United Kingdom", @@ -98248,7 +94458,9 @@ "name": "CH-UK#1", "hostname": "ch-uk-01d.protonvpn.com", "entry_ip": "185.159.157.153", - "exit_ip": "81.92.200.60" + "exit_ip": [ + "81.92.200.60" + ] }, { "country": "United Kingdom", @@ -98257,7 +94469,9 @@ "name": "CH-UK#1", "hostname": "ch-uk-01h.protonvpn.com", "entry_ip": "185.159.157.16", - "exit_ip": "217.138.196.22" + "exit_ip": [ + "217.138.196.22" + ] }, { "country": "United Kingdom", @@ -98266,7 +94480,9 @@ "name": "CH-UK#1", "hostname": "ch-uk-01i.protonvpn.com", "entry_ip": "185.159.157.88", - "exit_ip": "37.120.198.182" + "exit_ip": [ + "37.120.198.182" + ] }, { "country": "United Kingdom", @@ -98275,7 +94491,9 @@ "name": "IS-UK#1", "hostname": "is-uk-01a.protonvpn.com", "entry_ip": "185.159.158.171", - "exit_ip": "23.106.63.34" + "exit_ip": [ + "23.106.63.34" + ] }, { "country": "United Kingdom", @@ -98284,25 +94502,11 @@ "name": "UK#25", "hostname": "uk-25.protonvpn.net", "entry_ip": "37.120.198.179", - "exit_ip": "37.120.198.179" - }, - { - "country": "United Kingdom", - "region": "", - "city": "London", - "name": "UK#26", - "hostname": "uk-25.protonvpn.net", - "entry_ip": "37.120.198.179", - "exit_ip": "37.120.198.180" - }, - { - "country": "United Kingdom", - "region": "", - "city": "London", - "name": "UK#27", - "hostname": "uk-25.protonvpn.net", - "entry_ip": "37.120.198.179", - "exit_ip": "37.120.198.181" + "exit_ip": [ + "37.120.198.179", + "37.120.198.180", + "37.120.198.181" + ] }, { "country": "United Kingdom", @@ -98311,43 +94515,13 @@ "name": "UK#28", "hostname": "node-uk-06.protonvpn.net", "entry_ip": "37.120.198.178", - "exit_ip": "37.120.198.182" - }, - { - "country": "United Kingdom", - "region": "", - "city": "London", - "name": "UK#29", - "hostname": "node-uk-06.protonvpn.net", - "entry_ip": "37.120.198.178", - "exit_ip": "37.120.198.183" - }, - { - "country": "United Kingdom", - "region": "", - "city": "London", - "name": "UK#30", - "hostname": "node-uk-06.protonvpn.net", - "entry_ip": "37.120.198.178", - "exit_ip": "37.120.198.184" - }, - { - "country": "United Kingdom", - "region": "", - "city": "London", - "name": "UK#31", - "hostname": "node-uk-06.protonvpn.net", - "entry_ip": "37.120.198.178", - "exit_ip": "37.120.198.185" - }, - { - "country": "United Kingdom", - "region": "", - "city": "London", - "name": "UK#32", - "hostname": "node-uk-06.protonvpn.net", - "entry_ip": "37.120.198.178", - "exit_ip": "37.120.198.186" + "exit_ip": [ + "37.120.198.182", + "37.120.198.183", + "37.120.198.184", + "37.120.198.185", + "37.120.198.186" + ] }, { "country": "United Kingdom", @@ -98356,7 +94530,9 @@ "name": "UK#33", "hostname": "uk-33.protonvpn.com", "entry_ip": "89.238.150.171", - "exit_ip": "89.238.150.171" + "exit_ip": [ + "89.238.150.171" + ] }, { "country": "United Kingdom", @@ -98365,25 +94541,11 @@ "name": "UK#34", "hostname": "lxc-uk-07.protonvpn.com", "entry_ip": "89.238.150.170", - "exit_ip": "89.238.150.172" - }, - { - "country": "United Kingdom", - "region": "", - "city": "London", - "name": "UK#35", - "hostname": "lxc-uk-07.protonvpn.com", - "entry_ip": "89.238.150.170", - "exit_ip": "89.238.150.173" - }, - { - "country": "United Kingdom", - "region": "", - "city": "London", - "name": "UK#36", - "hostname": "lxc-uk-07.protonvpn.com", - "entry_ip": "89.238.150.170", - "exit_ip": "89.238.150.174" + "exit_ip": [ + "89.238.150.172", + "89.238.150.173", + "89.238.150.174" + ] }, { "country": "United Kingdom", @@ -98392,7 +94554,9 @@ "name": "UK#41", "hostname": "uk-41.protonvpn.com", "entry_ip": "81.92.200.51", - "exit_ip": "81.92.200.51" + "exit_ip": [ + "81.92.200.51" + ] }, { "country": "United Kingdom", @@ -98401,25 +94565,11 @@ "name": "UK#42", "hostname": "lxc-uk-09.protonvpn.com", "entry_ip": "81.92.200.50", - "exit_ip": "81.92.200.52" - }, - { - "country": "United Kingdom", - "region": "", - "city": "London", - "name": "UK#43", - "hostname": "lxc-uk-09.protonvpn.com", - "entry_ip": "81.92.200.50", - "exit_ip": "81.92.200.53" - }, - { - "country": "United Kingdom", - "region": "", - "city": "London", - "name": "UK#44", - "hostname": "lxc-uk-09.protonvpn.com", - "entry_ip": "81.92.200.50", - "exit_ip": "81.92.200.54" + "exit_ip": [ + "81.92.200.52", + "81.92.200.53", + "81.92.200.54" + ] }, { "country": "United Kingdom", @@ -98428,7 +94578,9 @@ "name": "UK#45", "hostname": "uk-45.protonvpn.com", "entry_ip": "81.92.200.59", - "exit_ip": "81.92.200.59" + "exit_ip": [ + "81.92.200.59" + ] }, { "country": "United Kingdom", @@ -98437,25 +94589,11 @@ "name": "UK#46", "hostname": "lxc-uk-10.protonvpn.com", "entry_ip": "81.92.200.58", - "exit_ip": "81.92.200.60" - }, - { - "country": "United Kingdom", - "region": "", - "city": "London", - "name": "UK#47", - "hostname": "lxc-uk-10.protonvpn.com", - "entry_ip": "81.92.200.58", - "exit_ip": "81.92.200.61" - }, - { - "country": "United Kingdom", - "region": "", - "city": "London", - "name": "UK#48", - "hostname": "lxc-uk-10.protonvpn.com", - "entry_ip": "81.92.200.58", - "exit_ip": "81.92.200.62" + "exit_ip": [ + "81.92.200.60", + "81.92.200.61", + "81.92.200.62" + ] }, { "country": "United Kingdom", @@ -98464,7 +94602,9 @@ "name": "UK#49", "hostname": "uk-49.protonvpn.net", "entry_ip": "23.106.63.33", - "exit_ip": "23.106.63.33" + "exit_ip": [ + "23.106.63.33" + ] }, { "country": "United Kingdom", @@ -98473,25 +94613,11 @@ "name": "UK#50", "hostname": "node-uk-11.protonvpn.net", "entry_ip": "23.106.63.29", - "exit_ip": "23.106.63.34" - }, - { - "country": "United Kingdom", - "region": "", - "city": "London", - "name": "UK#51", - "hostname": "node-uk-11.protonvpn.net", - "entry_ip": "23.106.63.29", - "exit_ip": "23.106.63.35" - }, - { - "country": "United Kingdom", - "region": "", - "city": "London", - "name": "UK#52", - "hostname": "node-uk-11.protonvpn.net", - "entry_ip": "23.106.63.29", - "exit_ip": "23.106.63.36" + "exit_ip": [ + "23.106.63.34", + "23.106.63.35", + "23.106.63.36" + ] }, { "country": "United Kingdom", @@ -98500,25 +94626,11 @@ "name": "UK#17", "hostname": "uk-17.protonvpn.com", "entry_ip": "217.138.196.19", - "exit_ip": "217.138.196.19" - }, - { - "country": "United Kingdom", - "region": "", - "city": "Manchester", - "name": "UK#18", - "hostname": "uk-17.protonvpn.com", - "entry_ip": "217.138.196.19", - "exit_ip": "217.138.196.20" - }, - { - "country": "United Kingdom", - "region": "", - "city": "Manchester", - "name": "UK#19", - "hostname": "uk-17.protonvpn.com", - "entry_ip": "217.138.196.19", - "exit_ip": "217.138.196.21" + "exit_ip": [ + "217.138.196.19", + "217.138.196.20", + "217.138.196.21" + ] }, { "country": "United Kingdom", @@ -98527,43 +94639,13 @@ "name": "UK#20", "hostname": "lxc-uk-05.protonvpn.com", "entry_ip": "217.138.196.18", - "exit_ip": "217.138.196.22" - }, - { - "country": "United Kingdom", - "region": "", - "city": "Manchester", - "name": "UK#21", - "hostname": "lxc-uk-05.protonvpn.com", - "entry_ip": "217.138.196.18", - "exit_ip": "217.138.196.23" - }, - { - "country": "United Kingdom", - "region": "", - "city": "Manchester", - "name": "UK#22", - "hostname": "lxc-uk-05.protonvpn.com", - "entry_ip": "217.138.196.18", - "exit_ip": "217.138.196.24" - }, - { - "country": "United Kingdom", - "region": "", - "city": "Manchester", - "name": "UK#23", - "hostname": "lxc-uk-05.protonvpn.com", - "entry_ip": "217.138.196.18", - "exit_ip": "217.138.196.25" - }, - { - "country": "United Kingdom", - "region": "", - "city": "Manchester", - "name": "UK#24", - "hostname": "lxc-uk-05.protonvpn.com", - "entry_ip": "217.138.196.18", - "exit_ip": "217.138.196.26" + "exit_ip": [ + "217.138.196.22", + "217.138.196.23", + "217.138.196.24", + "217.138.196.25", + "217.138.196.26" + ] }, { "country": "United Kingdom", @@ -98572,7 +94654,9 @@ "name": "UK#37", "hostname": "uk-37.protonvpn.com", "entry_ip": "89.44.201.163", - "exit_ip": "89.44.201.163" + "exit_ip": [ + "89.44.201.163" + ] }, { "country": "United Kingdom", @@ -98581,25 +94665,11 @@ "name": "UK#38", "hostname": "lxc-uk-08.protonvpn.com", "entry_ip": "89.44.201.162", - "exit_ip": "89.44.201.164" - }, - { - "country": "United Kingdom", - "region": "", - "city": "Manchester", - "name": "UK#39", - "hostname": "lxc-uk-08.protonvpn.com", - "entry_ip": "89.44.201.162", - "exit_ip": "89.44.201.165" - }, - { - "country": "United Kingdom", - "region": "", - "city": "Manchester", - "name": "UK#40", - "hostname": "lxc-uk-08.protonvpn.com", - "entry_ip": "89.44.201.162", - "exit_ip": "89.44.201.166" + "exit_ip": [ + "89.44.201.164", + "89.44.201.165", + "89.44.201.166" + ] }, { "country": "United States", @@ -98608,7 +94678,9 @@ "name": "CH-US#1", "hostname": "ch-us-01a.protonvpn.com", "entry_ip": "185.159.157.13", - "exit_ip": "209.58.129.100" + "exit_ip": [ + "209.58.129.100" + ] }, { "country": "United States", @@ -98617,7 +94689,9 @@ "name": "CH-US#1", "hostname": "ch-us-01b.protonvpn.com", "entry_ip": "185.159.157.86", - "exit_ip": "37.120.215.231" + "exit_ip": [ + "37.120.215.231" + ] }, { "country": "United States", @@ -98626,7 +94700,9 @@ "name": "CH-US#1", "hostname": "ch-us-01c.protonvpn.com", "entry_ip": "185.159.157.92", - "exit_ip": "89.187.175.147" + "exit_ip": [ + "89.187.175.147" + ] }, { "country": "United States", @@ -98635,7 +94711,9 @@ "name": "CH-US#1", "hostname": "ch-us-01d.protonvpn.com", "entry_ip": "185.159.157.99", - "exit_ip": "193.148.18.68" + "exit_ip": [ + "193.148.18.68" + ] }, { "country": "United States", @@ -98644,7 +94722,9 @@ "name": "CH-US#1", "hostname": "ch-us-01e.protonvpn.com", "entry_ip": "185.159.157.54", - "exit_ip": "172.98.93.227" + "exit_ip": [ + "172.98.93.227" + ] }, { "country": "United States", @@ -98653,7 +94733,9 @@ "name": "CH-US#1", "hostname": "ch-us-01f.protonvpn.com", "entry_ip": "185.159.157.53", - "exit_ip": "172.83.43.136" + "exit_ip": [ + "172.83.43.136" + ] }, { "country": "United States", @@ -98662,7 +94744,9 @@ "name": "CH-US#1", "hostname": "ch-us-01g.protonvpn.com", "entry_ip": "185.159.157.29", - "exit_ip": "193.148.18.38" + "exit_ip": [ + "193.148.18.38" + ] }, { "country": "United States", @@ -98671,7 +94755,9 @@ "name": "CH-US#1", "hostname": "ch-us-01h.protonvpn.com", "entry_ip": "185.159.157.30", - "exit_ip": "45.152.182.134" + "exit_ip": [ + "45.152.182.134" + ] }, { "country": "United States", @@ -98680,7 +94766,9 @@ "name": "CH-US#1", "hostname": "ch-us-01i.protonvpn.com", "entry_ip": "185.159.157.41", - "exit_ip": "45.152.182.150" + "exit_ip": [ + "45.152.182.150" + ] }, { "country": "United States", @@ -98689,7 +94777,9 @@ "name": "CH-US#1", "hostname": "ch-us-01j.protonvpn.com", "entry_ip": "185.159.157.42", - "exit_ip": "37.120.215.243" + "exit_ip": [ + "37.120.215.243" + ] }, { "country": "United States", @@ -98698,7 +94788,9 @@ "name": "CH-US#1", "hostname": "ch-us-01l.protonvpn.com", "entry_ip": "185.159.157.73", - "exit_ip": "173.0.77.6" + "exit_ip": [ + "173.0.77.6" + ] }, { "country": "United States", @@ -98707,7 +94799,9 @@ "name": "CH-US#1", "hostname": "ch-us-01m.protonvpn.com", "entry_ip": "185.159.157.74", - "exit_ip": "173.0.77.12" + "exit_ip": [ + "173.0.77.12" + ] }, { "country": "United States", @@ -98716,7 +94810,9 @@ "name": "CH-US#1", "hostname": "ch-us-01o.protonvpn.com", "entry_ip": "185.159.157.121", - "exit_ip": "173.0.77.83" + "exit_ip": [ + "173.0.77.83" + ] }, { "country": "United States", @@ -98725,7 +94821,9 @@ "name": "CH-US#1", "hostname": "ch-us-01p.protonvpn.com", "entry_ip": "185.159.157.116", - "exit_ip": "185.230.126.12" + "exit_ip": [ + "185.230.126.12" + ] }, { "country": "United States", @@ -98734,7 +94832,9 @@ "name": "CH-US#1", "hostname": "ch-us-01q.protonvpn.com", "entry_ip": "185.159.157.119", - "exit_ip": "107.152.101.211" + "exit_ip": [ + "107.152.101.211" + ] }, { "country": "United States", @@ -98743,7 +94843,9 @@ "name": "CH-US#1", "hostname": "ch-us-01r.protonvpn.com", "entry_ip": "185.159.157.120", - "exit_ip": "66.115.180.195" + "exit_ip": [ + "66.115.180.195" + ] }, { "country": "United States", @@ -98752,7 +94854,9 @@ "name": "CH-US#1", "hostname": "ch-us-01s.protonvpn.com", "entry_ip": "185.159.157.122", - "exit_ip": "173.0.77.89" + "exit_ip": [ + "173.0.77.89" + ] }, { "country": "United States", @@ -98761,7 +94865,9 @@ "name": "CH-US#1", "hostname": "ch-us-01t.protonvpn.com", "entry_ip": "185.159.157.123", - "exit_ip": "104.200.145.226" + "exit_ip": [ + "104.200.145.226" + ] }, { "country": "United States", @@ -98770,7 +94876,9 @@ "name": "CH-US#1", "hostname": "ch-us-01u.protonvpn.com", "entry_ip": "185.159.157.124", - "exit_ip": "66.115.149.227" + "exit_ip": [ + "66.115.149.227" + ] }, { "country": "United States", @@ -98779,7 +94887,9 @@ "name": "CH-US#1", "hostname": "ch-us-01v.protonvpn.com", "entry_ip": "185.159.157.142", - "exit_ip": "212.102.44.163" + "exit_ip": [ + "212.102.44.163" + ] }, { "country": "United States", @@ -98788,7 +94898,9 @@ "name": "CH-US#1", "hostname": "ch-us-01w.protonvpn.com", "entry_ip": "185.159.157.143", - "exit_ip": "212.102.44.168" + "exit_ip": [ + "212.102.44.168" + ] }, { "country": "United States", @@ -98797,7 +94909,9 @@ "name": "CH-US#1", "hostname": "ch-us-01x.protonvpn.com", "entry_ip": "185.159.157.144", - "exit_ip": "91.219.212.196" + "exit_ip": [ + "91.219.212.196" + ] }, { "country": "United States", @@ -98806,7 +94920,9 @@ "name": "CH-US#1", "hostname": "ch-us-01y.protonvpn.com", "entry_ip": "185.159.157.145", - "exit_ip": "91.219.214.172" + "exit_ip": [ + "91.219.214.172" + ] }, { "country": "United States", @@ -98815,7 +94931,9 @@ "name": "CH-US#1", "hostname": "ch-us-01z.protonvpn.com", "entry_ip": "185.159.157.146", - "exit_ip": "91.219.214.164" + "exit_ip": [ + "91.219.214.164" + ] }, { "country": "United States", @@ -98824,7 +94942,9 @@ "name": "CH-US#1", "hostname": "ch-us-02a.protonvpn.com", "entry_ip": "185.159.157.157", - "exit_ip": "37.120.244.59" + "exit_ip": [ + "37.120.244.59" + ] }, { "country": "United States", @@ -98833,7 +94953,9 @@ "name": "CH-US#1", "hostname": "ch-us-02b.protonvpn.com", "entry_ip": "185.159.157.158", - "exit_ip": "37.120.244.156" + "exit_ip": [ + "37.120.244.156" + ] }, { "country": "United States", @@ -98842,7 +94964,9 @@ "name": "CH-US#1", "hostname": "ch-us-02c.protonvpn.com", "entry_ip": "185.159.157.159", - "exit_ip": "37.120.244.52" + "exit_ip": [ + "37.120.244.52" + ] }, { "country": "United States", @@ -98851,7 +94975,9 @@ "name": "CH-US#1", "hostname": "ch-us-02d.protonvpn.com", "entry_ip": "185.159.157.160", - "exit_ip": "37.120.244.100" + "exit_ip": [ + "37.120.244.100" + ] }, { "country": "United States", @@ -98860,7 +94986,9 @@ "name": "CH-US#1", "hostname": "ch-us-02e.protonvpn.com", "entry_ip": "185.159.157.162", - "exit_ip": "69.36.160.152" + "exit_ip": [ + "69.36.160.152" + ] }, { "country": "United States", @@ -98869,7 +94997,9 @@ "name": "CH-US#1", "hostname": "ch-us-02f.protonvpn.com", "entry_ip": "185.159.157.163", - "exit_ip": "173.244.209.80" + "exit_ip": [ + "173.244.209.80" + ] }, { "country": "United States", @@ -98878,7 +95008,9 @@ "name": "CH-US#1", "hostname": "ch-us-02g.protonvpn.com", "entry_ip": "185.159.157.164", - "exit_ip": "173.244.209.62" + "exit_ip": [ + "173.244.209.62" + ] }, { "country": "United States", @@ -98887,7 +95019,9 @@ "name": "IS-US#1", "hostname": "is-us-01a.protonvpn.com", "entry_ip": "185.159.158.150", - "exit_ip": "89.187.164.243" + "exit_ip": [ + "89.187.164.243" + ] }, { "country": "United States", @@ -98896,7 +95030,9 @@ "name": "IS-US#1", "hostname": "is-us-01b.protonvpn.com", "entry_ip": "185.159.158.52", - "exit_ip": "162.210.192.159" + "exit_ip": [ + "162.210.192.159" + ] }, { "country": "United States", @@ -98905,7 +95041,9 @@ "name": "IS-US#1", "hostname": "is-us-01e.protonvpn.com", "entry_ip": "185.159.158.133", - "exit_ip": "108.62.49.152" + "exit_ip": [ + "108.62.49.152" + ] }, { "country": "United States", @@ -98914,7 +95052,9 @@ "name": "IS-US#1", "hostname": "is-us-01f.protonvpn.com", "entry_ip": "185.159.158.151", - "exit_ip": "89.187.164.248" + "exit_ip": [ + "89.187.164.248" + ] }, { "country": "United States", @@ -98923,7 +95063,9 @@ "name": "IS-US#1", "hostname": "is-us-01g.protonvpn.com", "entry_ip": "185.159.158.158", - "exit_ip": "91.219.212.228" + "exit_ip": [ + "91.219.212.228" + ] }, { "country": "United States", @@ -98932,7 +95074,9 @@ "name": "IS-US#1", "hostname": "is-us-01h.protonvpn.com", "entry_ip": "185.159.158.159", - "exit_ip": "91.219.212.220" + "exit_ip": [ + "91.219.212.220" + ] }, { "country": "United States", @@ -98941,7 +95085,9 @@ "name": "IS-US#1", "hostname": "is-us-01i.protonvpn.com", "entry_ip": "185.159.158.160", - "exit_ip": "91.219.212.212" + "exit_ip": [ + "91.219.212.212" + ] }, { "country": "United States", @@ -98950,7 +95096,9 @@ "name": "IS-US#1", "hostname": "is-us-01j.protonvpn.com", "entry_ip": "185.159.158.161", - "exit_ip": "91.219.212.204" + "exit_ip": [ + "91.219.212.204" + ] }, { "country": "United States", @@ -98959,7 +95107,9 @@ "name": "IS-US#1", "hostname": "is-us-01k.protonvpn.com", "entry_ip": "185.159.158.162", - "exit_ip": "89.38.227.140" + "exit_ip": [ + "89.38.227.140" + ] }, { "country": "United States", @@ -98968,7 +95118,9 @@ "name": "IS-US#1", "hostname": "is-us-01l.protonvpn.com", "entry_ip": "185.159.158.163", - "exit_ip": "193.27.12.252" + "exit_ip": [ + "193.27.12.252" + ] }, { "country": "United States", @@ -98977,7 +95129,9 @@ "name": "IS-US#1", "hostname": "is-us-01m.protonvpn.com", "entry_ip": "185.159.158.167", - "exit_ip": "207.244.102.201" + "exit_ip": [ + "207.244.102.201" + ] }, { "country": "United States", @@ -98986,7 +95140,9 @@ "name": "IS-US#1", "hostname": "is-us-01n.protonvpn.com", "entry_ip": "185.159.158.168", - "exit_ip": "173.208.98.184" + "exit_ip": [ + "173.208.98.184" + ] }, { "country": "United States", @@ -98995,7 +95151,9 @@ "name": "IS-US#1", "hostname": "is-us-01o.protonvpn.com", "entry_ip": "185.159.158.169", - "exit_ip": "142.234.80.87" + "exit_ip": [ + "142.234.80.87" + ] }, { "country": "United States", @@ -99004,7 +95162,9 @@ "name": "IS-US#1", "hostname": "is-us-01p.protonvpn.com", "entry_ip": "185.159.158.170", - "exit_ip": "23.81.234.42" + "exit_ip": [ + "23.81.234.42" + ] }, { "country": "United States", @@ -99013,7 +95173,9 @@ "name": "SE-US#1", "hostname": "se-us-01a.protonvpn.com", "entry_ip": "185.159.156.54", - "exit_ip": "84.17.63.12" + "exit_ip": [ + "84.17.63.12" + ] }, { "country": "United States", @@ -99022,7 +95184,9 @@ "name": "SE-US#1", "hostname": "se-us-01b.protonvpn.com", "entry_ip": "185.159.156.57", - "exit_ip": "89.187.171.243" + "exit_ip": [ + "89.187.171.243" + ] }, { "country": "United States", @@ -99031,7 +95195,9 @@ "name": "SE-US#1", "hostname": "se-us-01c.protonvpn.com", "entry_ip": "185.159.156.61", - "exit_ip": "45.87.214.198" + "exit_ip": [ + "45.87.214.198" + ] }, { "country": "United States", @@ -99040,7 +95206,9 @@ "name": "SE-US#1", "hostname": "se-us-01d.protonvpn.com", "entry_ip": "185.159.156.62", - "exit_ip": "45.87.214.214" + "exit_ip": [ + "45.87.214.214" + ] }, { "country": "United States", @@ -99049,7 +95217,9 @@ "name": "SE-US#1", "hostname": "se-us-01e.protonvpn.com", "entry_ip": "185.159.156.63", - "exit_ip": "185.230.126.22" + "exit_ip": [ + "185.230.126.22" + ] }, { "country": "United States", @@ -99058,7 +95228,9 @@ "name": "SE-US#1", "hostname": "se-us-01f.protonvpn.com", "entry_ip": "185.159.156.64", - "exit_ip": "185.230.126.150" + "exit_ip": [ + "185.230.126.150" + ] }, { "country": "United States", @@ -99067,7 +95239,9 @@ "name": "SE-US#1", "hostname": "se-us-01g.protonvpn.com", "entry_ip": "185.159.156.66", - "exit_ip": "193.148.18.86" + "exit_ip": [ + "193.148.18.86" + ] }, { "country": "United States", @@ -99076,7 +95250,9 @@ "name": "SE-US#1", "hostname": "se-us-01h.protonvpn.com", "entry_ip": "185.159.156.67", - "exit_ip": "193.148.18.102" + "exit_ip": [ + "193.148.18.102" + ] }, { "country": "United States", @@ -99085,7 +95261,9 @@ "name": "SE-US#1", "hostname": "se-us-01i.protonvpn.com", "entry_ip": "185.159.156.69", - "exit_ip": "89.187.170.163" + "exit_ip": [ + "89.187.170.163" + ] }, { "country": "United States", @@ -99094,7 +95272,9 @@ "name": "SE-US#1", "hostname": "se-us-01j.protonvpn.com", "entry_ip": "185.159.156.70", - "exit_ip": "84.17.63.56" + "exit_ip": [ + "84.17.63.56" + ] }, { "country": "United States", @@ -99103,7 +95283,9 @@ "name": "SE-US#1", "hostname": "se-us-01k.protonvpn.com", "entry_ip": "185.159.156.71", - "exit_ip": "89.187.175.137" + "exit_ip": [ + "89.187.175.137" + ] }, { "country": "United States", @@ -99112,7 +95294,9 @@ "name": "SE-US#1", "hostname": "se-us-01m.protonvpn.com", "entry_ip": "185.159.156.78", - "exit_ip": "45.87.214.100" + "exit_ip": [ + "45.87.214.100" + ] }, { "country": "United States", @@ -99121,34 +95305,12 @@ "name": "US-FREE#1", "hostname": "lxc-us-04.protonvpn.com", "entry_ip": "108.59.0.14", - "exit_ip": "108.59.0.37" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#1", - "hostname": "lxc-us-04.protonvpn.com", - "entry_ip": "108.59.0.14", - "exit_ip": "108.59.0.40" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#1", - "hostname": "lxc-us-04.protonvpn.com", - "entry_ip": "108.59.0.14", - "exit_ip": "108.59.0.38" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#1", - "hostname": "lxc-us-04.protonvpn.com", - "entry_ip": "108.59.0.14", - "exit_ip": "108.59.0.39" + "exit_ip": [ + "108.59.0.37", + "108.59.0.38", + "108.59.0.39", + "108.59.0.40" + ] }, { "country": "United States", @@ -99157,34 +95319,26 @@ "name": "US-FREE#1", "hostname": "lxc-us-05.protonvpn.com", "entry_ip": "192.96.203.86", - "exit_ip": "192.96.203.69" + "exit_ip": [ + "192.96.203.69", + "192.96.203.70", + "192.96.203.71", + "192.96.203.72" + ] }, { "country": "United States", "region": "", "city": "", "name": "US-FREE#1", - "hostname": "lxc-us-05.protonvpn.com", - "entry_ip": "192.96.203.86", - "exit_ip": "192.96.203.70" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#1", - "hostname": "lxc-us-05.protonvpn.com", - "entry_ip": "192.96.203.86", - "exit_ip": "192.96.203.71" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#1", - "hostname": "lxc-us-05.protonvpn.com", - "entry_ip": "192.96.203.86", - "exit_ip": "192.96.203.72" + "hostname": "lxc-us-06.protonvpn.com", + "entry_ip": "199.115.115.80", + "exit_ip": [ + "207.244.109.179", + "207.244.109.180", + "207.244.109.181", + "207.244.109.182" + ] }, { "country": "United States", @@ -99193,34 +95347,12 @@ "name": "US-FREE#2", "hostname": "lxc-us-55.protonvpn.com", "entry_ip": "45.87.214.114", - "exit_ip": "45.87.214.117" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#2", - "hostname": "lxc-us-55.protonvpn.com", - "entry_ip": "45.87.214.114", - "exit_ip": "45.87.214.118" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#2", - "hostname": "lxc-us-55.protonvpn.com", - "entry_ip": "45.87.214.114", - "exit_ip": "45.87.214.115" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#2", - "hostname": "lxc-us-55.protonvpn.com", - "entry_ip": "45.87.214.114", - "exit_ip": "45.87.214.116" + "exit_ip": [ + "45.87.214.115", + "45.87.214.116", + "45.87.214.117", + "45.87.214.118" + ] }, { "country": "United States", @@ -99229,34 +95361,12 @@ "name": "US-FREE#2", "hostname": "lxc-us-61.protonvpn.com", "entry_ip": "84.17.45.156", - "exit_ip": "84.17.45.160" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#2", - "hostname": "lxc-us-61.protonvpn.com", - "entry_ip": "84.17.45.156", - "exit_ip": "84.17.45.158" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#2", - "hostname": "lxc-us-61.protonvpn.com", - "entry_ip": "84.17.45.156", - "exit_ip": "84.17.45.157" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#2", - "hostname": "lxc-us-61.protonvpn.com", - "entry_ip": "84.17.45.156", - "exit_ip": "84.17.45.159" + "exit_ip": [ + "84.17.45.157", + "84.17.45.158", + "84.17.45.159", + "84.17.45.160" + ] }, { "country": "United States", @@ -99265,34 +95375,12 @@ "name": "US-FREE#2", "hostname": "lxc-us-72.protonvpn.com", "entry_ip": "89.187.185.161", - "exit_ip": "89.187.185.185" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#2", - "hostname": "lxc-us-72.protonvpn.com", - "entry_ip": "89.187.185.161", - "exit_ip": "89.187.185.165" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#2", - "hostname": "lxc-us-72.protonvpn.com", - "entry_ip": "89.187.185.161", - "exit_ip": "89.187.185.171" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#2", - "hostname": "lxc-us-72.protonvpn.com", - "entry_ip": "89.187.185.161", - "exit_ip": "89.187.185.184" + "exit_ip": [ + "89.187.185.165", + "89.187.185.171", + "89.187.185.184", + "89.187.185.185" + ] }, { "country": "United States", @@ -99301,34 +95389,12 @@ "name": "US-FREE#2", "hostname": "lxc-us-91.protonvpn.com", "entry_ip": "45.87.214.106", - "exit_ip": "45.87.214.110" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#2", - "hostname": "lxc-us-91.protonvpn.com", - "entry_ip": "45.87.214.106", - "exit_ip": "45.87.214.107" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#2", - "hostname": "lxc-us-91.protonvpn.com", - "entry_ip": "45.87.214.106", - "exit_ip": "45.87.214.108" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#2", - "hostname": "lxc-us-91.protonvpn.com", - "entry_ip": "45.87.214.106", - "exit_ip": "45.87.214.109" + "exit_ip": [ + "45.87.214.107", + "45.87.214.108", + "45.87.214.109", + "45.87.214.110" + ] }, { "country": "United States", @@ -99337,70 +95403,12 @@ "name": "US-FREE#3", "hostname": "lxc-us-56.protonvpn.com", "entry_ip": "89.187.171.225", - "exit_ip": "89.187.171.229" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#3", - "hostname": "lxc-us-56.protonvpn.com", - "entry_ip": "89.187.171.225", - "exit_ip": "89.187.171.228" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#3", - "hostname": "lxc-us-56.protonvpn.com", - "entry_ip": "89.187.171.225", - "exit_ip": "89.187.171.226" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#3", - "hostname": "lxc-us-56.protonvpn.com", - "entry_ip": "89.187.171.225", - "exit_ip": "89.187.171.227" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#3", - "hostname": "lxc-us-60.protonvpn.com", - "entry_ip": "195.181.163.1", - "exit_ip": "195.181.163.32" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#3", - "hostname": "lxc-us-60.protonvpn.com", - "entry_ip": "195.181.163.1", - "exit_ip": "195.181.163.29" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#3", - "hostname": "lxc-us-60.protonvpn.com", - "entry_ip": "195.181.163.1", - "exit_ip": "195.181.163.28" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#3", - "hostname": "lxc-us-60.protonvpn.com", - "entry_ip": "195.181.163.1", - "exit_ip": "195.181.163.8" + "exit_ip": [ + "89.187.171.226", + "89.187.171.227", + "89.187.171.228", + "89.187.171.229" + ] }, { "country": "United States", @@ -99409,34 +95417,12 @@ "name": "US-FREE#3", "hostname": "lxc-us-70.protonvpn.com", "entry_ip": "89.187.170.159", - "exit_ip": "89.187.170.169" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#3", - "hostname": "lxc-us-70.protonvpn.com", - "entry_ip": "89.187.170.159", - "exit_ip": "89.187.170.168" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#3", - "hostname": "lxc-us-70.protonvpn.com", - "entry_ip": "89.187.170.159", - "exit_ip": "89.187.170.167" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#3", - "hostname": "lxc-us-70.protonvpn.com", - "entry_ip": "89.187.170.159", - "exit_ip": "89.187.170.165" + "exit_ip": [ + "89.187.170.165", + "89.187.170.167", + "89.187.170.168", + "89.187.170.169" + ] }, { "country": "United States", @@ -99445,34 +95431,12 @@ "name": "US-FREE#3", "hostname": "lxc-us-73.protonvpn.com", "entry_ip": "195.181.162.163", - "exit_ip": "195.181.162.179" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#3", - "hostname": "lxc-us-73.protonvpn.com", - "entry_ip": "195.181.162.163", - "exit_ip": "195.181.162.180" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#3", - "hostname": "lxc-us-73.protonvpn.com", - "entry_ip": "195.181.162.163", - "exit_ip": "195.181.162.186" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#3", - "hostname": "lxc-us-73.protonvpn.com", - "entry_ip": "195.181.162.163", - "exit_ip": "195.181.162.175" + "exit_ip": [ + "195.181.162.175", + "195.181.162.179", + "195.181.162.180", + "195.181.162.186" + ] }, { "country": "United States", @@ -99481,34 +95445,12 @@ "name": "US-FREE#4", "hostname": "lxc-us-36.protonvpn.com", "entry_ip": "172.83.43.130", - "exit_ip": "172.83.43.132" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#4", - "hostname": "lxc-us-36.protonvpn.com", - "entry_ip": "172.83.43.130", - "exit_ip": "172.83.43.131" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#4", - "hostname": "lxc-us-36.protonvpn.com", - "entry_ip": "172.83.43.130", - "exit_ip": "172.83.43.133" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#4", - "hostname": "lxc-us-36.protonvpn.com", - "entry_ip": "172.83.43.130", - "exit_ip": "172.83.43.134" + "exit_ip": [ + "172.83.43.131", + "172.83.43.132", + "172.83.43.133", + "172.83.43.134" + ] }, { "country": "United States", @@ -99517,34 +95459,12 @@ "name": "US-FREE#4", "hostname": "lxc-us-47.protonvpn.com", "entry_ip": "45.89.173.194", - "exit_ip": "45.89.173.195" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#4", - "hostname": "lxc-us-47.protonvpn.com", - "entry_ip": "45.89.173.194", - "exit_ip": "45.89.173.198" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#4", - "hostname": "lxc-us-47.protonvpn.com", - "entry_ip": "45.89.173.194", - "exit_ip": "45.89.173.197" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#4", - "hostname": "lxc-us-47.protonvpn.com", - "entry_ip": "45.89.173.194", - "exit_ip": "45.89.173.196" + "exit_ip": [ + "45.89.173.195", + "45.89.173.196", + "45.89.173.197", + "45.89.173.198" + ] }, { "country": "United States", @@ -99553,34 +95473,12 @@ "name": "US-FREE#4", "hostname": "lxc-us-81.protonvpn.com", "entry_ip": "185.230.126.2", - "exit_ip": "185.230.126.3" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#4", - "hostname": "lxc-us-81.protonvpn.com", - "entry_ip": "185.230.126.2", - "exit_ip": "185.230.126.6" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#4", - "hostname": "lxc-us-81.protonvpn.com", - "entry_ip": "185.230.126.2", - "exit_ip": "185.230.126.4" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#4", - "hostname": "lxc-us-81.protonvpn.com", - "entry_ip": "185.230.126.2", - "exit_ip": "185.230.126.5" + "exit_ip": [ + "185.230.126.3", + "185.230.126.4", + "185.230.126.5", + "185.230.126.6" + ] }, { "country": "United States", @@ -99589,34 +95487,12 @@ "name": "US-FREE#4", "hostname": "lxc-us-86.protonvpn.com", "entry_ip": "162.253.68.114", - "exit_ip": "162.253.68.115" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#4", - "hostname": "lxc-us-86.protonvpn.com", - "entry_ip": "162.253.68.114", - "exit_ip": "162.253.68.116" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#4", - "hostname": "lxc-us-86.protonvpn.com", - "entry_ip": "162.253.68.114", - "exit_ip": "162.253.68.117" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#4", - "hostname": "lxc-us-86.protonvpn.com", - "entry_ip": "162.253.68.114", - "exit_ip": "162.253.68.118" + "exit_ip": [ + "162.253.68.115", + "162.253.68.116", + "162.253.68.117", + "162.253.68.118" + ] }, { "country": "United States", @@ -99625,34 +95501,12 @@ "name": "US-FREE#5", "hostname": "lxc-us-45.protonvpn.com", "entry_ip": "217.138.206.82", - "exit_ip": "217.138.206.84" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#5", - "hostname": "lxc-us-45.protonvpn.com", - "entry_ip": "217.138.206.82", - "exit_ip": "217.138.206.86" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#5", - "hostname": "lxc-us-45.protonvpn.com", - "entry_ip": "217.138.206.82", - "exit_ip": "217.138.206.83" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#5", - "hostname": "lxc-us-45.protonvpn.com", - "entry_ip": "217.138.206.82", - "exit_ip": "217.138.206.85" + "exit_ip": [ + "217.138.206.83", + "217.138.206.84", + "217.138.206.85", + "217.138.206.86" + ] }, { "country": "United States", @@ -99661,34 +95515,12 @@ "name": "US-FREE#5", "hostname": "lxc-us-54.protonvpn.com", "entry_ip": "38.132.103.146", - "exit_ip": "38.132.103.150" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#5", - "hostname": "lxc-us-54.protonvpn.com", - "entry_ip": "38.132.103.146", - "exit_ip": "38.132.103.149" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#5", - "hostname": "lxc-us-54.protonvpn.com", - "entry_ip": "38.132.103.146", - "exit_ip": "38.132.103.148" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#5", - "hostname": "lxc-us-54.protonvpn.com", - "entry_ip": "38.132.103.146", - "exit_ip": "38.132.103.147" + "exit_ip": [ + "38.132.103.147", + "38.132.103.148", + "38.132.103.149", + "38.132.103.150" + ] }, { "country": "United States", @@ -99697,34 +95529,12 @@ "name": "US-FREE#5", "hostname": "lxc-us-76.protonvpn.com", "entry_ip": "193.148.18.58", - "exit_ip": "193.148.18.62" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#5", - "hostname": "lxc-us-76.protonvpn.com", - "entry_ip": "193.148.18.58", - "exit_ip": "193.148.18.61" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#5", - "hostname": "lxc-us-76.protonvpn.com", - "entry_ip": "193.148.18.58", - "exit_ip": "193.148.18.59" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#5", - "hostname": "lxc-us-76.protonvpn.com", - "entry_ip": "193.148.18.58", - "exit_ip": "193.148.18.60" + "exit_ip": [ + "193.148.18.59", + "193.148.18.60", + "193.148.18.61", + "193.148.18.62" + ] }, { "country": "United States", @@ -99733,34 +95543,12 @@ "name": "US-FREE#5", "hostname": "lxc-us-78.protonvpn.com", "entry_ip": "193.148.18.74", - "exit_ip": "193.148.18.76" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#5", - "hostname": "lxc-us-78.protonvpn.com", - "entry_ip": "193.148.18.74", - "exit_ip": "193.148.18.77" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#5", - "hostname": "lxc-us-78.protonvpn.com", - "entry_ip": "193.148.18.74", - "exit_ip": "193.148.18.75" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#5", - "hostname": "lxc-us-78.protonvpn.com", - "entry_ip": "193.148.18.74", - "exit_ip": "193.148.18.78" + "exit_ip": [ + "193.148.18.75", + "193.148.18.76", + "193.148.18.77", + "193.148.18.78" + ] }, { "country": "United States", @@ -99769,34 +95557,12 @@ "name": "US-FREE#6", "hostname": "lxc-us-117.protonvpn.com", "entry_ip": "209.58.147.18", - "exit_ip": "209.58.150.235" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#6", - "hostname": "lxc-us-117.protonvpn.com", - "entry_ip": "209.58.147.18", - "exit_ip": "209.58.150.238" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#6", - "hostname": "lxc-us-117.protonvpn.com", - "entry_ip": "209.58.147.18", - "exit_ip": "209.58.150.237" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#6", - "hostname": "lxc-us-117.protonvpn.com", - "entry_ip": "209.58.147.18", - "exit_ip": "209.58.150.236" + "exit_ip": [ + "209.58.150.235", + "209.58.150.236", + "209.58.150.237", + "209.58.150.238" + ] }, { "country": "United States", @@ -99805,34 +95571,12 @@ "name": "US-FREE#6", "hostname": "lxc-us-14.protonvpn.com", "entry_ip": "209.58.147.203", - "exit_ip": "209.58.147.242" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#6", - "hostname": "lxc-us-14.protonvpn.com", - "entry_ip": "209.58.147.203", - "exit_ip": "209.58.147.245" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#6", - "hostname": "lxc-us-14.protonvpn.com", - "entry_ip": "209.58.147.203", - "exit_ip": "209.58.147.244" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#6", - "hostname": "lxc-us-14.protonvpn.com", - "entry_ip": "209.58.147.203", - "exit_ip": "209.58.147.243" + "exit_ip": [ + "209.58.147.242", + "209.58.147.243", + "209.58.147.244", + "209.58.147.245" + ] }, { "country": "United States", @@ -99841,34 +95585,12 @@ "name": "US-FREE#7", "hostname": "lxc-us-62.protonvpn.com", "entry_ip": "89.187.179.55", - "exit_ip": "89.187.179.58" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#7", - "hostname": "lxc-us-62.protonvpn.com", - "entry_ip": "89.187.179.55", - "exit_ip": "89.187.179.56" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#7", - "hostname": "lxc-us-62.protonvpn.com", - "entry_ip": "89.187.179.55", - "exit_ip": "89.187.179.57" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#7", - "hostname": "lxc-us-62.protonvpn.com", - "entry_ip": "89.187.179.55", - "exit_ip": "89.187.179.59" + "exit_ip": [ + "89.187.179.56", + "89.187.179.57", + "89.187.179.58", + "89.187.179.59" + ] }, { "country": "United States", @@ -99877,34 +95599,12 @@ "name": "US-FREE#7", "hostname": "lxc-us-71.protonvpn.com", "entry_ip": "89.187.177.71", - "exit_ip": "89.187.177.75" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#7", - "hostname": "lxc-us-71.protonvpn.com", - "entry_ip": "89.187.177.71", - "exit_ip": "89.187.177.72" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#7", - "hostname": "lxc-us-71.protonvpn.com", - "entry_ip": "89.187.177.71", - "exit_ip": "89.187.177.73" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#7", - "hostname": "lxc-us-71.protonvpn.com", - "entry_ip": "89.187.177.71", - "exit_ip": "89.187.177.74" + "exit_ip": [ + "89.187.177.72", + "89.187.177.73", + "89.187.177.74", + "89.187.177.75" + ] }, { "country": "United States", @@ -99913,34 +95613,12 @@ "name": "US-FREE#8", "hostname": "lxc-us-07.protonvpn.com", "entry_ip": "209.58.142.133", - "exit_ip": "209.58.142.154" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#8", - "hostname": "lxc-us-07.protonvpn.com", - "entry_ip": "209.58.142.133", - "exit_ip": "209.58.142.156" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#8", - "hostname": "lxc-us-07.protonvpn.com", - "entry_ip": "209.58.142.133", - "exit_ip": "209.58.142.157" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#8", - "hostname": "lxc-us-07.protonvpn.com", - "entry_ip": "209.58.142.133", - "exit_ip": "209.58.142.155" + "exit_ip": [ + "209.58.142.154", + "209.58.142.155", + "209.58.142.156", + "209.58.142.157" + ] }, { "country": "United States", @@ -99949,34 +95627,12 @@ "name": "US-FREE#8", "hostname": "lxc-us-08.protonvpn.com", "entry_ip": "209.58.142.134", - "exit_ip": "209.58.142.161" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#8", - "hostname": "lxc-us-08.protonvpn.com", - "entry_ip": "209.58.142.134", - "exit_ip": "209.58.142.160" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#8", - "hostname": "lxc-us-08.protonvpn.com", - "entry_ip": "209.58.142.134", - "exit_ip": "209.58.142.158" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#8", - "hostname": "lxc-us-08.protonvpn.com", - "entry_ip": "209.58.142.134", - "exit_ip": "209.58.142.159" + "exit_ip": [ + "209.58.142.158", + "209.58.142.159", + "209.58.142.160", + "209.58.142.161" + ] }, { "country": "United States", @@ -99985,34 +95641,12 @@ "name": "US-FREE#9", "hostname": "lxc-us-39.protonvpn.com", "entry_ip": "74.119.146.34", - "exit_ip": "74.119.146.36" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#9", - "hostname": "lxc-us-39.protonvpn.com", - "entry_ip": "74.119.146.34", - "exit_ip": "74.119.146.37" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#9", - "hostname": "lxc-us-39.protonvpn.com", - "entry_ip": "74.119.146.34", - "exit_ip": "74.119.146.38" - }, - { - "country": "United States", - "region": "", - "city": "", - "name": "US-FREE#9", - "hostname": "lxc-us-39.protonvpn.com", - "entry_ip": "74.119.146.34", - "exit_ip": "74.119.146.35" + "exit_ip": [ + "74.119.146.35", + "74.119.146.36", + "74.119.146.37", + "74.119.146.38" + ] }, { "country": "United States", @@ -100021,7 +95655,12 @@ "name": "US-GA#1", "hostname": "lxc-us-33.protonvpn.com", "entry_ip": "66.115.173.162", - "exit_ip": "66.115.173.163" + "exit_ip": [ + "66.115.173.163", + "66.115.173.164", + "66.115.173.165", + "66.115.173.166" + ] }, { "country": "United States", @@ -100030,25 +95669,11 @@ "name": "US-GA#13", "hostname": "us-ga-13.protonvpn.net", "entry_ip": "89.187.171.240", - "exit_ip": "89.187.171.240" - }, - { - "country": "United States", - "region": "", - "city": "Atlanta", - "name": "US-GA#14", - "hostname": "us-ga-13.protonvpn.net", - "entry_ip": "89.187.171.240", - "exit_ip": "89.187.171.241" - }, - { - "country": "United States", - "region": "", - "city": "Atlanta", - "name": "US-GA#15", - "hostname": "us-ga-13.protonvpn.net", - "entry_ip": "89.187.171.240", - "exit_ip": "89.187.171.242" + "exit_ip": [ + "89.187.171.240", + "89.187.171.241", + "89.187.171.242" + ] }, { "country": "United States", @@ -100057,52 +95682,13 @@ "name": "US-GA#16", "hostname": "node-us-59.protonvpn.net", "entry_ip": "89.187.171.239", - "exit_ip": "89.187.171.243" - }, - { - "country": "United States", - "region": "", - "city": "Atlanta", - "name": "US-GA#17", - "hostname": "node-us-59.protonvpn.net", - "entry_ip": "89.187.171.239", - "exit_ip": "89.187.171.244" - }, - { - "country": "United States", - "region": "", - "city": "Atlanta", - "name": "US-GA#18", - "hostname": "node-us-59.protonvpn.net", - "entry_ip": "89.187.171.239", - "exit_ip": "89.187.171.245" - }, - { - "country": "United States", - "region": "", - "city": "Atlanta", - "name": "US-GA#19", - "hostname": "node-us-59.protonvpn.net", - "entry_ip": "89.187.171.239", - "exit_ip": "89.187.171.246" - }, - { - "country": "United States", - "region": "", - "city": "Atlanta", - "name": "US-GA#2", - "hostname": "lxc-us-33.protonvpn.com", - "entry_ip": "66.115.173.162", - "exit_ip": "66.115.173.164" - }, - { - "country": "United States", - "region": "", - "city": "Atlanta", - "name": "US-GA#20", - "hostname": "node-us-59.protonvpn.net", - "entry_ip": "89.187.171.239", - "exit_ip": "89.187.171.247" + "exit_ip": [ + "89.187.171.243", + "89.187.171.244", + "89.187.171.245", + "89.187.171.246", + "89.187.171.247" + ] }, { "country": "United States", @@ -100111,7 +95697,9 @@ "name": "US-GA#21", "hostname": "us-ga-21.protonvpn.net", "entry_ip": "89.187.170.158", - "exit_ip": "89.187.170.158" + "exit_ip": [ + "89.187.170.158" + ] }, { "country": "United States", @@ -100120,25 +95708,11 @@ "name": "US-GA#22", "hostname": "node-us-69.protonvpn.net", "entry_ip": "89.187.170.135", - "exit_ip": "89.187.170.163" - }, - { - "country": "United States", - "region": "", - "city": "Atlanta", - "name": "US-GA#23", - "hostname": "node-us-69.protonvpn.net", - "entry_ip": "89.187.170.135", - "exit_ip": "89.187.170.164" - }, - { - "country": "United States", - "region": "", - "city": "Atlanta", - "name": "US-GA#24", - "hostname": "node-us-69.protonvpn.net", - "entry_ip": "89.187.170.135", - "exit_ip": "89.187.170.166" + "exit_ip": [ + "89.187.170.163", + "89.187.170.164", + "89.187.170.166" + ] }, { "country": "United States", @@ -100147,52 +95721,12 @@ "name": "US-GA#25", "hostname": "lxc-us-84.protonvpn.com", "entry_ip": "66.115.180.194", - "exit_ip": "66.115.180.195" - }, - { - "country": "United States", - "region": "", - "city": "Atlanta", - "name": "US-GA#26", - "hostname": "lxc-us-84.protonvpn.com", - "entry_ip": "66.115.180.194", - "exit_ip": "66.115.180.196" - }, - { - "country": "United States", - "region": "", - "city": "Atlanta", - "name": "US-GA#27", - "hostname": "lxc-us-84.protonvpn.com", - "entry_ip": "66.115.180.194", - "exit_ip": "66.115.180.197" - }, - { - "country": "United States", - "region": "", - "city": "Atlanta", - "name": "US-GA#28", - "hostname": "lxc-us-84.protonvpn.com", - "entry_ip": "66.115.180.194", - "exit_ip": "66.115.180.198" - }, - { - "country": "United States", - "region": "", - "city": "Atlanta", - "name": "US-GA#3", - "hostname": "lxc-us-33.protonvpn.com", - "entry_ip": "66.115.173.162", - "exit_ip": "66.115.173.165" - }, - { - "country": "United States", - "region": "", - "city": "Atlanta", - "name": "US-GA#4", - "hostname": "lxc-us-33.protonvpn.com", - "entry_ip": "66.115.173.162", - "exit_ip": "66.115.173.166" + "exit_ip": [ + "66.115.180.195", + "66.115.180.196", + "66.115.180.197", + "66.115.180.198" + ] }, { "country": "United States", @@ -100201,25 +95735,11 @@ "name": "US-IL#17", "hostname": "us-il-17.protonvpn.com", "entry_ip": "173.0.77.3", - "exit_ip": "173.0.77.3" - }, - { - "country": "United States", - "region": "", - "city": "Chicago", - "name": "US-IL#18", - "hostname": "us-il-17.protonvpn.com", - "entry_ip": "173.0.77.3", - "exit_ip": "173.0.77.4" - }, - { - "country": "United States", - "region": "", - "city": "Chicago", - "name": "US-IL#19", - "hostname": "us-il-17.protonvpn.com", - "entry_ip": "173.0.77.3", - "exit_ip": "173.0.77.5" + "exit_ip": [ + "173.0.77.3", + "173.0.77.4", + "173.0.77.5" + ] }, { "country": "United States", @@ -100228,43 +95748,13 @@ "name": "US-IL#20", "hostname": "lxc-us-52.protonvpn.com", "entry_ip": "173.0.77.2", - "exit_ip": "173.0.77.6" - }, - { - "country": "United States", - "region": "", - "city": "Chicago", - "name": "US-IL#21", - "hostname": "lxc-us-52.protonvpn.com", - "entry_ip": "173.0.77.2", - "exit_ip": "173.0.77.7" - }, - { - "country": "United States", - "region": "", - "city": "Chicago", - "name": "US-IL#22", - "hostname": "lxc-us-52.protonvpn.com", - "entry_ip": "173.0.77.2", - "exit_ip": "173.0.77.8" - }, - { - "country": "United States", - "region": "", - "city": "Chicago", - "name": "US-IL#23", - "hostname": "lxc-us-52.protonvpn.com", - "entry_ip": "173.0.77.2", - "exit_ip": "173.0.77.9" - }, - { - "country": "United States", - "region": "", - "city": "Chicago", - "name": "US-IL#24", - "hostname": "lxc-us-52.protonvpn.com", - "entry_ip": "173.0.77.2", - "exit_ip": "173.0.77.10" + "exit_ip": [ + "173.0.77.6", + "173.0.77.7", + "173.0.77.8", + "173.0.77.9", + "173.0.77.10" + ] }, { "country": "United States", @@ -100273,25 +95763,11 @@ "name": "US-IL#25", "hostname": "us-il-25.protonvpn.com", "entry_ip": "173.0.77.12", - "exit_ip": "173.0.77.12" - }, - { - "country": "United States", - "region": "", - "city": "Chicago", - "name": "US-IL#26", - "hostname": "us-il-25.protonvpn.com", - "entry_ip": "173.0.77.12", - "exit_ip": "173.0.77.13" - }, - { - "country": "United States", - "region": "", - "city": "Chicago", - "name": "US-IL#27", - "hostname": "us-il-25.protonvpn.com", - "entry_ip": "173.0.77.12", - "exit_ip": "173.0.77.14" + "exit_ip": [ + "173.0.77.12", + "173.0.77.13", + "173.0.77.14" + ] }, { "country": "United States", @@ -100300,43 +95776,13 @@ "name": "US-IL#28", "hostname": "lxc-us-53.protonvpn.com", "entry_ip": "173.0.77.11", - "exit_ip": "173.0.77.15" - }, - { - "country": "United States", - "region": "", - "city": "Chicago", - "name": "US-IL#29", - "hostname": "lxc-us-53.protonvpn.com", - "entry_ip": "173.0.77.11", - "exit_ip": "173.0.77.16" - }, - { - "country": "United States", - "region": "", - "city": "Chicago", - "name": "US-IL#30", - "hostname": "lxc-us-53.protonvpn.com", - "entry_ip": "173.0.77.11", - "exit_ip": "173.0.77.17" - }, - { - "country": "United States", - "region": "", - "city": "Chicago", - "name": "US-IL#31", - "hostname": "lxc-us-53.protonvpn.com", - "entry_ip": "173.0.77.11", - "exit_ip": "173.0.77.18" - }, - { - "country": "United States", - "region": "", - "city": "Chicago", - "name": "US-IL#32", - "hostname": "lxc-us-53.protonvpn.com", - "entry_ip": "173.0.77.11", - "exit_ip": "173.0.77.19" + "exit_ip": [ + "173.0.77.15", + "173.0.77.16", + "173.0.77.17", + "173.0.77.18", + "173.0.77.19" + ] }, { "country": "United States", @@ -100345,34 +95791,12 @@ "name": "US-IL#33", "hostname": "lxc-us-87.protonvpn.com", "entry_ip": "173.0.77.82", - "exit_ip": "173.0.77.83" - }, - { - "country": "United States", - "region": "", - "city": "Chicago", - "name": "US-IL#34", - "hostname": "lxc-us-87.protonvpn.com", - "entry_ip": "173.0.77.82", - "exit_ip": "173.0.77.84" - }, - { - "country": "United States", - "region": "", - "city": "Chicago", - "name": "US-IL#35", - "hostname": "lxc-us-87.protonvpn.com", - "entry_ip": "173.0.77.82", - "exit_ip": "173.0.77.85" - }, - { - "country": "United States", - "region": "", - "city": "Chicago", - "name": "US-IL#36", - "hostname": "lxc-us-87.protonvpn.com", - "entry_ip": "173.0.77.82", - "exit_ip": "173.0.77.86" + "exit_ip": [ + "173.0.77.83", + "173.0.77.84", + "173.0.77.85", + "173.0.77.86" + ] }, { "country": "United States", @@ -100381,7 +95805,9 @@ "name": "US-IL#37", "hostname": "us-il-37.protonvpn.net", "entry_ip": "173.0.77.88", - "exit_ip": "173.0.77.88" + "exit_ip": [ + "173.0.77.88" + ] }, { "country": "United States", @@ -100390,25 +95816,11 @@ "name": "US-IL#38", "hostname": "node-us-88.protonvpn.net", "entry_ip": "173.0.77.87", - "exit_ip": "173.0.77.89" - }, - { - "country": "United States", - "region": "", - "city": "Chicago", - "name": "US-IL#39", - "hostname": "node-us-88.protonvpn.net", - "entry_ip": "173.0.77.87", - "exit_ip": "173.0.77.90" - }, - { - "country": "United States", - "region": "", - "city": "Chicago", - "name": "US-IL#40", - "hostname": "node-us-88.protonvpn.net", - "entry_ip": "173.0.77.87", - "exit_ip": "173.0.77.91" + "exit_ip": [ + "173.0.77.89", + "173.0.77.90", + "173.0.77.91" + ] }, { "country": "United States", @@ -100417,7 +95829,9 @@ "name": "US-IL#41", "hostname": "us-il-41.protonvpn.net", "entry_ip": "104.200.145.225", - "exit_ip": "104.200.145.225" + "exit_ip": [ + "104.200.145.225" + ] }, { "country": "United States", @@ -100426,43 +95840,11 @@ "name": "US-IL#42", "hostname": "node-us-89.protonvpn.net", "entry_ip": "173.0.77.92", - "exit_ip": "104.200.145.226" - }, - { - "country": "United States", - "region": "", - "city": "Chicago", - "name": "US-IL#43", - "hostname": "node-us-89.protonvpn.net", - "entry_ip": "173.0.77.92", - "exit_ip": "104.200.145.227" - }, - { - "country": "United States", - "region": "", - "city": "Chicago", - "name": "US-IL#44", - "hostname": "node-us-89.protonvpn.net", - "entry_ip": "173.0.77.92", - "exit_ip": "104.200.145.228" - }, - { - "country": "United States", - "region": "", - "city": "Dallas", - "name": "US-TX#10", - "hostname": "us-tx-09.protonvpn.net", - "entry_ip": "89.187.175.141", - "exit_ip": "89.187.175.145" - }, - { - "country": "United States", - "region": "", - "city": "Dallas", - "name": "US-TX#11", - "hostname": "us-tx-09.protonvpn.net", - "entry_ip": "89.187.175.141", - "exit_ip": "89.187.175.146" + "exit_ip": [ + "104.200.145.226", + "104.200.145.227", + "104.200.145.228" + ] }, { "country": "United States", @@ -100471,43 +95853,13 @@ "name": "US-TX#12", "hostname": "node-us-57.protonvpn.net", "entry_ip": "89.187.175.132", - "exit_ip": "89.187.175.147" - }, - { - "country": "United States", - "region": "", - "city": "Dallas", - "name": "US-TX#13", - "hostname": "node-us-57.protonvpn.net", - "entry_ip": "89.187.175.132", - "exit_ip": "89.187.175.148" - }, - { - "country": "United States", - "region": "", - "city": "Dallas", - "name": "US-TX#14", - "hostname": "node-us-57.protonvpn.net", - "entry_ip": "89.187.175.132", - "exit_ip": "89.187.175.149" - }, - { - "country": "United States", - "region": "", - "city": "Dallas", - "name": "US-TX#15", - "hostname": "node-us-57.protonvpn.net", - "entry_ip": "89.187.175.132", - "exit_ip": "89.187.175.150" - }, - { - "country": "United States", - "region": "", - "city": "Dallas", - "name": "US-TX#16", - "hostname": "node-us-57.protonvpn.net", - "entry_ip": "89.187.175.132", - "exit_ip": "89.187.175.151" + "exit_ip": [ + "89.187.175.147", + "89.187.175.148", + "89.187.175.149", + "89.187.175.150", + "89.187.175.151" + ] }, { "country": "United States", @@ -100516,7 +95868,9 @@ "name": "US-TX#17", "hostname": "us-tx-17.protonvpn.net", "entry_ip": "89.187.175.130", - "exit_ip": "89.187.175.130" + "exit_ip": [ + "89.187.175.130" + ] }, { "country": "United States", @@ -100525,25 +95879,11 @@ "name": "US-TX#18", "hostname": "node-us-75.protonvpn.net", "entry_ip": "89.187.175.129", - "exit_ip": "89.187.175.137" - }, - { - "country": "United States", - "region": "", - "city": "Dallas", - "name": "US-TX#19", - "hostname": "node-us-75.protonvpn.net", - "entry_ip": "89.187.175.129", - "exit_ip": "89.187.175.144" - }, - { - "country": "United States", - "region": "", - "city": "Dallas", - "name": "US-TX#20", - "hostname": "node-us-75.protonvpn.net", - "entry_ip": "89.187.175.129", - "exit_ip": "89.187.175.174" + "exit_ip": [ + "89.187.175.137", + "89.187.175.144", + "89.187.175.174" + ] }, { "country": "United States", @@ -100552,7 +95892,9 @@ "name": "US-TX#21", "hostname": "us-tx-21.protonvpn.com", "entry_ip": "89.187.164.242", - "exit_ip": "89.187.164.242" + "exit_ip": [ + "89.187.164.242" + ] }, { "country": "United States", @@ -100561,25 +95903,11 @@ "name": "US-TX#22", "hostname": "lxc-us-108.protonvpn.com", "entry_ip": "89.187.164.241", - "exit_ip": "89.187.164.243" - }, - { - "country": "United States", - "region": "", - "city": "Dallas", - "name": "US-TX#23", - "hostname": "lxc-us-108.protonvpn.com", - "entry_ip": "89.187.164.241", - "exit_ip": "89.187.164.244" - }, - { - "country": "United States", - "region": "", - "city": "Dallas", - "name": "US-TX#24", - "hostname": "lxc-us-108.protonvpn.com", - "entry_ip": "89.187.164.241", - "exit_ip": "89.187.164.245" + "exit_ip": [ + "89.187.164.243", + "89.187.164.244", + "89.187.164.245" + ] }, { "country": "United States", @@ -100588,7 +95916,9 @@ "name": "US-TX#25", "hostname": "us-tx-25.protonvpn.net", "entry_ip": "89.187.164.247", - "exit_ip": "89.187.164.247" + "exit_ip": [ + "89.187.164.247" + ] }, { "country": "United States", @@ -100597,25 +95927,11 @@ "name": "US-TX#26", "hostname": "node-us-109.protonvpn.net", "entry_ip": "89.187.164.246", - "exit_ip": "89.187.164.248" - }, - { - "country": "United States", - "region": "", - "city": "Dallas", - "name": "US-TX#27", - "hostname": "node-us-109.protonvpn.net", - "entry_ip": "89.187.164.246", - "exit_ip": "89.187.164.249" - }, - { - "country": "United States", - "region": "", - "city": "Dallas", - "name": "US-TX#28", - "hostname": "node-us-109.protonvpn.net", - "entry_ip": "89.187.164.246", - "exit_ip": "89.187.164.250" + "exit_ip": [ + "89.187.164.248", + "89.187.164.249", + "89.187.164.250" + ] }, { "country": "United States", @@ -100624,7 +95940,9 @@ "name": "US-TX#5", "hostname": "us-tx-05.protonvpn.net", "entry_ip": "208.84.155.67", - "exit_ip": "208.84.155.67" + "exit_ip": [ + "208.84.155.67" + ] }, { "country": "United States", @@ -100633,25 +95951,11 @@ "name": "US-TX#6", "hostname": "node-us-28.protonvpn.net", "entry_ip": "208.84.155.66", - "exit_ip": "208.84.155.68" - }, - { - "country": "United States", - "region": "", - "city": "Dallas", - "name": "US-TX#7", - "hostname": "node-us-28.protonvpn.net", - "entry_ip": "208.84.155.66", - "exit_ip": "208.84.155.69" - }, - { - "country": "United States", - "region": "", - "city": "Dallas", - "name": "US-TX#8", - "hostname": "node-us-28.protonvpn.net", - "entry_ip": "208.84.155.66", - "exit_ip": "208.84.155.70" + "exit_ip": [ + "208.84.155.68", + "208.84.155.69", + "208.84.155.70" + ] }, { "country": "United States", @@ -100660,7 +95964,11 @@ "name": "US-TX#9", "hostname": "us-tx-09.protonvpn.net", "entry_ip": "89.187.175.141", - "exit_ip": "89.187.175.141" + "exit_ip": [ + "89.187.175.141", + "89.187.175.145", + "89.187.175.146" + ] }, { "country": "United States", @@ -100669,7 +95977,11 @@ "name": "US-CO#1", "hostname": "us-co-01.protonvpn.net", "entry_ip": "84.17.63.9", - "exit_ip": "84.17.63.9" + "exit_ip": [ + "84.17.63.9", + "84.17.63.10", + "84.17.63.11" + ] }, { "country": "United States", @@ -100678,25 +95990,11 @@ "name": "US-CO#10", "hostname": "node-us-74.protonvpn.net", "entry_ip": "84.17.63.54", - "exit_ip": "84.17.63.56" - }, - { - "country": "United States", - "region": "", - "city": "Denver", - "name": "US-CO#11", - "hostname": "node-us-74.protonvpn.net", - "entry_ip": "84.17.63.54", - "exit_ip": "84.17.63.57" - }, - { - "country": "United States", - "region": "", - "city": "Denver", - "name": "US-CO#12", - "hostname": "node-us-74.protonvpn.net", - "entry_ip": "84.17.63.54", - "exit_ip": "84.17.63.58" + "exit_ip": [ + "84.17.63.56", + "84.17.63.57", + "84.17.63.58" + ] }, { "country": "United States", @@ -100705,7 +96003,9 @@ "name": "US-CO#13", "hostname": "us-co-13.protonvpn.net", "entry_ip": "212.102.44.162", - "exit_ip": "212.102.44.162" + "exit_ip": [ + "212.102.44.162" + ] }, { "country": "United States", @@ -100714,25 +96014,11 @@ "name": "US-CO#14", "hostname": "node-us-93.protonvpn.net", "entry_ip": "212.102.44.161", - "exit_ip": "212.102.44.163" - }, - { - "country": "United States", - "region": "", - "city": "Denver", - "name": "US-CO#15", - "hostname": "node-us-93.protonvpn.net", - "entry_ip": "212.102.44.161", - "exit_ip": "212.102.44.164" - }, - { - "country": "United States", - "region": "", - "city": "Denver", - "name": "US-CO#16", - "hostname": "node-us-93.protonvpn.net", - "entry_ip": "212.102.44.161", - "exit_ip": "212.102.44.165" + "exit_ip": [ + "212.102.44.163", + "212.102.44.164", + "212.102.44.165" + ] }, { "country": "United States", @@ -100741,7 +96027,9 @@ "name": "US-CO#17", "hostname": "us-co-17.protonvpn.net", "entry_ip": "212.102.44.167", - "exit_ip": "212.102.44.167" + "exit_ip": [ + "212.102.44.167" + ] }, { "country": "United States", @@ -100750,43 +96038,11 @@ "name": "US-CO#18", "hostname": "node-us-94.protonvpn.net", "entry_ip": "212.102.44.166", - "exit_ip": "212.102.44.168" - }, - { - "country": "United States", - "region": "", - "city": "Denver", - "name": "US-CO#19", - "hostname": "node-us-94.protonvpn.net", - "entry_ip": "212.102.44.166", - "exit_ip": "212.102.44.169" - }, - { - "country": "United States", - "region": "", - "city": "Denver", - "name": "US-CO#2", - "hostname": "us-co-01.protonvpn.net", - "entry_ip": "84.17.63.9", - "exit_ip": "84.17.63.10" - }, - { - "country": "United States", - "region": "", - "city": "Denver", - "name": "US-CO#20", - "hostname": "node-us-94.protonvpn.net", - "entry_ip": "212.102.44.166", - "exit_ip": "212.102.44.170" - }, - { - "country": "United States", - "region": "", - "city": "Denver", - "name": "US-CO#3", - "hostname": "us-co-01.protonvpn.net", - "entry_ip": "84.17.63.9", - "exit_ip": "84.17.63.11" + "exit_ip": [ + "212.102.44.168", + "212.102.44.169", + "212.102.44.170" + ] }, { "country": "United States", @@ -100795,43 +96051,13 @@ "name": "US-CO#4", "hostname": "node-us-58.protonvpn.net", "entry_ip": "84.17.63.8", - "exit_ip": "84.17.63.12" - }, - { - "country": "United States", - "region": "", - "city": "Denver", - "name": "US-CO#5", - "hostname": "node-us-58.protonvpn.net", - "entry_ip": "84.17.63.8", - "exit_ip": "84.17.63.13" - }, - { - "country": "United States", - "region": "", - "city": "Denver", - "name": "US-CO#6", - "hostname": "node-us-58.protonvpn.net", - "entry_ip": "84.17.63.8", - "exit_ip": "84.17.63.14" - }, - { - "country": "United States", - "region": "", - "city": "Denver", - "name": "US-CO#7", - "hostname": "node-us-58.protonvpn.net", - "entry_ip": "84.17.63.8", - "exit_ip": "84.17.63.15" - }, - { - "country": "United States", - "region": "", - "city": "Denver", - "name": "US-CO#8", - "hostname": "node-us-58.protonvpn.net", - "entry_ip": "84.17.63.8", - "exit_ip": "84.17.63.16" + "exit_ip": [ + "84.17.63.12", + "84.17.63.13", + "84.17.63.14", + "84.17.63.15", + "84.17.63.16" + ] }, { "country": "United States", @@ -100840,7 +96066,9 @@ "name": "US-CO#9", "hostname": "us-co-09.protonvpn.net", "entry_ip": "84.17.63.55", - "exit_ip": "84.17.63.55" + "exit_ip": [ + "84.17.63.55" + ] }, { "country": "United States", @@ -100849,25 +96077,11 @@ "name": "US-CA#17", "hostname": "us-ca-17.protonvpn.com", "entry_ip": "45.152.182.131", - "exit_ip": "45.152.182.131" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#18", - "hostname": "us-ca-17.protonvpn.com", - "entry_ip": "45.152.182.131", - "exit_ip": "45.152.182.132" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#19", - "hostname": "us-ca-17.protonvpn.com", - "entry_ip": "45.152.182.131", - "exit_ip": "45.152.182.133" + "exit_ip": [ + "45.152.182.131", + "45.152.182.132", + "45.152.182.133" + ] }, { "country": "United States", @@ -100876,43 +96090,13 @@ "name": "US-CA#20", "hostname": "lxc-us-48.protonvpn.com", "entry_ip": "45.152.182.130", - "exit_ip": "45.152.182.134" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#21", - "hostname": "lxc-us-48.protonvpn.com", - "entry_ip": "45.152.182.130", - "exit_ip": "45.152.182.135" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#22", - "hostname": "lxc-us-48.protonvpn.com", - "entry_ip": "45.152.182.130", - "exit_ip": "45.152.182.136" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#23", - "hostname": "lxc-us-48.protonvpn.com", - "entry_ip": "45.152.182.130", - "exit_ip": "45.152.182.137" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#24", - "hostname": "lxc-us-48.protonvpn.com", - "entry_ip": "45.152.182.130", - "exit_ip": "45.152.182.138" + "exit_ip": [ + "45.152.182.134", + "45.152.182.135", + "45.152.182.136", + "45.152.182.137", + "45.152.182.138" + ] }, { "country": "United States", @@ -100921,25 +96105,11 @@ "name": "US-CA#25", "hostname": "us-ca-25.protonvpn.com", "entry_ip": "45.152.182.147", - "exit_ip": "45.152.182.147" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#26", - "hostname": "us-ca-25.protonvpn.com", - "entry_ip": "45.152.182.147", - "exit_ip": "45.152.182.148" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#27", - "hostname": "us-ca-25.protonvpn.com", - "entry_ip": "45.152.182.147", - "exit_ip": "45.152.182.149" + "exit_ip": [ + "45.152.182.147", + "45.152.182.148", + "45.152.182.149" + ] }, { "country": "United States", @@ -100948,43 +96118,13 @@ "name": "US-CA#28", "hostname": "lxc-us-49.protonvpn.com", "entry_ip": "45.152.182.146", - "exit_ip": "45.152.182.150" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#29", - "hostname": "lxc-us-49.protonvpn.com", - "entry_ip": "45.152.182.146", - "exit_ip": "45.152.182.151" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#30", - "hostname": "lxc-us-49.protonvpn.com", - "entry_ip": "45.152.182.146", - "exit_ip": "45.152.182.152" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#31", - "hostname": "lxc-us-49.protonvpn.com", - "entry_ip": "45.152.182.146", - "exit_ip": "45.152.182.153" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#32", - "hostname": "lxc-us-49.protonvpn.com", - "entry_ip": "45.152.182.146", - "exit_ip": "45.152.182.154" + "exit_ip": [ + "45.152.182.150", + "45.152.182.151", + "45.152.182.152", + "45.152.182.153", + "45.152.182.154" + ] }, { "country": "United States", @@ -100993,25 +96133,11 @@ "name": "US-CA#33", "hostname": "us-ca-33.protonvpn.net", "entry_ip": "185.230.126.19", - "exit_ip": "185.230.126.19" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#34", - "hostname": "us-ca-33.protonvpn.net", - "entry_ip": "185.230.126.19", - "exit_ip": "185.230.126.20" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#35", - "hostname": "us-ca-33.protonvpn.net", - "entry_ip": "185.230.126.19", - "exit_ip": "185.230.126.21" + "exit_ip": [ + "185.230.126.19", + "185.230.126.20", + "185.230.126.21" + ] }, { "country": "United States", @@ -101020,43 +96146,13 @@ "name": "US-CA#36", "hostname": "node-us-65.protonvpn.net", "entry_ip": "185.230.126.18", - "exit_ip": "185.230.126.22" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#37", - "hostname": "node-us-65.protonvpn.net", - "entry_ip": "185.230.126.18", - "exit_ip": "185.230.126.23" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#38", - "hostname": "node-us-65.protonvpn.net", - "entry_ip": "185.230.126.18", - "exit_ip": "185.230.126.24" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#39", - "hostname": "node-us-65.protonvpn.net", - "entry_ip": "185.230.126.18", - "exit_ip": "185.230.126.25" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#40", - "hostname": "node-us-65.protonvpn.net", - "entry_ip": "185.230.126.18", - "exit_ip": "185.230.126.26" + "exit_ip": [ + "185.230.126.22", + "185.230.126.23", + "185.230.126.24", + "185.230.126.25", + "185.230.126.26" + ] }, { "country": "United States", @@ -101065,25 +96161,11 @@ "name": "US-CA#41", "hostname": "us-ca-41.protonvpn.net", "entry_ip": "185.230.126.147", - "exit_ip": "185.230.126.147" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#42", - "hostname": "us-ca-41.protonvpn.net", - "entry_ip": "185.230.126.147", - "exit_ip": "185.230.126.148" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#43", - "hostname": "us-ca-41.protonvpn.net", - "entry_ip": "185.230.126.147", - "exit_ip": "185.230.126.149" + "exit_ip": [ + "185.230.126.147", + "185.230.126.148", + "185.230.126.149" + ] }, { "country": "United States", @@ -101092,43 +96174,13 @@ "name": "US-CA#44", "hostname": "node-us-66.protonvpn.net", "entry_ip": "185.230.126.146", - "exit_ip": "185.230.126.150" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#45", - "hostname": "node-us-66.protonvpn.net", - "entry_ip": "185.230.126.146", - "exit_ip": "185.230.126.194" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#46", - "hostname": "node-us-66.protonvpn.net", - "entry_ip": "185.230.126.146", - "exit_ip": "185.230.126.195" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#47", - "hostname": "node-us-66.protonvpn.net", - "entry_ip": "185.230.126.146", - "exit_ip": "185.230.126.196" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#48", - "hostname": "node-us-66.protonvpn.net", - "entry_ip": "185.230.126.146", - "exit_ip": "185.230.126.197" + "exit_ip": [ + "185.230.126.150", + "185.230.126.194", + "185.230.126.195", + "185.230.126.196", + "185.230.126.197" + ] }, { "country": "United States", @@ -101137,7 +96189,9 @@ "name": "US-CA#49", "hostname": "us-ca-49.protonvpn.com", "entry_ip": "185.230.126.11", - "exit_ip": "185.230.126.11" + "exit_ip": [ + "185.230.126.11" + ] }, { "country": "United States", @@ -101146,25 +96200,11 @@ "name": "US-CA#50", "hostname": "lxc-us-82.protonvpn.com", "entry_ip": "185.230.126.10", - "exit_ip": "185.230.126.12" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#51", - "hostname": "lxc-us-82.protonvpn.com", - "entry_ip": "185.230.126.10", - "exit_ip": "185.230.126.13" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#52", - "hostname": "lxc-us-82.protonvpn.com", - "entry_ip": "185.230.126.10", - "exit_ip": "185.230.126.14" + "exit_ip": [ + "185.230.126.12", + "185.230.126.13", + "185.230.126.14" + ] }, { "country": "United States", @@ -101173,7 +96213,9 @@ "name": "US-CA#53", "hostname": "us-ca-53.protonvpn.com", "entry_ip": "91.219.212.227", - "exit_ip": "91.219.212.227" + "exit_ip": [ + "91.219.212.227" + ] }, { "country": "United States", @@ -101182,25 +96224,11 @@ "name": "US-CA#54", "hostname": "lxc-us-95.protonvpn.com", "entry_ip": "91.219.212.226", - "exit_ip": "91.219.212.228" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#55", - "hostname": "lxc-us-95.protonvpn.com", - "entry_ip": "91.219.212.226", - "exit_ip": "91.219.212.229" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#56", - "hostname": "lxc-us-95.protonvpn.com", - "entry_ip": "91.219.212.226", - "exit_ip": "91.219.212.230" + "exit_ip": [ + "91.219.212.228", + "91.219.212.229", + "91.219.212.230" + ] }, { "country": "United States", @@ -101209,7 +96237,9 @@ "name": "US-CA#57", "hostname": "us-ca-57.protonvpn.com", "entry_ip": "91.219.212.219", - "exit_ip": "91.219.212.219" + "exit_ip": [ + "91.219.212.219" + ] }, { "country": "United States", @@ -101218,25 +96248,11 @@ "name": "US-CA#58", "hostname": "lxc-us-96.protonvpn.com", "entry_ip": "91.219.212.218", - "exit_ip": "91.219.212.220" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#59", - "hostname": "lxc-us-96.protonvpn.com", - "entry_ip": "91.219.212.218", - "exit_ip": "91.219.212.221" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#60", - "hostname": "lxc-us-96.protonvpn.com", - "entry_ip": "91.219.212.218", - "exit_ip": "91.219.212.222" + "exit_ip": [ + "91.219.212.220", + "91.219.212.221", + "91.219.212.222" + ] }, { "country": "United States", @@ -101245,7 +96261,9 @@ "name": "US-CA#61", "hostname": "us-ca-61.protonvpn.net", "entry_ip": "91.219.212.211", - "exit_ip": "91.219.212.211" + "exit_ip": [ + "91.219.212.211" + ] }, { "country": "United States", @@ -101254,25 +96272,11 @@ "name": "US-CA#62", "hostname": "node-us-97.protonvpn.net", "entry_ip": "91.219.212.210", - "exit_ip": "91.219.212.212" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#63", - "hostname": "node-us-97.protonvpn.net", - "entry_ip": "91.219.212.210", - "exit_ip": "91.219.212.213" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#64", - "hostname": "node-us-97.protonvpn.net", - "entry_ip": "91.219.212.210", - "exit_ip": "91.219.212.214" + "exit_ip": [ + "91.219.212.212", + "91.219.212.213", + "91.219.212.214" + ] }, { "country": "United States", @@ -101281,7 +96285,9 @@ "name": "US-CA#65", "hostname": "us-ca-65.protonvpn.net", "entry_ip": "91.219.212.203", - "exit_ip": "91.219.212.203" + "exit_ip": [ + "91.219.212.203" + ] }, { "country": "United States", @@ -101290,25 +96296,11 @@ "name": "US-CA#66", "hostname": "node-us-98.protonvpn.net", "entry_ip": "91.219.212.202", - "exit_ip": "91.219.212.204" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#67", - "hostname": "node-us-98.protonvpn.net", - "entry_ip": "91.219.212.202", - "exit_ip": "91.219.212.205" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#68", - "hostname": "node-us-98.protonvpn.net", - "entry_ip": "91.219.212.202", - "exit_ip": "91.219.212.206" + "exit_ip": [ + "91.219.212.204", + "91.219.212.205", + "91.219.212.206" + ] }, { "country": "United States", @@ -101317,7 +96309,9 @@ "name": "US-CA#69", "hostname": "us-ca-69.protonvpn.net", "entry_ip": "91.219.212.195", - "exit_ip": "91.219.212.195" + "exit_ip": [ + "91.219.212.195" + ] }, { "country": "United States", @@ -101326,25 +96320,11 @@ "name": "US-CA#70", "hostname": "node-us-99.protonvpn.net", "entry_ip": "91.219.212.194", - "exit_ip": "91.219.212.196" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#71", - "hostname": "node-us-99.protonvpn.net", - "entry_ip": "91.219.212.194", - "exit_ip": "91.219.212.197" - }, - { - "country": "United States", - "region": "", - "city": "Los Angeles", - "name": "US-CA#72", - "hostname": "node-us-99.protonvpn.net", - "entry_ip": "91.219.212.194", - "exit_ip": "91.219.212.198" + "exit_ip": [ + "91.219.212.196", + "91.219.212.197", + "91.219.212.198" + ] }, { "country": "United States", @@ -101353,7 +96333,9 @@ "name": "US-VA#10", "hostname": "us-va-10.protonvpn.net", "entry_ip": "207.244.102.200", - "exit_ip": "207.244.102.200" + "exit_ip": [ + "207.244.102.200" + ] }, { "country": "United States", @@ -101362,25 +96344,11 @@ "name": "US-VA#11", "hostname": "node-us-113.protonvpn.net", "entry_ip": "198.7.58.77", - "exit_ip": "207.244.102.201" - }, - { - "country": "United States", - "region": "", - "city": "Manassas", - "name": "US-VA#12", - "hostname": "node-us-113.protonvpn.net", - "entry_ip": "198.7.58.77", - "exit_ip": "207.244.102.202" - }, - { - "country": "United States", - "region": "", - "city": "Manassas", - "name": "US-VA#13", - "hostname": "node-us-113.protonvpn.net", - "entry_ip": "198.7.58.77", - "exit_ip": "207.244.102.203" + "exit_ip": [ + "207.244.102.201", + "207.244.102.202", + "207.244.102.203" + ] }, { "country": "United States", @@ -101389,25 +96357,11 @@ "name": "US-FL#1", "hostname": "us-fl-01.protonvpn.com", "entry_ip": "37.120.215.243", - "exit_ip": "37.120.215.243" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#10", - "hostname": "us-fl-09.protonvpn.com", - "entry_ip": "37.120.215.227", - "exit_ip": "37.120.215.228" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#11", - "hostname": "us-fl-09.protonvpn.com", - "entry_ip": "37.120.215.227", - "exit_ip": "37.120.215.229" + "exit_ip": [ + "37.120.215.243", + "37.120.215.244", + "37.120.215.245" + ] }, { "country": "United States", @@ -101416,43 +96370,13 @@ "name": "US-FL#12", "hostname": "lxc-us-51.protonvpn.com", "entry_ip": "37.120.215.226", - "exit_ip": "37.120.215.230" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#13", - "hostname": "lxc-us-51.protonvpn.com", - "entry_ip": "37.120.215.226", - "exit_ip": "37.120.215.231" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#14", - "hostname": "lxc-us-51.protonvpn.com", - "entry_ip": "37.120.215.226", - "exit_ip": "37.120.215.232" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#15", - "hostname": "lxc-us-51.protonvpn.com", - "entry_ip": "37.120.215.226", - "exit_ip": "37.120.215.233" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#16", - "hostname": "lxc-us-51.protonvpn.com", - "entry_ip": "37.120.215.226", - "exit_ip": "37.120.215.234" + "exit_ip": [ + "37.120.215.230", + "37.120.215.231", + "37.120.215.232", + "37.120.215.233", + "37.120.215.234" + ] }, { "country": "United States", @@ -101461,34 +96385,11 @@ "name": "US-FL#17", "hostname": "us-fl-17.protonvpn.net", "entry_ip": "45.87.214.195", - "exit_ip": "45.87.214.195" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#18", - "hostname": "us-fl-17.protonvpn.net", - "entry_ip": "45.87.214.195", - "exit_ip": "45.87.214.196" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#19", - "hostname": "us-fl-17.protonvpn.net", - "entry_ip": "45.87.214.195", - "exit_ip": "45.87.214.197" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#2", - "hostname": "us-fl-01.protonvpn.com", - "entry_ip": "37.120.215.243", - "exit_ip": "37.120.215.244" + "exit_ip": [ + "45.87.214.195", + "45.87.214.196", + "45.87.214.197" + ] }, { "country": "United States", @@ -101497,43 +96398,13 @@ "name": "US-FL#20", "hostname": "node-us-63.protonvpn.net", "entry_ip": "45.87.214.194", - "exit_ip": "45.87.214.198" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#21", - "hostname": "node-us-63.protonvpn.net", - "entry_ip": "45.87.214.194", - "exit_ip": "45.87.214.199" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#22", - "hostname": "node-us-63.protonvpn.net", - "entry_ip": "45.87.214.194", - "exit_ip": "45.87.214.200" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#23", - "hostname": "node-us-63.protonvpn.net", - "entry_ip": "45.87.214.194", - "exit_ip": "45.87.214.201" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#24", - "hostname": "node-us-63.protonvpn.net", - "entry_ip": "45.87.214.194", - "exit_ip": "45.87.214.202" + "exit_ip": [ + "45.87.214.198", + "45.87.214.199", + "45.87.214.200", + "45.87.214.201", + "45.87.214.202" + ] }, { "country": "United States", @@ -101542,25 +96413,11 @@ "name": "US-FL#25", "hostname": "us-fl-25.protonvpn.net", "entry_ip": "45.87.214.211", - "exit_ip": "45.87.214.211" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#26", - "hostname": "us-fl-25.protonvpn.net", - "entry_ip": "45.87.214.211", - "exit_ip": "45.87.214.212" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#27", - "hostname": "us-fl-25.protonvpn.net", - "entry_ip": "45.87.214.211", - "exit_ip": "45.87.214.213" + "exit_ip": [ + "45.87.214.211", + "45.87.214.212", + "45.87.214.213" + ] }, { "country": "United States", @@ -101569,52 +96426,13 @@ "name": "US-FL#28", "hostname": "node-us-64.protonvpn.net", "entry_ip": "45.87.214.210", - "exit_ip": "45.87.214.214" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#29", - "hostname": "node-us-64.protonvpn.net", - "entry_ip": "45.87.214.210", - "exit_ip": "45.87.214.215" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#3", - "hostname": "us-fl-01.protonvpn.com", - "entry_ip": "37.120.215.243", - "exit_ip": "37.120.215.245" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#30", - "hostname": "node-us-64.protonvpn.net", - "entry_ip": "45.87.214.210", - "exit_ip": "45.87.214.216" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#31", - "hostname": "node-us-64.protonvpn.net", - "entry_ip": "45.87.214.210", - "exit_ip": "45.87.214.217" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#32", - "hostname": "node-us-64.protonvpn.net", - "entry_ip": "45.87.214.210", - "exit_ip": "45.87.214.218" + "exit_ip": [ + "45.87.214.214", + "45.87.214.215", + "45.87.214.216", + "45.87.214.217", + "45.87.214.218" + ] }, { "country": "United States", @@ -101623,7 +96441,9 @@ "name": "US-FL#33", "hostname": "us-fl-33.protonvpn.net", "entry_ip": "45.87.214.99", - "exit_ip": "45.87.214.99" + "exit_ip": [ + "45.87.214.99" + ] }, { "country": "United States", @@ -101632,25 +96452,11 @@ "name": "US-FL#34", "hostname": "node-us-90.protonvpn.net", "entry_ip": "45.87.214.98", - "exit_ip": "45.87.214.100" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#35", - "hostname": "node-us-90.protonvpn.net", - "entry_ip": "45.87.214.98", - "exit_ip": "45.87.214.101" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#36", - "hostname": "node-us-90.protonvpn.net", - "entry_ip": "45.87.214.98", - "exit_ip": "45.87.214.102" + "exit_ip": [ + "45.87.214.100", + "45.87.214.101", + "45.87.214.102" + ] }, { "country": "United States", @@ -101659,7 +96465,9 @@ "name": "US-FL#37", "hostname": "us-fl-37.protonvpn.net", "entry_ip": "91.219.214.171", - "exit_ip": "91.219.214.171" + "exit_ip": [ + "91.219.214.171" + ] }, { "country": "United States", @@ -101668,16 +96476,11 @@ "name": "US-FL#38", "hostname": "node-us-100.protonvpn.net", "entry_ip": "91.219.214.170", - "exit_ip": "91.219.214.172" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#39", - "hostname": "node-us-100.protonvpn.net", - "entry_ip": "91.219.214.170", - "exit_ip": "91.219.214.173" + "exit_ip": [ + "91.219.214.172", + "91.219.214.173", + "91.219.214.174" + ] }, { "country": "United States", @@ -101686,16 +96489,13 @@ "name": "US-FL#4", "hostname": "lxc-us-50.protonvpn.com", "entry_ip": "37.120.215.242", - "exit_ip": "37.120.215.246" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#40", - "hostname": "node-us-100.protonvpn.net", - "entry_ip": "91.219.214.170", - "exit_ip": "91.219.214.174" + "exit_ip": [ + "37.120.215.246", + "37.120.215.247", + "37.120.215.248", + "37.120.215.249", + "37.120.215.250" + ] }, { "country": "United States", @@ -101704,7 +96504,9 @@ "name": "US-FL#41", "hostname": "us-fl-41.protonvpn.net", "entry_ip": "91.219.214.163", - "exit_ip": "91.219.214.163" + "exit_ip": [ + "91.219.214.163" + ] }, { "country": "United States", @@ -101713,25 +96515,11 @@ "name": "US-FL#42", "hostname": "node-us-101.protonvpn.net", "entry_ip": "91.219.214.162", - "exit_ip": "91.219.214.164" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#43", - "hostname": "node-us-101.protonvpn.net", - "entry_ip": "91.219.214.162", - "exit_ip": "91.219.214.165" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#44", - "hostname": "node-us-101.protonvpn.net", - "entry_ip": "91.219.214.162", - "exit_ip": "91.219.214.166" + "exit_ip": [ + "91.219.214.164", + "91.219.214.165", + "91.219.214.166" + ] }, { "country": "United States", @@ -101740,7 +96528,9 @@ "name": "US-FL#45", "hostname": "us-fl-45.protonvpn.net", "entry_ip": "89.38.227.139", - "exit_ip": "89.38.227.139" + "exit_ip": [ + "89.38.227.139" + ] }, { "country": "United States", @@ -101749,25 +96539,11 @@ "name": "US-FL#46", "hostname": "node-us-102.protonvpn.net", "entry_ip": "89.38.227.138", - "exit_ip": "89.38.227.140" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#47", - "hostname": "node-us-102.protonvpn.net", - "entry_ip": "89.38.227.138", - "exit_ip": "89.38.227.141" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#48", - "hostname": "node-us-102.protonvpn.net", - "entry_ip": "89.38.227.138", - "exit_ip": "89.38.227.142" + "exit_ip": [ + "89.38.227.140", + "89.38.227.141", + "89.38.227.142" + ] }, { "country": "United States", @@ -101776,16 +96552,9 @@ "name": "US-FL#49", "hostname": "us-fl-49.protonvpn.com", "entry_ip": "193.27.12.251", - "exit_ip": "193.27.12.251" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#5", - "hostname": "lxc-us-50.protonvpn.com", - "entry_ip": "37.120.215.242", - "exit_ip": "37.120.215.247" + "exit_ip": [ + "193.27.12.251" + ] }, { "country": "United States", @@ -101794,52 +96563,11 @@ "name": "US-FL#50", "hostname": "lxc-us-103.protonvpn.com", "entry_ip": "193.27.12.250", - "exit_ip": "193.27.12.252" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#51", - "hostname": "lxc-us-103.protonvpn.com", - "entry_ip": "193.27.12.250", - "exit_ip": "193.27.12.253" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#52", - "hostname": "lxc-us-103.protonvpn.com", - "entry_ip": "193.27.12.250", - "exit_ip": "193.27.12.254" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#6", - "hostname": "lxc-us-50.protonvpn.com", - "entry_ip": "37.120.215.242", - "exit_ip": "37.120.215.248" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#7", - "hostname": "lxc-us-50.protonvpn.com", - "entry_ip": "37.120.215.242", - "exit_ip": "37.120.215.249" - }, - { - "country": "United States", - "region": "", - "city": "Miami", - "name": "US-FL#8", - "hostname": "lxc-us-50.protonvpn.com", - "entry_ip": "37.120.215.242", - "exit_ip": "37.120.215.250" + "exit_ip": [ + "193.27.12.252", + "193.27.12.253", + "193.27.12.254" + ] }, { "country": "United States", @@ -101848,34 +96576,11 @@ "name": "US-FL#9", "hostname": "us-fl-09.protonvpn.com", "entry_ip": "37.120.215.227", - "exit_ip": "37.120.215.227" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#10", - "hostname": "lxc-us-41.protonvpn.com", - "entry_ip": "172.98.93.226", - "exit_ip": "172.98.93.228" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#11", - "hostname": "lxc-us-41.protonvpn.com", - "entry_ip": "172.98.93.226", - "exit_ip": "172.98.93.229" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#12", - "hostname": "lxc-us-41.protonvpn.com", - "entry_ip": "172.98.93.226", - "exit_ip": "172.98.93.230" + "exit_ip": [ + "37.120.215.227", + "37.120.215.228", + "37.120.215.229" + ] }, { "country": "United States", @@ -101884,25 +96589,11 @@ "name": "US-NY#13", "hostname": "us-ny-13.protonvpn.com", "entry_ip": "193.148.18.35", - "exit_ip": "193.148.18.35" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#14", - "hostname": "us-ny-13.protonvpn.com", - "entry_ip": "193.148.18.35", - "exit_ip": "193.148.18.36" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#15", - "hostname": "us-ny-13.protonvpn.com", - "entry_ip": "193.148.18.35", - "exit_ip": "193.148.18.37" + "exit_ip": [ + "193.148.18.35", + "193.148.18.36", + "193.148.18.37" + ] }, { "country": "United States", @@ -101911,43 +96602,13 @@ "name": "US-NY#16", "hostname": "lxc-us-46.protonvpn.com", "entry_ip": "193.148.18.34", - "exit_ip": "193.148.18.38" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#17", - "hostname": "lxc-us-46.protonvpn.com", - "entry_ip": "193.148.18.34", - "exit_ip": "193.148.18.39" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#18", - "hostname": "lxc-us-46.protonvpn.com", - "entry_ip": "193.148.18.34", - "exit_ip": "193.148.18.40" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#19", - "hostname": "lxc-us-46.protonvpn.com", - "entry_ip": "193.148.18.34", - "exit_ip": "193.148.18.41" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#20", - "hostname": "lxc-us-46.protonvpn.com", - "entry_ip": "193.148.18.34", - "exit_ip": "193.148.18.42" + "exit_ip": [ + "193.148.18.38", + "193.148.18.39", + "193.148.18.40", + "193.148.18.41", + "193.148.18.42" + ] }, { "country": "United States", @@ -101956,25 +96617,11 @@ "name": "US-NY#21", "hostname": "us-ny-21.protonvpn.net", "entry_ip": "193.148.18.83", - "exit_ip": "193.148.18.83" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#22", - "hostname": "us-ny-21.protonvpn.net", - "entry_ip": "193.148.18.83", - "exit_ip": "193.148.18.84" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#23", - "hostname": "us-ny-21.protonvpn.net", - "entry_ip": "193.148.18.83", - "exit_ip": "193.148.18.85" + "exit_ip": [ + "193.148.18.83", + "193.148.18.84", + "193.148.18.85" + ] }, { "country": "United States", @@ -101983,43 +96630,13 @@ "name": "US-NY#24", "hostname": "node-us-67.protonvpn.net", "entry_ip": "193.148.18.82", - "exit_ip": "193.148.18.86" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#25", - "hostname": "node-us-67.protonvpn.net", - "entry_ip": "193.148.18.82", - "exit_ip": "193.148.18.87" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#26", - "hostname": "node-us-67.protonvpn.net", - "entry_ip": "193.148.18.82", - "exit_ip": "193.148.18.88" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#27", - "hostname": "node-us-67.protonvpn.net", - "entry_ip": "193.148.18.82", - "exit_ip": "193.148.18.89" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#28", - "hostname": "node-us-67.protonvpn.net", - "entry_ip": "193.148.18.82", - "exit_ip": "193.148.18.90" + "exit_ip": [ + "193.148.18.86", + "193.148.18.87", + "193.148.18.88", + "193.148.18.89", + "193.148.18.90" + ] }, { "country": "United States", @@ -102028,25 +96645,11 @@ "name": "US-NY#29", "hostname": "us-ny-29.protonvpn.net", "entry_ip": "193.148.18.99", - "exit_ip": "193.148.18.99" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#30", - "hostname": "us-ny-29.protonvpn.net", - "entry_ip": "193.148.18.99", - "exit_ip": "193.148.18.100" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#31", - "hostname": "us-ny-29.protonvpn.net", - "entry_ip": "193.148.18.99", - "exit_ip": "193.148.18.101" + "exit_ip": [ + "193.148.18.99", + "193.148.18.100", + "193.148.18.101" + ] }, { "country": "United States", @@ -102055,43 +96658,13 @@ "name": "US-NY#32", "hostname": "node-us-68.protonvpn.net", "entry_ip": "193.148.18.98", - "exit_ip": "193.148.18.102" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#33", - "hostname": "node-us-68.protonvpn.net", - "entry_ip": "193.148.18.98", - "exit_ip": "193.148.18.103" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#34", - "hostname": "node-us-68.protonvpn.net", - "entry_ip": "193.148.18.98", - "exit_ip": "193.148.18.104" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#35", - "hostname": "node-us-68.protonvpn.net", - "entry_ip": "193.148.18.98", - "exit_ip": "193.148.18.105" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#36", - "hostname": "node-us-68.protonvpn.net", - "entry_ip": "193.148.18.98", - "exit_ip": "193.148.18.106" + "exit_ip": [ + "193.148.18.102", + "193.148.18.103", + "193.148.18.104", + "193.148.18.105", + "193.148.18.106" + ] }, { "country": "United States", @@ -102100,7 +96673,9 @@ "name": "US-NY#37", "hostname": "us-ny-37.protonvpn.net", "entry_ip": "193.148.18.67", - "exit_ip": "193.148.18.67" + "exit_ip": [ + "193.148.18.67" + ] }, { "country": "United States", @@ -102109,25 +96684,11 @@ "name": "US-NY#38", "hostname": "node-us-77.protonvpn.net", "entry_ip": "193.148.18.66", - "exit_ip": "193.148.18.68" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#39", - "hostname": "node-us-77.protonvpn.net", - "entry_ip": "193.148.18.66", - "exit_ip": "193.148.18.69" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#40", - "hostname": "node-us-77.protonvpn.net", - "entry_ip": "193.148.18.66", - "exit_ip": "193.148.18.70" + "exit_ip": [ + "193.148.18.68", + "193.148.18.69", + "193.148.18.70" + ] }, { "country": "United States", @@ -102136,7 +96697,9 @@ "name": "US-NY#41", "hostname": "us-ny-41.protonvpn.com", "entry_ip": "37.120.244.62", - "exit_ip": "37.120.244.62" + "exit_ip": [ + "37.120.244.62" + ] }, { "country": "United States", @@ -102145,25 +96708,11 @@ "name": "US-NY#42", "hostname": "lxc-us-104.protonvpn.com", "entry_ip": "37.120.244.58", - "exit_ip": "37.120.244.59" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#43", - "hostname": "lxc-us-104.protonvpn.com", - "entry_ip": "37.120.244.58", - "exit_ip": "37.120.244.60" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#44", - "hostname": "lxc-us-104.protonvpn.com", - "entry_ip": "37.120.244.58", - "exit_ip": "37.120.244.61" + "exit_ip": [ + "37.120.244.59", + "37.120.244.60", + "37.120.244.61" + ] }, { "country": "United States", @@ -102172,7 +96721,9 @@ "name": "US-NY#45", "hostname": "us-ny-45.protonvpn.net", "entry_ip": "37.120.244.155", - "exit_ip": "37.120.244.155" + "exit_ip": [ + "37.120.244.155" + ] }, { "country": "United States", @@ -102181,25 +96732,11 @@ "name": "US-NY#46", "hostname": "node-us-105.protonvpn.net", "entry_ip": "37.120.244.154", - "exit_ip": "37.120.244.156" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#47", - "hostname": "node-us-105.protonvpn.net", - "entry_ip": "37.120.244.154", - "exit_ip": "37.120.244.157" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#48", - "hostname": "node-us-105.protonvpn.net", - "entry_ip": "37.120.244.154", - "exit_ip": "37.120.244.158" + "exit_ip": [ + "37.120.244.156", + "37.120.244.157", + "37.120.244.158" + ] }, { "country": "United States", @@ -102208,7 +96745,9 @@ "name": "US-NY#49", "hostname": "us-ny-49.protonvpn.net", "entry_ip": "37.120.244.51", - "exit_ip": "37.120.244.51" + "exit_ip": [ + "37.120.244.51" + ] }, { "country": "United States", @@ -102217,7 +96756,9 @@ "name": "US-NY#5", "hostname": "us-ny-05.protonvpn.com", "entry_ip": "108.62.49.149", - "exit_ip": "108.62.49.149" + "exit_ip": [ + "108.62.49.149" + ] }, { "country": "United States", @@ -102226,25 +96767,11 @@ "name": "US-NY#50", "hostname": "node-us-106.protonvpn.net", "entry_ip": "37.120.244.50", - "exit_ip": "37.120.244.52" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#51", - "hostname": "node-us-106.protonvpn.net", - "entry_ip": "37.120.244.50", - "exit_ip": "37.120.244.53" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#52", - "hostname": "node-us-106.protonvpn.net", - "entry_ip": "37.120.244.50", - "exit_ip": "37.120.244.54" + "exit_ip": [ + "37.120.244.52", + "37.120.244.53", + "37.120.244.54" + ] }, { "country": "United States", @@ -102253,7 +96780,9 @@ "name": "US-NY#53", "hostname": "us-ny-53.protonvpn.net", "entry_ip": "37.120.244.99", - "exit_ip": "37.120.244.99" + "exit_ip": [ + "37.120.244.99" + ] }, { "country": "United States", @@ -102262,25 +96791,11 @@ "name": "US-NY#54", "hostname": "node-us-107.protonvpn.net", "entry_ip": "37.120.244.98", - "exit_ip": "37.120.244.100" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#55", - "hostname": "node-us-107.protonvpn.net", - "entry_ip": "37.120.244.98", - "exit_ip": "37.120.244.101" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#56", - "hostname": "node-us-107.protonvpn.net", - "entry_ip": "37.120.244.98", - "exit_ip": "37.120.244.102" + "exit_ip": [ + "37.120.244.100", + "37.120.244.101", + "37.120.244.102" + ] }, { "country": "United States", @@ -102289,7 +96804,9 @@ "name": "US-NY#57", "hostname": "us-ny-57.protonvpn.net", "entry_ip": "173.208.98.158", - "exit_ip": "173.208.98.158" + "exit_ip": [ + "173.208.98.158" + ] }, { "country": "United States", @@ -102298,25 +96815,24 @@ "name": "US-NY#58", "hostname": "node-us-114.protonvpn.net", "entry_ip": "173.208.98.183", - "exit_ip": "173.208.98.184" + "exit_ip": [ + "173.208.98.184", + "173.208.98.185", + "173.208.98.186" + ] }, { "country": "United States", "region": "", "city": "New York City", - "name": "US-NY#59", - "hostname": "node-us-114.protonvpn.net", - "entry_ip": "173.208.98.183", - "exit_ip": "173.208.98.185" - }, - { - "country": "United States", - "region": "", - "city": "New York City", - "name": "US-NY#60", - "hostname": "node-us-114.protonvpn.net", - "entry_ip": "173.208.98.183", - "exit_ip": "173.208.98.186" + "name": "US-NY#8", + "hostname": "lxc-us-32.protonvpn.com", + "entry_ip": "108.62.49.157", + "exit_ip": [ + "108.62.49.129", + "108.62.49.152", + "108.62.49.158" + ] }, { "country": "United States", @@ -102325,7 +96841,12 @@ "name": "US-NY#9", "hostname": "lxc-us-41.protonvpn.com", "entry_ip": "172.98.93.226", - "exit_ip": "172.98.93.227" + "exit_ip": [ + "172.98.93.227", + "172.98.93.228", + "172.98.93.229", + "172.98.93.230" + ] }, { "country": "United States", @@ -102334,34 +96855,12 @@ "name": "US-AZ#1", "hostname": "lxc-us-38.protonvpn.com", "entry_ip": "199.187.209.26", - "exit_ip": "199.187.209.27" - }, - { - "country": "United States", - "region": "", - "city": "Phoenix", - "name": "US-AZ#2", - "hostname": "lxc-us-38.protonvpn.com", - "entry_ip": "199.187.209.26", - "exit_ip": "199.187.209.28" - }, - { - "country": "United States", - "region": "", - "city": "Phoenix", - "name": "US-AZ#3", - "hostname": "lxc-us-38.protonvpn.com", - "entry_ip": "199.187.209.26", - "exit_ip": "199.187.209.29" - }, - { - "country": "United States", - "region": "", - "city": "Phoenix", - "name": "US-AZ#4", - "hostname": "lxc-us-38.protonvpn.com", - "entry_ip": "199.187.209.26", - "exit_ip": "199.187.209.30" + "exit_ip": [ + "199.187.209.27", + "199.187.209.28", + "199.187.209.29", + "199.187.209.30" + ] }, { "country": "United States", @@ -102370,7 +96869,9 @@ "name": "US-AZ#5", "hostname": "us-az-05.protonvpn.net", "entry_ip": "23.81.234.41", - "exit_ip": "23.81.234.41" + "exit_ip": [ + "23.81.234.41" + ] }, { "country": "United States", @@ -102379,25 +96880,11 @@ "name": "US-AZ#6", "hostname": "node-us-116.protonvpn.net", "entry_ip": "23.83.129.11", - "exit_ip": "23.81.234.42" - }, - { - "country": "United States", - "region": "", - "city": "Phoenix", - "name": "US-AZ#7", - "hostname": "node-us-116.protonvpn.net", - "entry_ip": "23.83.129.11", - "exit_ip": "23.81.234.43" - }, - { - "country": "United States", - "region": "", - "city": "Phoenix", - "name": "US-AZ#8", - "hostname": "node-us-116.protonvpn.net", - "entry_ip": "23.83.129.11", - "exit_ip": "23.81.234.44" + "exit_ip": [ + "23.81.234.42", + "23.81.234.43", + "23.81.234.44" + ] }, { "country": "United States", @@ -102406,7 +96893,9 @@ "name": "US-UT#25", "hostname": "us-ut-25b.protonvpn.com", "entry_ip": "69.36.160.150", - "exit_ip": "69.36.160.150" + "exit_ip": [ + "69.36.160.150" + ] }, { "country": "United States", @@ -102415,25 +96904,10 @@ "name": "US-UT#26", "hostname": "lxc-us-110.protonvpn.com", "entry_ip": "209.95.56.120", - "exit_ip": "69.36.160.152" - }, - { - "country": "United States", - "region": "", - "city": "Salt Lake City", - "name": "US-UT#27", - "hostname": "lxc-us-110.protonvpn.com", - "entry_ip": "209.95.56.120", - "exit_ip": "69.36.160.153" - }, - { - "country": "United States", - "region": "", - "city": "Salt Lake City", - "name": "US-UT#28", - "hostname": "lxc-us-110.protonvpn.com", - "entry_ip": "209.95.56.120", - "exit_ip": "69.36.160.154" + "exit_ip": [ + "69.36.160.152", + "69.36.160.154" + ] }, { "country": "United States", @@ -102442,7 +96916,9 @@ "name": "US-UT#29", "hostname": "us-ut-29.protonvpn.net", "entry_ip": "173.244.209.65", - "exit_ip": "173.244.209.65" + "exit_ip": [ + "173.244.209.65" + ] }, { "country": "United States", @@ -102451,25 +96927,11 @@ "name": "US-UT#30", "hostname": "node-us-111.protonvpn.net", "entry_ip": "174.127.84.34", - "exit_ip": "173.244.209.80" - }, - { - "country": "United States", - "region": "", - "city": "Salt Lake City", - "name": "US-UT#31", - "hostname": "node-us-111.protonvpn.net", - "entry_ip": "174.127.84.34", - "exit_ip": "173.244.209.89" - }, - { - "country": "United States", - "region": "", - "city": "Salt Lake City", - "name": "US-UT#32", - "hostname": "node-us-111.protonvpn.net", - "entry_ip": "174.127.84.34", - "exit_ip": "173.244.209.91" + "exit_ip": [ + "173.244.209.80", + "173.244.209.89", + "173.244.209.91" + ] }, { "country": "United States", @@ -102478,7 +96940,9 @@ "name": "US-UT#33", "hostname": "us-ut-33.protonvpn.net", "entry_ip": "107.182.233.102", - "exit_ip": "107.182.233.102" + "exit_ip": [ + "107.182.233.102" + ] }, { "country": "United States", @@ -102487,25 +96951,10 @@ "name": "US-UT#34", "hostname": "node-us-112.protonvpn.net", "entry_ip": "174.127.84.35", - "exit_ip": "173.244.209.62" - }, - { - "country": "United States", - "region": "", - "city": "Salt Lake City", - "name": "US-UT#35", - "hostname": "node-us-112.protonvpn.net", - "entry_ip": "174.127.84.35", - "exit_ip": "173.244.209.63" - }, - { - "country": "United States", - "region": "", - "city": "Salt Lake City", - "name": "US-UT#36", - "hostname": "node-us-112.protonvpn.net", - "entry_ip": "174.127.84.35", - "exit_ip": "173.244.209.64" + "exit_ip": [ + "173.244.209.62", + "173.244.209.63" + ] }, { "country": "United States", @@ -102514,7 +96963,9 @@ "name": "US-CA#73", "hostname": "us-ca-73.protonvpn.net", "entry_ip": "142.234.80.86", - "exit_ip": "142.234.80.86" + "exit_ip": [ + "142.234.80.86" + ] }, { "country": "United States", @@ -102523,52 +96974,11 @@ "name": "US-CA#74", "hostname": "node-us-115.protonvpn.net", "entry_ip": "172.241.250.144", - "exit_ip": "142.234.80.87" - }, - { - "country": "United States", - "region": "", - "city": "San Jose", - "name": "US-CA#75", - "hostname": "node-us-115.protonvpn.net", - "entry_ip": "172.241.250.144", - "exit_ip": "142.234.80.88" - }, - { - "country": "United States", - "region": "", - "city": "San Jose", - "name": "US-CA#76", - "hostname": "node-us-115.protonvpn.net", - "entry_ip": "172.241.250.144", - "exit_ip": "142.234.80.89" - }, - { - "country": "United States", - "region": "", - "city": "Seattle", - "name": "US-WA#10", - "hostname": "lxc-us-34.protonvpn.com", - "entry_ip": "199.187.211.98", - "exit_ip": "199.187.211.100" - }, - { - "country": "United States", - "region": "", - "city": "Seattle", - "name": "US-WA#11", - "hostname": "lxc-us-34.protonvpn.com", - "entry_ip": "199.187.211.98", - "exit_ip": "199.187.211.101" - }, - { - "country": "United States", - "region": "", - "city": "Seattle", - "name": "US-WA#12", - "hostname": "lxc-us-34.protonvpn.com", - "entry_ip": "199.187.211.98", - "exit_ip": "199.187.211.102" + "exit_ip": [ + "142.234.80.87", + "142.234.80.88", + "142.234.80.89" + ] }, { "country": "United States", @@ -102577,34 +96987,12 @@ "name": "US-WA#17", "hostname": "lxc-us-85.protonvpn.com", "entry_ip": "66.115.149.226", - "exit_ip": "66.115.149.227" - }, - { - "country": "United States", - "region": "", - "city": "Seattle", - "name": "US-WA#18", - "hostname": "lxc-us-85.protonvpn.com", - "entry_ip": "66.115.149.226", - "exit_ip": "66.115.149.228" - }, - { - "country": "United States", - "region": "", - "city": "Seattle", - "name": "US-WA#19", - "hostname": "lxc-us-85.protonvpn.com", - "entry_ip": "66.115.149.226", - "exit_ip": "66.115.149.229" - }, - { - "country": "United States", - "region": "", - "city": "Seattle", - "name": "US-WA#20", - "hostname": "lxc-us-85.protonvpn.com", - "entry_ip": "66.115.149.226", - "exit_ip": "66.115.149.230" + "exit_ip": [ + "66.115.149.227", + "66.115.149.228", + "66.115.149.229", + "66.115.149.230" + ] }, { "country": "United States", @@ -102613,7 +97001,12 @@ "name": "US-WA#9", "hostname": "lxc-us-34.protonvpn.com", "entry_ip": "199.187.211.98", - "exit_ip": "199.187.211.99" + "exit_ip": [ + "199.187.211.99", + "199.187.211.100", + "199.187.211.101", + "199.187.211.102" + ] }, { "country": "United States", @@ -102622,34 +97015,12 @@ "name": "US-NJ#13", "hostname": "lxc-us-83.protonvpn.com", "entry_ip": "107.152.101.210", - "exit_ip": "107.152.101.211" - }, - { - "country": "United States", - "region": "", - "city": "Secaucus", - "name": "US-NJ#14", - "hostname": "lxc-us-83.protonvpn.com", - "entry_ip": "107.152.101.210", - "exit_ip": "107.152.101.212" - }, - { - "country": "United States", - "region": "", - "city": "Secaucus", - "name": "US-NJ#15", - "hostname": "lxc-us-83.protonvpn.com", - "entry_ip": "107.152.101.210", - "exit_ip": "107.152.101.213" - }, - { - "country": "United States", - "region": "", - "city": "Secaucus", - "name": "US-NJ#16", - "hostname": "lxc-us-83.protonvpn.com", - "entry_ip": "107.152.101.210", - "exit_ip": "107.152.101.214" + "exit_ip": [ + "107.152.101.211", + "107.152.101.212", + "107.152.101.213", + "107.152.101.214" + ] }, { "country": "United States", @@ -102658,43 +97029,12 @@ "name": "US-IL#13", "hostname": "lxc-us-40.protonvpn.com", "entry_ip": "74.119.146.39", - "exit_ip": "74.119.146.40" - }, - { - "country": "United States", - "region": "Midwest", - "city": "Chicago", - "name": "US-IL#14", - "hostname": "lxc-us-40.protonvpn.com", - "entry_ip": "74.119.146.39", - "exit_ip": "74.119.146.41" - }, - { - "country": "United States", - "region": "Midwest", - "city": "Chicago", - "name": "US-IL#15", - "hostname": "lxc-us-40.protonvpn.com", - "entry_ip": "74.119.146.39", - "exit_ip": "74.119.146.42" - }, - { - "country": "United States", - "region": "Midwest", - "city": "Chicago", - "name": "US-IL#16", - "hostname": "lxc-us-40.protonvpn.com", - "entry_ip": "74.119.146.39", - "exit_ip": "74.119.146.43" - }, - { - "country": "United States", - "region": "Northeast", - "city": "Secaucus", - "name": "US-NJ#10", - "hostname": "us-nj-09.protonvpn.net", - "entry_ip": "69.10.63.243", - "exit_ip": "69.10.63.244" + "exit_ip": [ + "74.119.146.40", + "74.119.146.41", + "74.119.146.42", + "74.119.146.43" + ] }, { "country": "United States", @@ -102703,16 +97043,10 @@ "name": "US-NJ#11", "hostname": "node-us-31.protonvpn.net", "entry_ip": "69.10.63.242", - "exit_ip": "69.10.63.245" - }, - { - "country": "United States", - "region": "Northeast", - "city": "Secaucus", - "name": "US-NJ#12", - "hostname": "node-us-31.protonvpn.net", - "entry_ip": "69.10.63.242", - "exit_ip": "69.10.63.246" + "exit_ip": [ + "69.10.63.245", + "69.10.63.246" + ] }, { "country": "United States", @@ -102721,34 +97055,12 @@ "name": "US-NJ#5", "hostname": "lxc-us-29.protonvpn.com", "entry_ip": "192.252.222.34", - "exit_ip": "192.252.222.35" - }, - { - "country": "United States", - "region": "Northeast", - "city": "Secaucus", - "name": "US-NJ#6", - "hostname": "lxc-us-29.protonvpn.com", - "entry_ip": "192.252.222.34", - "exit_ip": "192.252.222.36" - }, - { - "country": "United States", - "region": "Northeast", - "city": "Secaucus", - "name": "US-NJ#7", - "hostname": "lxc-us-29.protonvpn.com", - "entry_ip": "192.252.222.34", - "exit_ip": "192.252.222.37" - }, - { - "country": "United States", - "region": "Northeast", - "city": "Secaucus", - "name": "US-NJ#8", - "hostname": "lxc-us-29.protonvpn.com", - "entry_ip": "192.252.222.34", - "exit_ip": "192.252.222.38" + "exit_ip": [ + "192.252.222.35", + "192.252.222.36", + "192.252.222.37", + "192.252.222.38" + ] }, { "country": "United States", @@ -102757,7 +97069,10 @@ "name": "US-NJ#9", "hostname": "us-nj-09.protonvpn.net", "entry_ip": "69.10.63.243", - "exit_ip": "69.10.63.243" + "exit_ip": [ + "69.10.63.243", + "69.10.63.244" + ] }, { "country": "United States", @@ -102766,16 +97081,10 @@ "name": "US-VA#1", "hostname": "us-va-01.protonvpn.net", "entry_ip": "162.210.192.157", - "exit_ip": "162.210.192.157" - }, - { - "country": "United States", - "region": "South", - "city": "Manassas", - "name": "US-VA#2", - "hostname": "us-va-01.protonvpn.net", - "entry_ip": "162.210.192.157", - "exit_ip": "162.210.192.158" + "exit_ip": [ + "162.210.192.157", + "162.210.192.158" + ] }, { "country": "United States", @@ -102784,16 +97093,10 @@ "name": "US-VA#3", "hostname": "node-us-01.protonvpn.net", "entry_ip": "162.210.192.144", - "exit_ip": "162.210.192.159" - }, - { - "country": "United States", - "region": "South", - "city": "Manassas", - "name": "US-VA#4", - "hostname": "node-us-01.protonvpn.net", - "entry_ip": "162.210.192.144", - "exit_ip": "162.210.192.160" + "exit_ip": [ + "162.210.192.159", + "162.210.192.160" + ] }, { "country": "United States", @@ -102802,7 +97105,9 @@ "name": "US-CO#21-TOR", "hostname": "us-co-21-tor.protonvpn.net", "entry_ip": "84.17.63.17", - "exit_ip": "84.17.63.17" + "exit_ip": [ + "84.17.63.17" + ] }, { "country": "United States", @@ -102811,7 +97116,9 @@ "name": "US-GA#29-TOR", "hostname": "us-ga-29-tor.protonvpn.net", "entry_ip": "89.187.171.248", - "exit_ip": "89.187.171.248" + "exit_ip": [ + "89.187.171.248" + ] }, { "country": "United States", @@ -102820,34 +97127,12 @@ "name": "US-CA#13", "hostname": "lxc-us-37.protonvpn.com", "entry_ip": "172.83.43.135", - "exit_ip": "172.83.43.136" - }, - { - "country": "United States", - "region": "West", - "city": "Los Angeles", - "name": "US-CA#14", - "hostname": "lxc-us-37.protonvpn.com", - "entry_ip": "172.83.43.135", - "exit_ip": "172.83.43.137" - }, - { - "country": "United States", - "region": "West", - "city": "Los Angeles", - "name": "US-CA#15", - "hostname": "lxc-us-37.protonvpn.com", - "entry_ip": "172.83.43.135", - "exit_ip": "172.83.43.138" - }, - { - "country": "United States", - "region": "West", - "city": "Los Angeles", - "name": "US-CA#16", - "hostname": "lxc-us-37.protonvpn.com", - "entry_ip": "172.83.43.135", - "exit_ip": "172.83.43.139" + "exit_ip": [ + "172.83.43.136", + "172.83.43.137", + "172.83.43.138", + "172.83.43.139" + ] }, { "country": "United States", @@ -102856,16 +97141,10 @@ "name": "US-CA#1", "hostname": "us-ca-01.protonvpn.net", "entry_ip": "209.58.129.97", - "exit_ip": "209.58.129.97" - }, - { - "country": "United States", - "region": "West", - "city": "San Jose", - "name": "US-CA#2", - "hostname": "us-ca-01.protonvpn.net", - "entry_ip": "209.58.129.97", - "exit_ip": "209.58.129.98" + "exit_ip": [ + "209.58.129.97", + "209.58.129.98" + ] }, { "country": "United States", @@ -102874,16 +97153,10 @@ "name": "US-CA#3", "hostname": "node-us-02.protonvpn.net", "entry_ip": "209.58.129.72", - "exit_ip": "209.58.129.99" - }, - { - "country": "United States", - "region": "West", - "city": "San Jose", - "name": "US-CA#4", - "hostname": "node-us-02.protonvpn.net", - "entry_ip": "209.58.129.72", - "exit_ip": "209.58.129.100" + "exit_ip": [ + "209.58.129.99", + "209.58.129.100" + ] } ] }, @@ -117253,4 +111526,4 @@ } ] } -} +} \ No newline at end of file diff --git a/internal/updater/providers/protonvpn/iptoserver.go b/internal/updater/providers/protonvpn/iptoserver.go new file mode 100644 index 00000000..6c5249c3 --- /dev/null +++ b/internal/updater/providers/protonvpn/iptoserver.go @@ -0,0 +1,37 @@ +package protonvpn + +import ( + "net" + + "github.com/qdm12/gluetun/internal/models" +) + +type ipToServer map[string]models.ProtonvpnServer + +func (its ipToServer) add(country, region, city, name, hostname string, + entryIP, exitIP net.IP) { + key := entryIP.String() + + server, ok := its[key] + if !ok { + server.Country = country + server.Region = region + server.City = city + server.Name = name + server.Hostname = hostname + server.EntryIP = entryIP + server.ExitIPs = []net.IP{exitIP} + } else { + server.ExitIPs = append(server.ExitIPs, exitIP) + } + + its[key] = server +} + +func (its ipToServer) toServersSlice() (servers []models.ProtonvpnServer) { + servers = make([]models.ProtonvpnServer, 0, len(its)) + for _, server := range its { + servers = append(servers, server) + } + return servers +} diff --git a/internal/updater/providers/protonvpn/servers.go b/internal/updater/providers/protonvpn/servers.go index 0f7482ea..06278c6d 100644 --- a/internal/updater/providers/protonvpn/servers.go +++ b/internal/updater/providers/protonvpn/servers.go @@ -33,63 +33,46 @@ func GetServers(ctx context.Context, client *http.Client, minServers int) ( ErrNotEnoughServers, count, minServers) } - servers = make([]models.ProtonvpnServer, 0, count) + ipToServer := make(ipToServer, count) for _, logicalServer := range data.LogicalServers { + region := getStringValue(logicalServer.Region) + city := getStringValue(logicalServer.City) + name := logicalServer.Name for _, physicalServer := range logicalServer.Servers { - server, warning, err := makeServer( - physicalServer, logicalServer, countryCodes) + if physicalServer.Status == 0 { // disabled so skip server + warnings = append(warnings, + "ignoring server "+physicalServer.Domain+" with status 0") + continue + } + hostname := physicalServer.Domain + entryIP := physicalServer.EntryIP + exitIP := physicalServer.ExitIP + + // Note: for multi-hop use the server name or hostname + // instead of the country + countryCode := logicalServer.ExitCountry + country, warning := codeToCountry(countryCode, countryCodes) if warning != "" { warnings = append(warnings, warning) } - if err != nil { - warnings = append(warnings, err.Error()) - continue - } - - servers = append(servers, server) + ipToServer.add(country, region, city, name, hostname, entryIP, exitIP) } } - if len(servers) < minServers { + if len(ipToServer) < minServers { return nil, warnings, fmt.Errorf("%w: %d and expected at least %d", - ErrNotEnoughServers, len(servers), minServers) + ErrNotEnoughServers, len(ipToServer), minServers) } + servers = ipToServer.toServersSlice() + sortServers(servers) return servers, warnings, nil } -var errServerStatusZero = errors.New("ignoring server with status 0") - -func makeServer(physical physicalServer, logical logicalServer, - countryCodes map[string]string) (server models.ProtonvpnServer, - warning string, err error) { - if physical.Status == 0 { - return server, "", fmt.Errorf("%w: %s", - errServerStatusZero, physical.Domain) - } - - countryCode := logical.ExitCountry - country, warning := codeToCountry(countryCode, countryCodes) - - server = models.ProtonvpnServer{ - // Note: for multi-hop use the server name or hostname - // instead of the country - Country: country, - Region: getStringValue(logical.Region), - City: getStringValue(logical.City), - Name: logical.Name, - Hostname: physical.Domain, - EntryIP: physical.EntryIP, - ExitIP: physical.ExitIP, - } - - return server, warning, nil -} - func getStringValue(ptr *string) string { if ptr == nil { return ""